diff --git a/CODEOWNERS b/CODEOWNERS index b3a89aecb5c1bf1907db23aabcb7d61adecc8ab3..abde348a4d10568535df2c66a8a8fcda79190092 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -415,7 +415,7 @@ zh-cn/application-dev/reference/apis/js-apis-resource-manager.md @Buda-Liu @ning zh-cn/application-dev/reference/apis/js-apis-router.md @huaweimaxuchu @HelloCrease @niulihua @tomatodevboy zh-cn/application-dev/reference/apis/js-apis-rpc.md @xuepianpian @RayShih @zhaopeng_gitee @vagrant_world zh-cn/application-dev/reference/apis/js-apis-runninglock.md @aqxyjay @zengyawen @aqxyjay @alien0208 -zh-cn/application-dev/reference/apis/js-apis-screen-lock.md @feng-aiwen @ningningW @wangzhangjun @murphy1984 + zh-cn/application-dev/reference/apis/js-apis-screen.md @zhangqiang183 @ge-yafang @zhouyaoying @zxg-gitee zh-cn/application-dev/reference/apis/js-apis-screenshot.md @zhangqiang183 @ge-yafang @zhouyaoying @zxg-gitee zh-cn/application-dev/reference/apis/js-apis-securityLabel.md @panqinxu @zengyawen @bubble_mao @jinhaihw @@ -531,6 +531,7 @@ zh-cn/application-dev/reference/apis/js-apis-distributedBundle.md @shuaytao @Ray zh-cn/application-dev/reference/apis/js-apis-distributedKVStore.md @feng-aiwen @ge-yafang @gong-a-shi @logic42 zh-cn/application-dev/reference/apis/js-apis-enterprise-accountManager.md @liuzuming @ningningW @yangqing3 zh-cn/application-dev/reference/apis/js-apis-enterprise-adminManager.md @liuzuming @ningningW @yangqing3 +zh-cn/application-dev/reference/apis/js-apis-enterprise-bundleManager.md @liuzuming @ningningW @yangqing3 zh-cn/application-dev/reference/apis/js-apis-enterprise-dateTimeManager.md @liuzuming @ningningW @yangqing3 zh-cn/application-dev/reference/apis/js-apis-enterprise-deviceControl.md @liuzuming @ningningW @yangqing3 zh-cn/application-dev/reference/apis/js-apis-enterprise-deviceInfo.md @liuzuming @ningningW @yangqing3 diff --git a/en/application-dev/device/usb-guidelines.md b/en/application-dev/device/usb-guidelines.md index c4f5131536a1f0b55ae973bdf7cdf04d2b8f0980..68c8c3de013e75d56854bf0cf0e3a71aca9eb261 100644 --- a/en/application-dev/device/usb-guidelines.md +++ b/en/application-dev/device/usb-guidelines.md @@ -130,8 +130,6 @@ You can set a USB device as the USB host to connect to other USB devices for dat usb.bulkTransfer(pipe, inEndpoint, dataUint8Array, 15000).then(dataLength => { if (dataLength >= 0) { console.info("usb readData result Length : " + dataLength); - let resultStr = this.ab2str(dataUint8Array); // Convert uint8 data into a string. - console.info("usb readData buffer : " + resultStr); } else { console.info("usb readData failed : " + dataLength); } diff --git a/en/application-dev/reference/apis/Readme-EN.md b/en/application-dev/reference/apis/Readme-EN.md index 6346094a14fbcea248a6bb9865155c2901e4f847..dcdf21aac6d90857581f834a821364b8f2516f2c 100644 --- a/en/application-dev/reference/apis/Readme-EN.md +++ b/en/application-dev/reference/apis/Readme-EN.md @@ -268,7 +268,7 @@ - [@ohos.request (Upload and Download)](js-apis-request.md) - Connectivity - - [@ohos.bluetooth (Bluetooth)](js-apis-bluetooth.md) + - [@ohos.bluetoothManager (Bluetooth)(js-apis-bluetoothManager.md) - [@ohos.connectedTag (Active Tags)](js-apis-connectedTag.md) - [@ohos.nfc.cardEmulation (Standard NFC Card Emulation)](js-apis-cardEmulation.md) - [@ohos.nfc.controller (Standard NFC)](js-apis-nfcController.md) @@ -392,6 +392,7 @@ - APIs No Longer Maintained - [@ohos.backgroundTaskManager (Background Task Management)](js-apis-backgroundTaskManager.md) + - [@ohos.bluetooth (Bluetooth)](js-apis-bluetooth.md) - [@ohos.bundle (Bundle)](js-apis-Bundle.md) - [@ohos.bundle.innerBundleManager (innerBundleManager)](js-apis-Bundle-InnerBundleManager.md) - [@ohos.bundleState (Device Usage Statistics)](js-apis-deviceUsageStatistics.md) diff --git a/en/application-dev/reference/apis/js-apis-bluetooth.md b/en/application-dev/reference/apis/js-apis-bluetooth.md index b1528f9e2fa160f1616ba9a86370d4a6d721546b..f22961f16809055e3ab560afb78750e42030aec3 100644 --- a/en/application-dev/reference/apis/js-apis-bluetooth.md +++ b/en/application-dev/reference/apis/js-apis-bluetooth.md @@ -4,7 +4,8 @@ The **Bluetooth** module provides classic Bluetooth capabilities and Bluetooth L > **NOTE** > -> The initial APIs of this module are supported since API version 7. Newly added APIs will be marked with a superscript to indicate their earliest API version. +> - The initial APIs of this module are supported since API version 7. Newly added APIs will be marked with a superscript to indicate their earliest API version. +> - The APIs provided by this module are no longer maintained since API version 9. You are advised to use [bluetoothManager](js-apis-bluetoothManager.md). @@ -15,12 +16,15 @@ import bluetooth from '@ohos.bluetooth'; ``` -## bluetooth.enableBluetooth8+ +## bluetooth.enableBluetooth8+(deprecated) enableBluetooth(): boolean Enables Bluetooth. +> **NOTE** +> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.enableBluetooth](js-apis-bluetoothManager.md#bluetoothmanagerenablebluetooth). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -38,12 +42,15 @@ let enable = bluetooth.enableBluetooth(); ``` -## bluetooth.disableBluetooth8+ +## bluetooth.disableBluetooth8+(deprecated) disableBluetooth(): boolean Disables Bluetooth. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.disableBluetooth](js-apis-bluetoothManager.md#bluetoothmanagerdisablebluetooth). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -61,12 +68,15 @@ let disable = bluetooth.disableBluetooth(); ``` -## bluetooth.getLocalName8+ +## bluetooth.getLocalName8+(deprecated) getLocalName(): string Obtains the name of the local Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getLocalName](js-apis-bluetoothManager.md#bluetoothmanagergetlocalname). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -84,12 +94,15 @@ let localName = bluetooth.getLocalName(); ``` -## bluetooth.getState +## bluetooth.getState(deprecated) getState(): BluetoothState Obtains the Bluetooth state. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.getState](js-apis-bluetoothManager.md#bluetoothmanagergetstate). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -107,11 +120,14 @@ let state = bluetooth.getState(); ``` -## bluetooth.getBtConnectionState +## bluetooth.getBtConnectionState(deprecated) getBtConnectionState(): ProfileConnectionState -Obtains the profile connection state of this Bluetooth device. +Obtains the local profile connection state. + +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.getBtConnectionState](js-apis-bluetoothManager.md#bluetoothmanagergetbtconnectionstate). **Required permissions**: ohos.permission.USE_BLUETOOTH @@ -130,12 +146,15 @@ let connectionState = bluetooth.getBtConnectionState(); ``` -## bluetooth.setLocalName8+ +## bluetooth.setLocalName8+(deprecated) setLocalName(name: string): boolean Sets the name of the local Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.setLocalName](js-apis-bluetoothManager.md#bluetoothmanagersetlocalname). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -159,12 +178,15 @@ let ret = bluetooth.setLocalName('device_name'); ``` -## bluetooth.pairDevice +## bluetooth.pairDevice(deprecated) pairDevice(deviceId: string): boolean Initiates Bluetooth pairing. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.pairDevice](js-apis-bluetoothManager.md#bluetoothmanagerpairdevice). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -189,11 +211,14 @@ let result = bluetooth.pairDevice("XX:XX:XX:XX:XX:XX"); ``` -## bluetooth.getProfileConnState8+ +## bluetooth.getProfileConnState8+(deprecated) getProfileConnState(profileId: ProfileId): ProfileConnectionState -Obtains the connection state of a profile. +Obtains the connection status of a specified profile. + +> **NOTE** +> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getProfileConnectionState](js-apis-bluetoothManager.md#bluetoothmanagergetprofileconnectionstate). **Required permissions**: ohos.permission.USE_BLUETOOTH @@ -218,12 +243,15 @@ let result = bluetooth.getProfileConnState(bluetooth.ProfileId.PROFILE_A2DP_SOUR ``` -## bluetooth.cancelPairedDevice8+ +## bluetooth.cancelPairedDevice8+(deprecated) cancelPairedDevice(deviceId: string): boolean Cancels a paired remote device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.cancelPairedDevice](js-apis-bluetoothManager.md#bluetoothmanagercancelpaireddevice). + **System API**: This is a system API. **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH @@ -249,12 +277,15 @@ let result = bluetooth.cancelPairedDevice("XX:XX:XX:XX:XX:XX"); ``` -## bluetooth.getRemoteDeviceName8+ +## bluetooth.getRemoteDeviceName8+(deprecated) getRemoteDeviceName(deviceId: string): string Obtains the name of the remote Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getRemoteDeviceName](js-apis-bluetoothManager.md#bluetoothmanagergetremotedevicename). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -278,12 +309,15 @@ let remoteDeviceName = bluetooth.getRemoteDeviceName("XX:XX:XX:XX:XX:XX"); ``` -## bluetooth.getRemoteDeviceClass8+ +## bluetooth.getRemoteDeviceClass8+(deprecated) getRemoteDeviceClass(deviceId: string): DeviceClass Obtains the class of the remote Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getRemoteDeviceClass](js-apis-bluetoothManager.md#bluetoothmanagergetremotedeviceclass). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -307,12 +341,15 @@ let remoteDeviceClass = bluetooth.getRemoteDeviceClass("XX:XX:XX:XX:XX:XX"); ``` -## bluetooth.getPairedDevices8+ +## bluetooth.getPairedDevices8+(deprecated) getPairedDevices(): Array<string> Obtains the paired devices. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getPairedDevices](js-apis-bluetoothManager.md#bluetoothmanagergetpaireddevices). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -330,12 +367,15 @@ let devices = bluetooth.getPairedDevices(); ``` -## bluetooth.setBluetoothScanMode8+ +## bluetooth.setBluetoothScanMode8+(deprecated) setBluetoothScanMode(mode: ScanMode, duration: number): boolean Sets the Bluetooth scan mode so that the device can be discovered by a remote device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.setBluetoothScanMode](js-apis-bluetoothManager.md#bluetoothmanagersetbluetoothscanmode). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -361,12 +401,15 @@ let result = bluetooth.setBluetoothScanMode(bluetooth.ScanMode.SCAN_MODE_CONNECT ``` -## bluetooth.getBluetoothScanMode8+ +## bluetooth.getBluetoothScanMode8+(deprecated) getBluetoothScanMode(): ScanMode Obtains the Bluetooth scan mode. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getBluetoothScanMode](js-apis-bluetoothManager.md#bluetoothmanagergetbluetoothscanmode). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -384,12 +427,15 @@ let scanMode = bluetooth.getBluetoothScanMode(); ``` -## bluetooth.startBluetoothDiscovery8+ +## bluetooth.startBluetoothDiscovery8+(deprecated) startBluetoothDiscovery(): boolean Starts Bluetooth scan to discover remote devices. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.startBluetoothDiscovery](js-apis-bluetoothManager.md#bluetoothmanagerstartbluetoothdiscovery). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.LOCATION **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -412,12 +458,15 @@ let result = bluetooth.startBluetoothDiscovery(); ``` -## bluetooth.stopBluetoothDiscovery8+ +## bluetooth.stopBluetoothDiscovery8+(deprecated) stopBluetoothDiscovery(): boolean Stops Bluetooth scan. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.stopBluetoothDiscovery](js-apis-bluetoothManager.md#bluetoothmanagerstopbluetoothdiscovery). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -435,12 +484,15 @@ let result = bluetooth.stopBluetoothDiscovery(); ``` -## bluetooth.setDevicePairingConfirmation8+ +## bluetooth.setDevicePairingConfirmation8+(deprecated) setDevicePairingConfirmation(device: string, accept: boolean): boolean Sets the device pairing confirmation. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.setDevicePairingConfirmation](js-apis-bluetoothManager.md#bluetoothmanagersetdevicepairingconfirmation). + **Required permissions**: ohos.permission.MANAGE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -470,12 +522,15 @@ bluetooth.on("pinRequired", onReceivePinRequiredEvent); ``` -## bluetooth.on('bluetoothDeviceFind')8+ +## bluetooth.on('bluetoothDeviceFind')8+(deprecated) on(type: "bluetoothDeviceFind", callback: Callback<Array<string>>): void Subscribes to the Bluetooth device discovery events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.on('bluetoothDeviceFind')](js-apis-bluetoothManager.md#bluetoothmanageronbluetoothdevicefind). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -501,12 +556,15 @@ bluetooth.on('bluetoothDeviceFind', onReceiveEvent); ``` -## bluetooth.off('bluetoothDeviceFind')8+ +## bluetooth.off('bluetoothDeviceFind')8+(deprecated) off(type: "bluetoothDeviceFind", callback?: Callback<Array<string>>): void Unsubscribes from the Bluetooth device discovery events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.off('bluetoothDeviceFind')](js-apis-bluetoothManager.md#bluetoothmanageroffbluetoothdevicefind). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -533,12 +591,15 @@ bluetooth.off('bluetoothDeviceFind', onReceiveEvent); ``` -## bluetooth.on('pinRequired')8+ +## bluetooth.on('pinRequired')8+(deprecated) on(type: "pinRequired", callback: Callback<PinRequiredParam>): void Subscribes to the pairing request events of the remote Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.on('pinRequired')](js-apis-bluetoothManager.md#bluetoothmanageronpinrequired). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -564,12 +625,15 @@ bluetooth.on('pinRequired', onReceiveEvent); ``` -## bluetooth.off('pinRequired')8+ +## bluetooth.off('pinRequired')8+(deprecated) off(type: "pinRequired", callback?: Callback<PinRequiredParam>): void Unsubscribes from the pairing request events of the remote Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.off('pinRequired')](js-apis-bluetoothManager.md#bluetoothmanageroffpinrequired). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -596,12 +660,15 @@ bluetooth.off('pinRequired', onReceiveEvent); ``` -## bluetooth.on('bondStateChange')8+ +## bluetooth.on('bondStateChange')8+(deprecated) on(type: "bondStateChange", callback: Callback<BondStateParam>): void Subscribes to the Bluetooth pairing state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.on('bondStateChange')](js-apis-bluetoothManager.md#bluetoothmanageronbondstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -627,12 +694,15 @@ bluetooth.on('bondStateChange', onReceiveEvent); ``` -## bluetooth.off('bondStateChange')8+ +## bluetooth.off('bondStateChange')8+(deprecated) off(type: "bondStateChange", callback?: Callback<BondStateParam>): void Unsubscribes from the Bluetooth pairing state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.off('bondStateChange')](js-apis-bluetoothManager.md#bluetoothmanageroffbondstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -659,12 +729,15 @@ bluetooth.off('bondStateChange', onReceiveEvent); ``` -## bluetooth.on('stateChange')8+ +## bluetooth.on('stateChange')8+(deprecated) on(type: "stateChange", callback: Callback<BluetoothState>): void Subscribes to the Bluetooth connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.on('stateChange')](js-apis-bluetoothManager.md#bluetoothmanageronstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -690,12 +763,15 @@ bluetooth.on('stateChange', onReceiveEvent); ``` -## bluetooth.off('stateChange')8+ +## bluetooth.off('stateChange')8+(deprecated) off(type: "stateChange", callback?: Callback<BluetoothState>): void Unsubscribes from the Bluetooth connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.off('stateChange')](js-apis-bluetoothManager.md#bluetoothmanageroffstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -722,12 +798,15 @@ bluetooth.off('stateChange', onReceiveEvent); ``` -## bluetooth.sppListen8+ +## bluetooth.sppListen8+(deprecated) sppListen(name: string, option: SppOption, callback: AsyncCallback<number>): void Creates a server listening socket. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppListen](js-apis-bluetoothManager.md#bluetoothmanagerspplisten). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -757,12 +836,15 @@ bluetooth.sppListen('server1', sppOption, serverSocket); ``` -## bluetooth.sppAccept8+ +## bluetooth.sppAccept8+(deprecated) sppAccept(serverSocket: number, callback: AsyncCallback<number>): void Listens for a connection to be made to this socket from the client and accepts it. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppAccept](js-apis-bluetoothManager.md#bluetoothmanagersppaccept). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -796,12 +878,15 @@ bluetooth.sppAccept(serverNumber, acceptClientSocket); ``` -## bluetooth.sppConnect8+ +## bluetooth.sppConnect8+(deprecated) sppConnect(device: string, option: SppOption, callback: AsyncCallback<number>): void Initiates an SPP connection to a remote device from the client. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppConnect](js-apis-bluetoothManager.md#bluetoothmanagersppconnect). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -832,12 +917,15 @@ bluetooth.sppConnect('XX:XX:XX:XX:XX:XX', sppOption, clientSocket); ``` -## bluetooth.sppCloseServerSocket8+ +## bluetooth.sppCloseServerSocket8+(deprecated) sppCloseServerSocket(socket: number): void Closes the listening socket of the server. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppCloseServerSocket](js-apis-bluetoothManager.md#bluetoothmanagersppcloseserversocket). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -861,12 +949,15 @@ bluetooth.sppCloseServerSocket(serverNumber); ``` -## bluetooth.sppCloseClientSocket8+ +## bluetooth.sppCloseClientSocket8+(deprecated) sppCloseClientSocket(socket: number): void Closes the client socket. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppCloseClientSocket](js-apis-bluetoothManager.md#bluetoothmanagersppcloseclientsocket). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -892,12 +983,15 @@ bluetooth.sppCloseClientSocket(clientNumber); ``` -## bluetooth.sppWrite8+ +## bluetooth.sppWrite8+(deprecated) sppWrite(clientSocket: number, data: ArrayBuffer): boolean Writes data to the remote device through the socket. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.sppWrite](js-apis-bluetoothManager.md#bluetoothmanagersppwrite). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -937,10 +1031,13 @@ if (ret) { ``` -## bluetooth.on('sppRead')8+ +## bluetooth.on('sppRead')8+(deprecated) on(type: "sppRead", clientSocket: number, callback: Callback<ArrayBuffer>): void +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.on('sppRead')](js-apis-bluetoothManager.md#bluetoothmanageronsppread). + Subscribes to the SPP read request events. **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -977,12 +1074,15 @@ bluetooth.on('sppRead', clientNumber, dataRead); ``` -## bluetooth.off('sppRead')8+ +## bluetooth.off('sppRead')8+(deprecated) off(type: "sppRead", clientSocket: number, callback?: Callback<ArrayBuffer>): void Unsubscribes from the SPP read request events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.off('sppRead')](js-apis-bluetoothManager.md#bluetoothmanageroffsppread). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1013,12 +1113,15 @@ bluetooth.off('sppRead', clientNumber); ``` -## bluetooth.getProfile8+ +## bluetooth.getProfile8+(deprecated) getProfile(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile Obtains a profile object. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.getProfileInstance](js-apis-bluetoothManager.md#bluetoothmanagergetprofileinstance). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1039,41 +1142,18 @@ Obtains a profile object. let a2dpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_A2DP_SOURCE); ``` -## bluetooth.getProfileInst9+ - -getProfileInst(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile | HidHostProfile | PanProfile - -Obtains a profile instance. API version 9 is added with **HidHostProfile** and **PanProfile**. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| --------- | --------- | ---- | ------------------------------------- | -| profileId | [ProfileId](#ProfileId) | Yes | ID of the profile to obtain, for example, **PROFILE_A2DP_SOURCE**.| - -**Return value** - -| Type | Description | -| ------------------------------------------------------------ | ------------------------------------------------------------ | -| [A2dpSourceProfile](#a2dpsourceprofile), [HandsFreeAudioGatewayProfile](#handsfreeaudiogatewayprofile), [HidHostProfile](#hidhostprofile), or [PanProfile](#panprofile)| Profile instance obtained, which can be **A2dpSourceProfile**, **HandsFreeAudioGatewayProfile**, **HidHostProfile**, or **PanProfile**.| - -**Example** - -```js -let hidHost = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_HID_HOST); -``` - ## bluetooth.BLE -### bluetooth.BLE.createGattServer +### bluetooth.BLE.createGattServer(deprecated) createGattServer(): GattServer Creates a **GattServer** instance. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.createGattServer](js-apis-bluetoothManager.md#bluetoothmanagerblecreategattserver). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Return value** @@ -1089,12 +1169,15 @@ let gattServer = bluetooth.BLE.createGattServer(); ``` -### bluetooth.BLE.createGattClientDevice +### bluetooth.BLE.createGattClientDevice(deprecated) createGattClientDevice(deviceId: string): GattClientDevice Creates a **GattClientDevice** instance. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.createGattClientDevice](js-apis-bluetoothManager.md#bluetoothmanagerblecreategattclientdevice). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1116,12 +1199,15 @@ let device = bluetooth.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); ``` -### bluetooth.BLE.getConnectedBLEDevices +### bluetooth.BLE.getConnectedBLEDevices(deprecated) getConnectedBLEDevices(): Array<string> Obtains the BLE devices connected to this device. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.getConnectedBLEDevices](js-apis-bluetoothManager.md#bluetoothmanagerblegetconnectedbledevices). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1139,12 +1225,15 @@ let result = bluetooth.BLE.getConnectedBLEDevices(); ``` -### bluetooth.BLE.startBLEScan +### bluetooth.BLE.startBLEScan(deprecated) startBLEScan(filters: Array<ScanFilter>, options?: ScanOptions): void Starts a BLE scan. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.startBLEScan](js-apis-bluetoothManager.md#bluetoothmanagerblestartblescan). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH, ohos.permission.MANAGE_BLUETOOTH, and ohos.permission.LOCATION **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1182,12 +1271,15 @@ bluetooth.BLE.startBLEScan( ``` -### bluetooth.BLE.stopBLEScan +### bluetooth.BLE.stopBLEScan(deprecated) stopBLEScan(): void Stops the BLE scan. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.stopBLEScan](js-apis-bluetoothManager.md#bluetoothmanagerblestopblescan). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1203,12 +1295,15 @@ bluetooth.BLE.stopBLEScan(); ``` -### bluetooth.BLE.on('BLEDeviceFind') +### bluetooth.BLE.on('BLEDeviceFind')(deprecated) on(type: "BLEDeviceFind", callback: Callback<Array<ScanResult>>): void Subscribe to the BLE device discovery events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.on('BLEDeviceFind')](js-apis-bluetoothManager.md#bluetoothmanagerbleonbledevicefind). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1234,12 +1329,15 @@ bluetooth.BLE.on('BLEDeviceFind', onReceiveEvent); ``` -### bluetooth.BLE.off('BLEDeviceFind') +### bluetooth.BLE.off('BLEDeviceFind')(deprecated) off(type: "BLEDeviceFind", callback?: Callback<Array<ScanResult>>): void Unsubscribes from the BLE device discovery events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLE.off('BLEDeviceFind')](js-apis-bluetoothManager.md#bluetoothmanagerbleoffbledevicefind). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1271,12 +1369,15 @@ bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent); Provides the profile base class. -### getConnectionDevices8+ +### getConnectionDevices8+(deprecated) getConnectionDevices(): Array<string> Obtains the connected devices. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.BaseProfile.getConnectionDevices](js-apis-bluetoothManager.md#getconnectiondevices). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1294,12 +1395,15 @@ let a2dpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_A2DP_SOURCE) as b let retArray = a2dpSrc.getConnectionDevices(); ``` -### getDeviceState8+ +### getDeviceState8+(deprecated) getDeviceState(device: string): ProfileConnectionState Obtains the connection state of the profile. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.BaseProfile.getDeviceState](js-apis-bluetoothManager.md#getdevicestate). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1328,12 +1432,15 @@ let ret = a2dpSrc.getDeviceState('XX:XX:XX:XX:XX:XX'); Before using a method of **A2dpSourceProfile**, you need to create an instance of this class by using the **getProfile()** method. -### connect8+ +### connect8+(deprecated) connect(device: string): boolean Sets up an Advanced Audio Distribution Profile (A2DP) connection. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.A2dpSourceProfile.connect](js-apis-bluetoothManager.md#connect). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1358,12 +1465,15 @@ let ret = a2dpSrc.connect('XX:XX:XX:XX:XX:XX'); ``` -### disconnect8+ +### disconnect8+(deprecated) disconnect(device: string): boolean Disconnects an A2DP connection. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.A2dpSourceProfile.disconnect](js-apis-bluetoothManager.md#disconnect). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1388,12 +1498,15 @@ let ret = a2dpSrc.disconnect('XX:XX:XX:XX:XX:XX'); ``` -### on('connectionStateChange')8+ +### on('connectionStateChange')8+(deprecated) on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void Subscribes to the A2DP connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.A2dpSourceProfile.on('connectionStateChange')](js-apis-bluetoothManager.md#onconnectionstatechange). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1418,12 +1531,15 @@ a2dpSrc.on('connectionStateChange', onReceiveEvent); ``` -### off('connectionStateChange')8+ +### off('connectionStateChange')8+(deprecated) off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void Unsubscribes from the A2DP connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.A2dpSourceProfile.off('connectionStateChange')](js-apis-bluetoothManager.md#offconnectionstatechange). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1431,7 +1547,7 @@ Unsubscribes from the A2DP connection state change events. | Name | Type | Mandatory | Description | | -------- | ---------------------------------------- | ---- | ---------------------------------------- | | type | string | Yes | Event type. The value **connectionStateChange** indicates an A2DP connection state change event.| -| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback used to return the A2DP connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the A2DP connection state change event. | **Return value** @@ -1449,12 +1565,15 @@ a2dpSrc.off('connectionStateChange', onReceiveEvent); ``` -### getPlayingState8+ +### getPlayingState8+(deprecated) getPlayingState(device: string): PlayingState Obtains the playing state of a device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.A2dpSourceProfile.getPlayingState](js-apis-bluetoothManager.md#getplayingstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1482,12 +1601,15 @@ let state = a2dpSrc.getPlayingState('XX:XX:XX:XX:XX:XX'); Before using a method of **HandsFreeAudioGatewayProfile**, you need to create an instance of this class by using the **getProfile()** method. -### connect8+ +### connect8+(deprecated) connect(device: string): boolean Sets up a Hands-free Profile (HFP) connection of a device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.HandsFreeAudioGatewayProfile.connect](js-apis-bluetoothManager.md#connect-1). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1513,12 +1635,15 @@ let ret = hfpAg.connect('XX:XX:XX:XX:XX:XX'); ``` -### disconnect8+ +### disconnect8+(deprecated) disconnect(device: string): boolean Disconnects the HFP connection of a device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.HandsFreeAudioGatewayProfile.disconnect](js-apis-bluetoothManager.md#disconnect-1). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1544,12 +1669,15 @@ let ret = hfpAg.disconnect('XX:XX:XX:XX:XX:XX'); ``` -### on('connectionStateChange')8+ +### on('connectionStateChange')8+(deprecated) on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void Subscribes to the HFP connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.HandsFreeAudioGatewayProfile.on('connectionStateChange')](js-apis-bluetoothManager.md#onconnectionstatechange-1). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1575,12 +1703,15 @@ hfpAg.on('connectionStateChange', onReceiveEvent); ``` -### off('connectionStateChange')8+ +### off('connectionStateChange')8+(deprecated) off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void Unsubscribes from the HFP connection state change events. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.HandsFreeAudioGatewayProfile.off('connectionStateChange')](js-apis-bluetoothManager.md#offconnectionstatechange-1). + **System capability**: SystemCapability.Communication.Bluetooth.Core **Parameters** @@ -1607,301 +1738,20 @@ hfpAg.off('connectionStateChange', onReceiveEvent); ``` -## HidHostProfile - -Before using a method of **HidHostProfile**, you need to create an instance of this class by using the **getProfile()** method. - - -### connect9+ - -connect(device: string): boolean - -Connects to the HidHost service of a device. - -**System API**: This is a system API. - -**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | ------- | -| device | string | Yes | Address of the target device.| - -**Return value** - -| Type | Description | -| --------------------- | --------------------------------- | -| boolean | Returns **true** if the operation is successful; returns **false** otherwise.| - -**Example** - -```js -let hidHostProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_HID_HOST) as bluetooth.HidHostProfile; -let ret = hidHostProfile.connect('XX:XX:XX:XX:XX:XX'); -``` - - -### disconnect9+ - -disconnect(device: string): boolean - -Disconnects from the HidHost service of a device. - -**System API**: This is a system API. - -**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | ------- | -| device | string | Yes | Address of the target device.| - -**Return value** - -| Type | Description | -| --------------------- | --------------------------------- | -| boolean | Returns **true** if the operation is successful; returns **false** otherwise.| - -**Example** - -```js -let hidHostProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_HID_HOST) as bluetooth.HidHostProfile; -let ret = hidHostProfile.disconnect('XX:XX:XX:XX:XX:XX'); -``` - - -### on('connectionStateChange')9+ - -on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void - -Subscribes to the HidHost connection state change events. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------------- | ---- | ---------------------------------------- | -| type | string | Yes | Event type. The value **connectionStateChange** indicates a HidHost connection state change event.| -| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the HidHost connection state change event. | - -**Return value** - -No value is returned. - -**Example** - -```js -function onReceiveEvent(data) { - console.info('hidHost state = '+ JSON.stringify(data)); -} -let hidHost = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_HID_HOST) as bluetooth.HidHostProfile; -hidHost.on('connectionStateChange', onReceiveEvent); -``` - - -### off('connectionStateChange')9+ - -off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void - -Unsubscribes from the HidHost connection state change events. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory| Description | -| -------- | ----------------------------------------------------- | ---- | --------------------------------------------------------- | -| type | string | Yes | Event type. The value **connectionStateChange** indicates a HidHost connection state change event.| -| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the HidHost connection state change event. | - -**Return value** - -No value is returned. - -**Example** - -```js -function onReceiveEvent(data) { - console.info('hidHost state = '+ JSON.stringify(data)); -} -let hidHost = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_HID_HOST) as bluetooth.HidHostProfile; -hidHost.on('connectionStateChange', onReceiveEvent); -hidHost.off('connectionStateChange', onReceiveEvent); -``` - - -## PanProfile - -Before using a method of **PanProfile**, you need to create an instance of this class by using the **getProfile()** method. - - -### disconnect9+ - -disconnect(device: string): boolean - -Disconnects from the Personal Area Network (PAN) service of a device. - -**System API**: This is a system API. - -**Required permissions**: ohos.permission.USE_BLUETOOTH - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | ------- | -| device | string | Yes | Address of the target device.| - -**Return value** - -| Type | Description | -| --------------------- | --------------------------------- | -| boolean | Returns **true** if the operation is successful; returns **false** otherwise.| - -**Example** - -```js -let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK) as bluetooth.PanProfile; -let ret = panProfile.disconnect('XX:XX:XX:XX:XX:XX'); -``` - - -### on('connectionStateChange')9+ - -on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void - -Subscribes to the PAN connection state change events. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------------- | ---- | ---------------------------------------- | -| type | string | Yes | Event type. The value **connectionStateChange** indicates a PAN connection state change event.| -| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the PAN connection state change event. | - -**Return value** - -No value is returned. - -**Example** - -```js -function onReceiveEvent(data) { - console.info('pan state = '+ JSON.stringify(data)); -} -let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK) as bluetooth.PanProfile; -panProfile.on('connectionStateChange', onReceiveEvent); -``` - - -### off('connectionStateChange')9+ - -off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void - -Unsubscribes from the PAN connection state change events. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory| Description | -| -------- | ----------------------------------------------------- | ---- | --------------------------------------------------------- | -| type | string | Yes | Event type. The value **connectionStateChange** indicates a PAN connection state change event.| -| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the PAN connection state change event. | - -**Return value** - -No value is returned. - -**Example** - -```js -function onReceiveEvent(data) { - console.info('pan state = '+ JSON.stringify(data)); -} -let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK) as bluetooth.PanProfile; -panProfile.on('connectionStateChange', onReceiveEvent); -panProfile.off('connectionStateChange', onReceiveEvent); -``` - - -### setTethering9+ - -setTethering(enable: boolean): void - -Sets tethering. - -**System API**: This is a system API. - -**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Parameters** - -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | ------- | -| value | boolean | Yes | Whether to set tethering over a Bluetooth PAN.| - -**Return value** - -| Type | Description | -| --------------------- | --------------------------------- | -| boolean | Returns **true** if the operation is successful; returns **false** otherwise.| - -**Example** - -```js -let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK) as bluetooth.PanProfile; -let ret = panProfile.setTethering(true); -``` - - -### isTetheringOn9+ - -isTetheringOn(): boolean - -Obtains the tethering state. - -**System API**: This is a system API. - -**System capability**: SystemCapability.Communication.Bluetooth.Core - -**Return value** - -| Type | Description | -| --------------------- | --------------------------------- | -| boolean | Returns **true** if tethering is available over a Bluetooth PAN; return **false** otherwise.| - -**Example** - -```js -let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK) as bluetooth.PanProfile; -let ret = panProfile.isTetheringOn(); -``` - - ## GattServer Implements the Generic Attribute Profile (GATT) server. Before using a method of this class, you need to create a **GattServer** instance using the **createGattServer()** method. -### startAdvertising +### startAdvertising(deprecated) startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void Starts BLE advertising. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.startAdvertising](js-apis-bluetoothManager.md#startadvertising). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1963,12 +1813,15 @@ gattServer.startAdvertising({ ``` -### stopAdvertising +### stopAdvertising(deprecated) stopAdvertising(): void Stops BLE advertising. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.stopAdvertising](js-apis-bluetoothManager.md#stopadvertising). + **Required permissions**: ohos.permission.DISCOVER_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -1985,12 +1838,15 @@ server.stopAdvertising(); ``` -### addService +### addService(deprecated) addService(service: GattService): boolean Adds a service to this GATT server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.addService](js-apis-bluetoothManager.md#addservice). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2044,12 +1900,15 @@ if (ret) { ``` -### removeService +### removeService(deprecated) removeService(serviceUuid: string): boolean Removes a service from this GATT server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.removeService](js-apis-bluetoothManager.md#removeservice). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2074,12 +1933,15 @@ server.removeService('00001810-0000-1000-8000-00805F9B34FB'); ``` -### close +### close(deprecated) close(): void Closes this GATT server to unregister it from the protocol stack. After this method is called, this [GattServer](#gattserver) cannot be used. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.close](js-apis-bluetoothManager.md#close). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2092,12 +1954,15 @@ server.close(); ``` -### notifyCharacteristicChanged +### notifyCharacteristicChanged(deprecated) notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean Notifies the connected client device when a characteristic value changes. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.notifyCharacteristicChanged](js-apis-bluetoothManager.md#notifycharacteristicchanged). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2137,12 +2002,15 @@ server.notifyCharacteristicChanged('XX:XX:XX:XX:XX:XX', notifyCharacteristic); ``` -### sendResponse +### sendResponse(deprecated) sendResponse(serverResponse: ServerResponse): boolean Sends a response to a read or write request from the GATT client. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.sendResponse](js-apis-bluetoothManager.md#sendresponse). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2184,12 +2052,15 @@ if (ret) { ``` -### on('characteristicRead') +### on('characteristicRead')(deprecated) on(type: "characteristicRead", callback: Callback<CharacteristicReadReq>): void Subscribes to the characteristic read request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.on('characteristicRead')](js-apis-bluetoothManager.md#oncharacteristicread). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2232,12 +2103,15 @@ gattServer.on("characteristicRead", ReadCharacteristicReq); ``` -### off('characteristicRead') +### off('characteristicRead')(deprecated) off(type: "characteristicRead", callback?: Callback<CharacteristicReadReq>): void Unsubscribes from the characteristic read request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.off('characteristicRead')](js-apis-bluetoothManager.md#offcharacteristicread). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2261,12 +2135,15 @@ gattServer.off("characteristicRead"); ``` -### on('characteristicWrite') +### on('characteristicWrite')(deprecated) on(type: "characteristicWrite", callback: Callback<CharacteristicWriteReq>): void Subscribes to the characteristic write request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.on('characteristicWrite')](js-apis-bluetoothManager.md#oncharacteristicwrite). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2312,12 +2189,15 @@ gattServer.on("characteristicWrite", WriteCharacteristicReq); ``` -### off('characteristicWrite') +### off('characteristicWrite')(deprecated) off(type: "characteristicWrite", callback?: Callback<CharacteristicWriteReq>): void Unsubscribes from the characteristic write request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.off('characteristicWrite')](js-apis-bluetoothManager.md#offcharacteristicwrite). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2341,12 +2221,15 @@ gattServer.off("characteristicWrite"); ``` -### on('descriptorRead') +### on('descriptorRead')(deprecated) on(type: "descriptorRead", callback: Callback<DescriptorReadReq>): void Subscribes to the descriptor read request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.on('descriptorRead')](js-apis-bluetoothManager.md#ondescriptorread). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2389,12 +2272,15 @@ gattServer.on("descriptorRead", ReadDescriptorReq); ``` -### off('descriptorRead') +### off('descriptorRead')(deprecated) off(type: "descriptorRead", callback?: Callback<DescriptorReadReq>): void Unsubscribes from the descriptor read request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.off('descriptorRead')](js-apis-bluetoothManager.md#offdescriptorread). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2418,12 +2304,15 @@ gattServer.off("descriptorRead"); ``` -### on('descriptorWrite') +### on('descriptorWrite')(deprecated) on(type: "descriptorWrite", callback: Callback<DescriptorWriteReq>): void Subscribes to the descriptor write request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.on('descriptorWrite')](js-apis-bluetoothManager.md#ondescriptorwrite). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2469,12 +2358,15 @@ gattServer.on("descriptorRead", WriteDescriptorReq); ``` -### off('descriptorWrite') +### off('descriptorWrite')(deprecated) off(type: "descriptorWrite", callback?: Callback<DescriptorWriteReq>): void Unsubscribes from the descriptor write request events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.off('descriptorWrite')](js-apis-bluetoothManager.md#offdescriptorwrite). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2498,12 +2390,15 @@ gattServer.off("descriptorWrite"); ``` -### on('connectStateChange') +### on('connectStateChange')(deprecated) on(type: "connectStateChange", callback: Callback<BLEConnectChangedState>): void Subscribes to the BLE connection state change events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.on('connectStateChange')](js-apis-bluetoothManager.md#onconnectstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2532,12 +2427,15 @@ gattServer.on("connectStateChange", Connected); ``` -### off('connectStateChange') +### off('connectStateChange')(deprecated) off(type: "connectStateChange", callback?: Callback<BLEConnectChangedState>): void Unsubscribes from the BLE connection state change events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattServer.off('connectStateChange')](js-apis-bluetoothManager.md#offconnectstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2566,12 +2464,15 @@ gattServer.off("connectStateChange"); Implements the GATT client. Before using a method of this class, you must create a **GattClientDevice** instance using the **createGattClientDevice(deviceId: string)** method. -### connect +### connect(deprecated) connect(): boolean Initiates a connection to the remote BLE device. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.connect](js-apis-bluetoothManager.md#connect-3). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2590,12 +2491,15 @@ let ret = device.connect(); ``` -### disconnect +### disconnect(deprecated) disconnect(): boolean Disconnects from the remote BLE device. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.disconnect](js-apis-bluetoothManager.md#disconnect-4). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2614,12 +2518,15 @@ let ret = device.disconnect(); ``` -### close +### close(deprecated) close(): boolean Closes this GATT client to unregister it from the protocol stack. After this method is called, this [GattClientDevice](#gattclientdevice) instance cannot be used. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.close](js-apis-bluetoothManager.md#close-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2640,12 +2547,15 @@ let ret = device.close(); -### getServices +### getServices(deprecated) getServices(callback: AsyncCallback<Array<GattService>>): void Obtains all services of the remote BLE device. This API uses an asynchronous callback to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getServices](js-apis-bluetoothManager.md#getservices). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2682,12 +2592,15 @@ device.getServices(getServices); ``` -### getServices +### getServices(deprecated) getServices(): Promise<Array<GattService>> Obtains all services of the remote BLE device. This API uses a promise to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getServices](js-apis-bluetoothManager.md#getservices-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2710,12 +2623,15 @@ device.getServices().then(result => { ``` -### readCharacteristicValue +### readCharacteristicValue(deprecated) readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback<BLECharacteristic>): void Reads the characteristic value of the specific service of the remote BLE device. This API uses an asynchronous callback to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.readCharacteristicValue](js-apis-bluetoothManager.md#readcharacteristicvalue). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2764,12 +2680,15 @@ device.readCharacteristicValue(characteristic, readCcc); ``` -### readCharacteristicValue +### readCharacteristicValue(deprecated) readCharacteristicValue(characteristic: BLECharacteristic): Promise<BLECharacteristic> Reads the characteristic value of the specific service of the remote BLE device. This API uses a promise to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.readCharacteristicValue](js-apis-bluetoothManager.md#readcharacteristicvalue-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2810,12 +2729,15 @@ device.readCharacteristicValue(characteristic); ``` -### readDescriptorValue +### readDescriptorValue(deprecated) readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback<BLEDescriptor>): void Reads the descriptor contained in the specific characteristic of the remote BLE device. This API uses an asynchronous callback to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.readDescriptorValue](js-apis-bluetoothManager.md#readdescriptorvalue). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2854,12 +2776,15 @@ device.readDescriptorValue(descriptor, readDesc); ``` -### readDescriptorValue +### readDescriptorValue(deprecated) readDescriptorValue(descriptor: BLEDescriptor): Promise<BLEDescriptor> Reads the descriptor contained in the specific characteristic of the remote BLE device. This API uses a promise to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.readDescriptorValue](js-apis-bluetoothManager.md#readdescriptorvalue-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2890,12 +2815,15 @@ device.readDescriptorValue(descriptor); ``` -### writeCharacteristicValue +### writeCharacteristicValue(deprecated) writeCharacteristicValue(characteristic: BLECharacteristic): boolean Writes a characteristic value to the remote BLE device. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.writeCharacteristicValue](js-apis-bluetoothManager.md#writecharacteristicvalue). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2940,12 +2868,15 @@ if (retWriteCcc) { ``` -### writeDescriptorValue +### writeDescriptorValue(deprecated) writeDescriptorValue(descriptor: BLEDescriptor): boolean Writes binary data to the specific descriptor of the remote BLE device. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.writeDescriptorValue](js-apis-bluetoothManager.md#writedescriptorvalue). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -2981,12 +2912,15 @@ if (retWriteDesc) { ``` -### setBLEMtuSize +### setBLEMtuSize(deprecated) setBLEMtuSize(mtu: number): boolean Sets the maximum transmission unit (MTU) that can be transmitted between the GATT client and its remote BLE device. This API can be used only after a connection is set up by calling [connect](#connect). +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.setBLEMtuSize](js-apis-bluetoothManager.md#setblemtusize). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3011,12 +2945,15 @@ device.setBLEMtuSize(128); ``` -### setNotifyCharacteristicChanged +### setNotifyCharacteristicChanged(deprecated) setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean Sets the function of notifying the GATT client when the characteristic value of the remote BLE device changes. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.setNotifyCharacteristicChanged](js-apis-bluetoothManager.md#setnotifycharacteristicchanged). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3054,12 +2991,15 @@ device.setNotifyCharacteristicChanged(characteristic, false); ``` -### on('BLECharacteristicChange') +### on('BLECharacteristicChange')(deprecated) on(type: "BLECharacteristicChange", callback: Callback<BLECharacteristic>): void Subscribes to the BLE characteristic change events. The client can receive a notification from the server only after the **setNotifyCharacteristicChanged** method is called. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.on('BLECharacteristicChange')](js-apis-bluetoothManager.md#onblecharacteristicchange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3088,12 +3028,15 @@ device.on('BLECharacteristicChange', CharacteristicChange); ``` -### off('BLECharacteristicChange') +### off('BLECharacteristicChange')(deprecated) off(type: "BLECharacteristicChange", callback?: Callback<BLECharacteristic>): void Unsubscribes from the BLE characteristic change events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.off('BLECharacteristicChange')](js-apis-bluetoothManager.md#offblecharacteristicchange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3117,12 +3060,15 @@ device.off('BLECharacteristicChange'); ``` -### on('BLEConnectionStateChange') +### on('BLEConnectionStateChange')(deprecated) on(type: "BLEConnectionStateChange", callback: Callback<BLEConnectChangedState>): void Subscribes to the BLE connection state change events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.on('BLEConnectionStateChange')](js-apis-bluetoothManager.md#onbleconnectionstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3150,12 +3096,15 @@ device.on('BLEConnectionStateChange', ConnectStateChanged); ``` -### off('BLEConnectionStateChange') +### off('BLEConnectionStateChange')(deprecated) off(type: "BLEConnectionStateChange", callback?: Callback<BLEConnectChangedState>): void Unsubscribes from the BLE connection state change events. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.off('BLEConnectionStateChange')](js-apis-bluetoothManager.md#offbleconnectionstatechange). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3179,12 +3128,15 @@ device.off('BLEConnectionStateChange'); ``` -### getDeviceName +### getDeviceName(deprecated) getDeviceName(callback: AsyncCallback<string>): void Obtains the name of the remote BLE device. This API uses an asynchronous callback to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getDeviceName](js-apis-bluetoothManager.md#getdevicename). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3211,12 +3163,15 @@ let deviceName = gattClient.getDeviceName((err, data)=> { ``` -### getDeviceName +### getDeviceName(deprecated) getDeviceName(): Promise<string> Obtains the name of the remote BLE device. This API uses a promise to return the result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getDeviceName](js-apis-bluetoothManager.md#getdevicename-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3239,12 +3194,15 @@ let deviceName = gattClient.getDeviceName().then((data) => { ``` -### getRssiValue +### getRssiValue(deprecated) getRssiValue(callback: AsyncCallback<number>): void Obtains the received signal strength indication (RSSI) of the remote BLE device. This API uses an asynchronous callback to return the result. It can be used only after a connection is set up by calling [connect](#connect). +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getRssiValue](js-apis-bluetoothManager.md#getrssivalue). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3272,12 +3230,15 @@ let rssi = gattClient.getRssiValue((err, data)=> { ``` -### getRssiValue +### getRssiValue(deprecated) getRssiValue(): Promise<number> Obtains the RSSI of the remote BLE device. This API uses a promise to return the result. It can be used only after a connection is set up by calling [connect](#connect). +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattClientDevice.getRssiValue](js-apis-bluetoothManager.md#getrssivalue-1). + **Required permissions**: ohos.permission.USE_BLUETOOTH **System capability**: SystemCapability.Communication.Bluetooth.Core @@ -3298,10 +3259,13 @@ let rssi = gattClient.getRssiValue().then((data) => { }) ``` -## ScanMode8+ +## ScanMode8+(deprecated) Enumerates the scan modes. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.ScanMode](js-apis-bluetoothManager.md#scanmode). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3313,10 +3277,13 @@ Enumerates the scan modes. | SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE | 4 | General connectable and discoverable mode.| | SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE | 5 | Limited connectable and discoverable mode.| -## BondState8+ +## BondState8+(deprecated) Enumerates the pairing states. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.BondState](js-apis-bluetoothManager.md#bondstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3326,10 +3293,13 @@ Enumerates the pairing states. | BOND_STATE_BONDED | 2 | Paired. | -## SppOption8+ +## SppOption8+(deprecated) Defines the SPP configuration parameters. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.SppOption](js-apis-bluetoothManager.md#sppoption). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3339,10 +3309,13 @@ Defines the SPP configuration parameters. | type | [SppType](#spptype) | Yes | Yes | Type of the SPP link. | -## SppType8+ +## SppType8+(deprecated) Enumerates the SPP link types. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.SppType](js-apis-bluetoothManager.md#spptype). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3350,10 +3323,13 @@ Enumerates the SPP link types. | SPP_RFCOMM | 0 | Radio frequency communication (RFCOMM) link type.| -## GattService +## GattService(deprecated) Defines the GATT service API parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.GattService](js-apis-bluetoothManager.md#gattservice). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3364,10 +3340,13 @@ Defines the GATT service API parameters. | includeServices | Array<[GattService](#gattservice)> | Yes | Yes | Services on which the service depends. | -## BLECharacteristic +## BLECharacteristic(deprecated) Defines the characteristic API parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLECharacteristic](js-apis-bluetoothManager.md#blecharacteristic). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3378,10 +3357,13 @@ Defines the characteristic API parameters. | descriptors | Array<[BLEDescriptor](#bledescriptor)> | Yes | Yes | List of descriptors of the characteristic. | -## BLEDescriptor +## BLEDescriptor(deprecated) Defines the descriptor API parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLEDescriptor](js-apis-bluetoothManager.md#bledescriptor). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3392,10 +3374,13 @@ Defines the descriptor API parameters. | descriptorValue | ArrayBuffer | Yes | Yes | Binary value of the descriptor. | -## NotifyCharacteristic +## NotifyCharacteristic(deprecated) Defines the parameters in the notifications sent when the server characteristic value changes. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.NotifyCharacteristic](js-apis-bluetoothManager.md#notifycharacteristic). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3406,10 +3391,13 @@ Defines the parameters in the notifications sent when the server characteristic | confirm | boolean | Yes | Yes | Whether the notification needs to be confirmed by the remote end. For a notification, set it to **true**. In this case, the remote end must confirm the receipt of the notification. For an indication, set it to **false**. In this case, the remote end does not need to confirm the receipt of the notification.| -## CharacteristicReadReq +## CharacteristicReadReq(deprecated) Defines the parameters of the **CharacteristicReadReq** event received by the server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.CharacteristicReadRequest](js-apis-bluetoothManager.md#characteristicreadrequest). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3421,10 +3409,13 @@ Defines the parameters of the **CharacteristicReadReq** event received by the se | serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| -## CharacteristicWriteReq +## CharacteristicWriteReq(deprecated) Defines the parameters of the **CharacteristicWriteReq** event received by the server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.CharacteristicWriteRequest](js-apis-bluetoothManager.md#characteristicwriterequest). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3437,10 +3428,13 @@ Defines the parameters of the **CharacteristicWriteReq** event received by the s | serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| -## DescriptorReadReq +## DescriptorReadReq(deprecated) Defines the parameters of the **DescriptorReadReq** event received by the server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.DescriptorReadRequest](js-apis-bluetoothManager.md#descriptorreadrequest). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3453,10 +3447,13 @@ Defines the parameters of the **DescriptorReadReq** event received by the server | serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| -## DescriptorWriteReq +## DescriptorWriteReq(deprecated) Defines the parameters of the **DescriptorWriteReq** event received by the server. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.DescriptorWriteRequest](js-apis-bluetoothManager.md#descriptorwriterequest). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3472,10 +3469,13 @@ Defines the parameters of the **DescriptorWriteReq** event received by the serve | serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| -## ServerResponse +## ServerResponse(deprecated) Defines the parameters of the server's response to the GATT client's read/write request. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ServerResponse](js-apis-bluetoothManager.md#serverresponse). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3487,10 +3487,13 @@ Defines the parameters of the server's response to the GATT client's read/write | value | ArrayBuffer | Yes | No | Binary data in the response. | -## BLEConnectChangedState +## BLEConnectChangedState(deprecated) Defines the parameters of **BLEConnectChangedState**. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BLEConnectChangedState](js-apis-bluetoothManager.md#bleconnectchangedstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable| Writable| Description | @@ -3499,10 +3502,13 @@ Defines the parameters of **BLEConnectChangedState**. | state | [ProfileConnectionState](#profileconnectionstate) | Yes | Yes | BLE connection state. | -## ProfileConnectionState +## ProfileConnectionState(deprecated) Enumerates the profile connection states. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ProfileConnectionState](js-apis-bluetoothManager.md#profileconnectionstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3513,10 +3519,13 @@ Enumerates the profile connection states. | STATE_DISCONNECTING | 3 | Disconnecting.| -## ScanFilter +## ScanFilter(deprecated) Defines the scan filter parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ScanFilter](js-apis-bluetoothManager.md#scanfilter). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable| Writable| Description | @@ -3524,20 +3533,15 @@ Defines the scan filter parameters. | deviceId | string | Yes | Yes | Address of the BLE device to filter, for example, XX:XX:XX:XX:XX:XX. | | name | string | Yes | Yes | Name of the BLE device to filter. | | serviceUuid | string | Yes | Yes | Service UUID of the device to filter, for example, **00001888-0000-1000-8000-00805f9b34fb**.| -| serviceUuidMask9+ | string | Yes | Yes | Service UUID mask of the device to filter, for example, **FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF**.| -| serviceSolicitationUuid9+ | string | Yes | Yes | Service solicitation UUID of the device to filter, for example, **00001888-0000-1000-8000-00805F9B34FB**.| -| serviceSolicitationUuidMask9+ | string | Yes | Yes | Service solicitation UUID mask of the device to filter, for example, **FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF**.| -| serviceData9+ | ArrayBuffer | Yes | Yes | Service data of the device to filter, for example, **[0x90, 0x00, 0xF1, 0xF2]**.| -| serviceDataMask9+ | ArrayBuffer | Yes | Yes | Service data mask of the device to filter, for example, **[0xFF,0xFF,0xFF,0xFF]**.| -| manufactureId9+ | number | Yes | Yes | Manufacturer ID of the device to filter, for example, **0x0006**. | -| manufactureData9+ | ArrayBuffer | Yes | Yes | Manufacturer data of the device to filter, for example, **[0x1F,0x2F,0x3F]**.| -| manufactureDataMask9+ | ArrayBuffer | Yes | Yes | Manufacturer data mask of the device to filter, for example, **[0xFF, 0xFF, 0xFF]**.| -## ScanOptions +## ScanOptions(deprecated) Defines the scan configuration parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ScanOptions](js-apis-bluetoothManager.md#scanoptions). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3547,10 +3551,13 @@ Defines the scan configuration parameters. | matchMode | [MatchMode](#matchmode) | Yes | Yes | Hardware filtering match mode. The default value is **MATCH_MODE_AGGRESSIVE**.| -## ScanDuty +## ScanDuty(deprecated) Enumerates the scan duty options. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ScanDuty](js-apis-bluetoothManager.md#scanduty). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3560,10 +3567,13 @@ Enumerates the scan duty options. | SCAN_MODE_LOW_LATENCY | 2 | Low-latency mode. | -## MatchMode +## MatchMode(deprecated) Enumerates the hardware match modes of BLE scan filters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.MatchMode](js-apis-bluetoothManager.md#matchmode). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3572,10 +3582,13 @@ Enumerates the hardware match modes of BLE scan filters. | MATCH_MODE_STICKY | 2 | Hardware reports the scan result with a higher threshold of signal strength and sightings. | -## ScanResult +## ScanResult(deprecated) Defines the scan result. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ScanResult](js-apis-bluetoothManager.md#scanresult). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3585,10 +3598,13 @@ Defines the scan result. | data | ArrayBuffer | Yes | No | Advertisement packets sent by the device. | -## BluetoothState +## BluetoothState(deprecated) Enumerates the Bluetooth states. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.BluetoothState](js-apis-bluetoothManager.md#bluetoothstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3602,10 +3618,13 @@ Enumerates the Bluetooth states. | STATE_BLE_TURNING_OFF | 6 | The LE-only mode is being turned off for Bluetooth.| -## AdvertiseSetting +## AdvertiseSetting(deprecated) Defines the BLE advertising parameters. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.AdvertiseSetting](js-apis-bluetoothManager.md#advertisesetting). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3615,10 +3634,13 @@ Defines the BLE advertising parameters. | connectable | boolean | Yes | Yes | Whether the advertisement is connectable. The default value is **true**. | -## AdvertiseData +## AdvertiseData(deprecated) Defines the content of a BLE advertisement packet. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.AdvertiseData](js-apis-bluetoothManager.md#advertisedata). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3628,10 +3650,13 @@ Defines the content of a BLE advertisement packet. | serviceData | Array<[ServiceData](#servicedata)> | Yes | Yes | List of service data to broadcast. | -## ManufactureData +## ManufactureData(deprecated) Defines the content of a BLE advertisement packet. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ManufactureData](js-apis-bluetoothManager.md#manufacturedata). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3640,10 +3665,13 @@ Defines the content of a BLE advertisement packet. | manufactureValue | ArrayBuffer | Yes | Yes | Manufacturer data. | -## ServiceData +## ServiceData(deprecated) Defines the service data contained in an advertisement packet. +> **NOTE**
+> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [bluetoothManager.ServiceData](js-apis-bluetoothManager.md#servicedata). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3652,10 +3680,13 @@ Defines the service data contained in an advertisement packet. | serviceValue | ArrayBuffer | Yes | Yes | Service data. | -## PinRequiredParam8+ +## PinRequiredParam8+(deprecated) Defines the pairing request parameters. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.PinRequiredParam](js-apis-bluetoothManager.md#pinrequiredparam). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3664,10 +3695,13 @@ Defines the pairing request parameters. | pinCode | string | Yes | No | Key for the device pairing. | -## BondStateParam8+ +## BondStateParam8+(deprecated) Defines the pairing state parameters. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.BondStateParam](js-apis-bluetoothManager.md#bondstateparam). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3676,10 +3710,13 @@ Defines the pairing state parameters. | state | BondState | Yes | No | State of the device.| -## StateChangeParam8+ +## StateChangeParam8+(deprecated) Defines the profile state change parameters. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.StateChangeParam](js-apis-bluetoothManager.md#statechangeparam). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable| Writable| Description | @@ -3688,10 +3725,13 @@ Defines the profile state change parameters. | state | [ProfileConnectionState](#profileconnectionstate) | Yes | No | Profile connection state of the device.| -## DeviceClass8+ +## DeviceClass8+(deprecated) Defines the class of a Bluetooth device. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.DeviceClass](js-apis-bluetoothManager.md#deviceclass). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Type | Readable | Writable | Description | @@ -3702,10 +3742,13 @@ Defines the class of a Bluetooth device. -## MajorClass8+ +## MajorClass8+(deprecated) Enumerates the major classes of Bluetooth devices. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.MajorClass](js-apis-bluetoothManager.md#majorclass). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3723,10 +3766,13 @@ Enumerates the major classes of Bluetooth devices. | MAJOR_UNCATEGORIZED | 0x1F00 | Unclassified device. | -## MajorMinorClass8+ +## MajorMinorClass8+(deprecated) Enumerates the major and minor classes of Bluetooth devices. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.MajorMinorClass](js-apis-bluetoothManager.md#majorminorclass). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3819,10 +3865,13 @@ Enumerates the major and minor classes of Bluetooth devices. | HEALTH_PERSONAL_MOBILITY_DEVICE | 0x093C | Personal mobility device. | -## PlayingState8+ +## PlayingState8+(deprecated) Enumerates the A2DP playing states. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.PlayingState](js-apis-bluetoothManager.md#playingstate). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | @@ -3831,15 +3880,16 @@ Enumerates the A2DP playing states. | STATE_PLAYING | 0x0001 | Playing.| -## ProfileId8+ +## ProfileId8+(deprecated) Enumerates the Bluetooth profiles. API version 9 is added with **PROFILE_HID_HOST** and **PROFILE_PAN_NETWORK**. +> **NOTE**
+> This API is supported since API version 8 and deprecated since API version 9. You are advised to use [bluetoothManager.ProfileId](js-apis-bluetoothManager.md#profileid). + **System capability**: SystemCapability.Communication.Bluetooth.Core | Name | Value | Description | | -------------------------------- | ------ | --------------- | | PROFILE_A2DP_SOURCE | 1 | A2DP profile.| | PROFILE_HANDS_FREE_AUDIO_GATEWAY | 4 | HFP profile. | -| PROFILE_HID_HOST9+ | 6 | Human Interface Device (HID) profile. | -| PROFILE_PAN_NETWORK9+ | 7 | PAN profile. | diff --git a/en/application-dev/reference/apis/js-apis-bluetoothManager.md b/en/application-dev/reference/apis/js-apis-bluetoothManager.md new file mode 100644 index 0000000000000000000000000000000000000000..9711dd232291c9863725c5ed3dba6a64f654cea7 --- /dev/null +++ b/en/application-dev/reference/apis/js-apis-bluetoothManager.md @@ -0,0 +1,4491 @@ +# @ohos.bluetoothManager (Bluetooth) + +The **Bluetooth** module provides classic Bluetooth capabilities and Bluetooth Low Energy (BLE) scan and advertising. + +> **NOTE** +> +> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version. + + + +## Modules to Import + +```js +import bluetoothManager from '@ohos.bluetoothManager'; +``` + + +## bluetoothManager.enableBluetooth + +enableBluetooth(): void + +Enables Bluetooth. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.enableBluetooth(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.disableBluetooth + +disableBluetooth(): void + +Disables Bluetooth. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.disableBluetooth(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getLocalName + +getLocalName(): string + +Obtains the name of the local Bluetooth device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ------ | --------- | +| string | Name of the local Bluetooth device obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let localName = bluetoothManager.getLocalName(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getState + +getState(): BluetoothState + +Obtains the Bluetooth state. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| --------------------------------- | --------- | +| [BluetoothState](#bluetoothstate) | Bluetooth state obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let state = bluetoothManager.getState(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getBtConnectionState + +getBtConnectionState(): ProfileConnectionState + +Obtains the local profile connection status. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ---------------------------------------- | ------------------- | +| [ProfileConnectionState](#profileconnectionstate) | Profile connection state obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let connectionState = bluetoothManager.getBtConnectionState(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.setLocalName + +setLocalName(name: string): void + +Sets the name of the local Bluetooth device. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ---- | ------ | ---- | --------------------- | +| name | string | Yes | Bluetooth device name to set. It cannot exceed 248 bytes.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.setLocalName('device_name'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.pairDevice + +pairDevice(deviceId: string): void + +Initiates Bluetooth pairing. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ------ | ---- | ----------------------------------- | +| deviceId | string | Yes | Address of the remote device to pair, for example, XX:XX:XX:XX:XX:XX.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + // The address can be scanned. + bluetoothManager.pairDevice("XX:XX:XX:XX:XX:XX"); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getProfileConnectionState + +getProfileConnectionState(profileId: ProfileId): ProfileConnectionState + +Obtains the connection status of the specified profile. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| --------- | --------- | ---- | ------------------------------------- | +| ProfileId | profileId | Yes | ID of the profile to obtain, for example, **PROFILE_A2DP_SOURCE**.| + +**Return value** + +| Type | Description | +| ------------------------------------------------- | ------------------- | +| [ProfileConnectionState](#profileconnectionstate) | Profile connection state obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let result = bluetoothManager.getProfileConnectionState(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.cancelPairedDevice + +cancelPairedDevice(deviceId: string): void + +Cancels a paired remote device. + +**System API**: This is a system API. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ------ | ---- | ------------------------------------- | +| deviceId | string | Yes | Address of the remote device to cancel, for example, XX:XX:XX:XX:XX:XX.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.cancelPairedDevice("XX:XX:XX:XX:XX:XX"); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getRemoteDeviceName + +getRemoteDeviceName(deviceId: string): string + +Obtains the name of the remote Bluetooth device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ------ | ---- | --------------------------------- | +| deviceId | string | Yes | Address of the target remote device, for example, XX:XX:XX:XX:XX:XX.| + +**Return value** + +| Type | Description | +| ------ | ------------- | +| string | Device name (a string) obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let remoteDeviceName = bluetoothManager.getRemoteDeviceName("XX:XX:XX:XX:XX:XX"); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getRemoteDeviceClass + +getRemoteDeviceClass(deviceId: string): DeviceClass + +Obtains the class of the remote Bluetooth device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ------ | ---- | --------------------------------- | +| deviceId | string | Yes | Address of the target remote device, for example, XX:XX:XX:XX:XX:XX.| + +**Return value** + +| Type | Description | +| --------------------------- | -------- | +| [DeviceClass](#deviceclass) | Class of the remote device obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let remoteDeviceClass = bluetoothManager.getRemoteDeviceClass("XX:XX:XX:XX:XX:XX"); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getPairedDevices + +getPairedDevices(): Array<string> + +Obtains the paired devices. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ------------------- | ------------- | +| Array<string> | Addresses of the paired Bluetooth devices.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let devices = bluetoothManager.getPairedDevices(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.setBluetoothScanMode + +setBluetoothScanMode(mode: ScanMode, duration: number): void + +Sets the Bluetooth scan mode so that the device can be discovered by a remote device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | --------------------- | ---- | ---------------------------- | +| mode | [ScanMode](#scanmode) | Yes | Bluetooth scan mode to set. | +| duration | number | Yes | Duration (in ms) in which the device can be discovered. The value **0** indicates unlimited time.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + // The device can be discovered and connected only when the discoverable and connectable mode is used. + bluetoothManager.setBluetoothScanMode(bluetoothManager.ScanMode.SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE, 100); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.getBluetoothScanMode + +getBluetoothScanMode(): ScanMode + +Obtains the Bluetooth scan mode. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| --------------------- | ------- | +| [ScanMode](#scanmode) | Bluetooth scan mode to set.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let scanMode = bluetoothManager.getBluetoothScanMode(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.startBluetoothDiscovery + +startBluetoothDiscovery(): void + +Starts Bluetooth scan to discover remote devices. + +**Rquired permissions**: ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +let deviceId; +function onReceiveEvent(data) { + deviceId = data; +} +try { + bluetoothManager.on('bluetoothDeviceFind', onReceiveEvent); + bluetoothManager.startBluetoothDiscovery(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.stopBluetoothDiscovery + +stopBluetoothDiscovery(): void + +Stops Bluetooth scan. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.stopBluetoothDiscovery(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.setDevicePairingConfirmation + +setDevicePairingConfirmation(device: string, accept: boolean): void + +Sets the device pairing confirmation. + +**Required permissions**: ohos.permission.MANAGE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------- | ---- | -------------------------------- | +| device | string | Yes | Address of the remote device, for example, XX:XX:XX:XX:XX:XX.| +| accept | boolean | Yes | Whether to accept the pairing request. The value **true** means to accept the pairing request, and the value **false** means the opposite. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js + +try { + // Subscribe to the pinRequired event and configure the pairing confirmation after receiving a pairing request from the remote device. + function onReceivePinRequiredEvent(data) { // data is the input parameter for the pairing request. + console.info('pin required = '+ JSON.stringify(data)); + bluetoothManager.setDevicePairingConfirmation(data.deviceId, true); + } + bluetoothManager.on("pinRequired", onReceivePinRequiredEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.on('bluetoothDeviceFind') + +on(type: "bluetoothDeviceFind", callback: Callback<Array<string>>): void + +Subscribes to the Bluetooth device discovery events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ----------------------------------- | ---- | -------------------------------------- | +| type | string | Yes | Event type. The value **bluetoothDeviceFind** indicates an event reported when a Bluetooth device is discovered.| +| callback | Callback<Array<string>> | Yes | Callback invoked to return the discovered devices. You need to implement this callback. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { // data is a set of Bluetooth device addresses. + console.info('bluetooth device find = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('bluetoothDeviceFind', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.off('bluetoothDeviceFind') + +off(type: "bluetoothDeviceFind", callback?: Callback<Array<string>>): void + +Unsubscribes from the Bluetooth device discovery events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ----------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **bluetoothDeviceFind** indicates an event reported when a Bluetooth device is discovered. | +| callback | Callback<Array<string>> | No | Callback for the **bluetoothDeviceFind** event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bluetooth device find = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('bluetoothDeviceFind', onReceiveEvent); + bluetoothManager.off('bluetoothDeviceFind', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.on('pinRequired') + +on(type: "pinRequired", callback: Callback<PinRequiredParam>): void + +Subscribes to the pairing request events of the remote Bluetooth device. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | -------------------------------- | +| type | string | Yes | Event type. The value **pinRequired** indicates a pairing request event. | +| callback | Callback<[PinRequiredParam](#pinrequiredparam)> | Yes | Callback invoked to return the pairing request. You need to implement this callback.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { // data is the pairing request parameter. + console.info('pin required = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('pinRequired', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.off('pinRequired') + +off(type: "pinRequired", callback?: Callback<PinRequiredParam>): void + +Unsubscribes from the pairing request events of the remote Bluetooth device. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **pinRequired** indicates a pairing request event. | +| callback | Callback<[PinRequiredParam](#pinrequiredparam)> | No | Callback for the Bluetooth pairing request event. The input parameter is the pairing request parameter. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('pin required = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('pinRequired', onReceiveEvent); + bluetoothManager.off('pinRequired', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.on('bondStateChange') + +on(type: "bondStateChange", callback: Callback<BondStateParam>): void + +Subscribes to the Bluetooth pairing state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ------------------------------------ | +| type | string | Yes | Event type. The value **bondStateChange** indicates a Bluetooth pairing state change event.| +| callback | Callback<[BondStateParam](#BondStateParam)> | Yes | Callback invoked to return the pairing state. You need to implement this callback. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { // data, as the input parameter of the callback, indicates the pairing state. + console.info('pair state = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('bondStateChange', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.off('bondStateChange') + +off(type: "bondStateChange", callback?: Callback<BondStateParam>): void + +Unsubscribes from the Bluetooth pairing state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **bondStateChange** indicates a Bluetooth pairing state change event. | +| callback | Callback<[BondStateParam](#BondStateParam)> | No | Callback for the change of the Bluetooth pairing state. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bond state = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('bondStateChange', onReceiveEvent); + bluetoothManager.off('bondStateChange', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.on('stateChange') + +on(type: "stateChange", callback: Callback<BluetoothState>): void + +Subscribes to the Bluetooth connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | -------------------------------- | +| type | string | Yes | Event type. The value **stateChange** indicates a Bluetooth connection state change event. | +| callback | Callback<[BluetoothState](#bluetoothstate)> | Yes | Callback invoked to return the Bluetooth connection state. You need to implement this callback.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bluetooth state = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('stateChange', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.off('stateChange') + +off(type: "stateChange", callback?: Callback<BluetoothState>): void + +Unsubscribes from the Bluetooth connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **stateChange** indicates a Bluetooth connection state change event. | +| callback | Callback<[BluetoothState](#bluetoothstate)> | No | Callback for the Bluetooth connection state change event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bluetooth state = '+ JSON.stringify(data)); +} +try { + bluetoothManager.on('stateChange', onReceiveEvent); + bluetoothManager.off('stateChange', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppListen + +sppListen(name: string, option: SppOption, callback: AsyncCallback<number>): void + +Creates a server listening socket. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | --------------------------- | ---- | ----------------------- | +| name | string | Yes | Name of the service. | +| option | [SppOption](#sppoption) | Yes | Serial port profile (SPP) listening configuration. | +| callback | AsyncCallback<number> | Yes | Callback invoked to return the server socket ID.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +let serverNumber = -1; +function serverSocket(code, number) { + console.log('bluetooth error code: ' + code.code); + if (code.code == 0) { + console.log('bluetooth serverSocket Number: ' + number); + serverNumber = number; + } +} + +let sppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', secure: false, type: 0}; +try { + bluetoothManager.sppListen('server1', sppOption, serverSocket); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppAccept + +sppAccept(serverSocket: number, callback: AsyncCallback<number>): void + +Listens for a connection to be made to this socket from the client and accepts it. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------------ | --------------------------- | ---- | ----------------------- | +| serverSocket | number | Yes | Server socket ID. | +| callback | AsyncCallback<number> | Yes | Callback invoked to return the client socket ID.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +let serverNumber = -1; +function serverSocket(code, number) { + console.log('bluetooth error code: ' + code.code); + if (code.code == 0) { + console.log('bluetooth serverSocket Number: ' + number); + serverNumber = number; + } +} +let clientNumber = -1; +function acceptClientSocket(code, number) { + console.log('bluetooth error code: ' + code.code); + if (code.code == 0) { + console.log('bluetooth clientSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the server. + clientNumber = number; + } +} +try { + bluetoothManager.sppAccept(serverNumber, acceptClientSocket); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppConnect + +sppConnect(device: string, option: SppOption, callback: AsyncCallback<number>): void + +Initiates an SPP connection to a remote device from the client. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | --------------------------- | ---- | ------------------------------ | +| device | string | Yes | Address of the remote device, for example, XX:XX:XX:XX:XX:XX.| +| option | [SppOption](#sppoption) | Yes | Configuration for connecting to the SPP client. | +| callback | AsyncCallback<number> | Yes | Callback invoked to return the client socket ID. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js + +let clientNumber = -1; +function clientSocket(code, number) { + if (code.code != 0) { + return; + } + console.log('bluetooth serverSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the client. + clientNumber = number; +} +let sppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', secure: false, type: 0}; +try { + bluetoothManager.sppConnect('XX:XX:XX:XX:XX:XX', sppOption, clientSocket); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppCloseServerSocket + +sppCloseServerSocket(socket: number): void + +Closes the listening socket of the server. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | --------------- | +| socket | number | Yes | ID of the listening socket on the server. The ID is obtained by **sppListen**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +let serverNumber = -1; +function serverSocket(code, number) { + console.log('bluetooth error code: ' + code.code); + if (code.code == 0) { + console.log('bluetooth serverSocket Number: ' + number); + serverNumber = number; + } +} +try { + bluetoothManager.sppCloseServerSocket(serverNumber); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppCloseClientSocket + +sppCloseClientSocket(socket: number): void + +Closes the client socket. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------------- | +| Name | Type | Mandatory | Description | +| socket | number | Yes | Client socket ID, which is obtained by **sppAccept** or **sppConnect**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +let clientNumber = -1; +function clientSocket(code, number) { + if (code.code != 0) { + return; + } + console.log('bluetooth serverSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the client. + clientNumber = number; +} +try { + bluetoothManager.sppCloseClientSocket(clientNumber); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.sppWrite + +sppWrite(clientSocket: number, data: ArrayBuffer): void + +Writes data to the remote device through the socket. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------------ | ----------- | ---- | ------------- | +| clientSocket | number | Yes | Client socket ID, which is obtained by **sppAccept** or **sppConnect**.| +| data | ArrayBuffer | Yes | Data to write. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2901054 | IO error. | +|2900099 | Operation failed. | + +**Example** + +```js +let clientNumber = -1; +function clientSocket(code, number) { + if (code.code != 0) { + return; + } + console.log('bluetooth serverSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the client. + clientNumber = number; +} +let arrayBuffer = new ArrayBuffer(8); +let data = new Uint8Array(arrayBuffer); +data[0] = 123; +try { + bluetoothManager.sppWrite(clientNumber, arrayBuffer); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.on('sppRead') + +on(type: "sppRead", clientSocket: number, callback: Callback<ArrayBuffer>): void + +Subscribes to the SPP read request events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------------ | --------------------------- | ---- | -------------------------- | +| type | string | Yes | Event type. The value **sppRead** indicates an SPP read request event.| +| clientSocket | number | Yes | Client socket ID, which is obtained by **sppAccept** or **sppConnect**. | +| callback | Callback<ArrayBuffer> | Yes | Callback invoked to return the data read. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2901054 | IO error. | +|2900099 | Operation failed. | + +**Example** + +```js +let clientNumber = -1; +function clientSocket(code, number) { + if (code.code != 0) { + return; + } + console.log('bluetooth serverSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the client. + clientNumber = number; +} +function dataRead(dataBuffer) { + let data = new Uint8Array(dataBuffer); + console.log('bluetooth data is: ' + data[0]); +} +try { + bluetoothManager.on('sppRead', clientNumber, dataRead); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.off('sppRead') + +off(type: "sppRead", clientSocket: number, callback?: Callback<ArrayBuffer>): void + +Unsubscribes from the SPP read request events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------------ | --------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **sppRead** indicates an SPP read request event. | +| clientSocket | number | Yes | Client socket ID, which is obtained by **sppAccept** or **sppConnect**. | +| callback | Callback<ArrayBuffer> | No | Callback for the SPP read request event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let clientNumber = -1; +function clientSocket(code, number) { + if (code.code != 0) { + return; + } + console.log('bluetooth serverSocket Number: ' + number); + // The obtained clientNumber is used as the socket ID for subsequent read/write operations on the client. + clientNumber = number; +} +try { + bluetoothManager.off('sppRead', clientNumber); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + +## bluetoothManager.getProfileInstance + +getProfileInstance(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile | HidHostProfile | PanProfile + +Obtains a profile instance. API version 9 is added with **HidHostProfile** and **PanProfile**. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| --------- | --------- | ---- | ------------------------------------- | +| profileId | [ProfileId](#ProfileId) | Yes | ID of the profile to obtain, for example, **PROFILE_A2DP_SOURCE**.| + +**Return value** + +| Type | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | +| [A2dpSourceProfile](#a2dpsourceprofile), [HandsFreeAudioGatewayProfile](#handsfreeaudiogatewayprofile), [HidHostProfile](#hidhostprofile), or [PanProfile](#panprofile)| Profile instance obtained, which can be **A2dpSourceProfile**, **HandsFreeAudioGatewayProfile**, **HidHostProfile**, or **PanProfile**.| + +**Example** + +```js +try { + let hidHost = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_HID_HOST); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.BLE + +### bluetoothManager.BLE.createGattServer + +createGattServer(): GattServer + +Creates a **GattServer** instance. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ------------------------- | ------------------------------------ | +| [GattServer](#gattserver) | **GattServer** instance created. Before using an API of the server, you must create a **GattSever** instance.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +``` + + +### bluetoothManager.BLE.createGattClientDevice + +createGattClientDevice(deviceId: string): GattClientDevice + +Creates a **GattClientDevice** instance. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ------ | ---- | ------------------------------------ | +| deviceId | string | Yes | Address of the remote device, for example, XX:XX:XX:XX:XX:XX.| + +**Return value** + +| Type | Description | +| ------------------------------------- | ------------------------------------ | +| [GattClientDevice](#gattclientdevice) | **GattClientDevice** instance created. Before using an API of the client, you must create a **GattClientDevice** instance.| + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### bluetoothManager.BLE.getConnectedBLEDevices + +getConnectedBLEDevices(): Array<string> + +Obtains the BLE devices connected to this device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ------------------- | ------------------- | +| Array<string> | Addresses of the BLE devices connected to this device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let result = bluetoothManager.BLE.getConnectedBLEDevices(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### bluetoothManager.BLE.startBLEScan + +startBLEScan(filters: Array<ScanFilter>, options?: ScanOptions): void + +Starts a BLE scan. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH, ohos.permission.MANAGE_BLUETOOTH, ohos.permission.LOCATION, and ohos.permission.APPROXIMATELY_LOCATION + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------- | -------------------------------------- | ---- | ----------------------------------- | +| filters | Array<[ScanFilter](#scanfilter)> | Yes | Criteria for filtering the scan result. Set this parameter to **null** if you do not want to filter the scan result.| +| options | [ScanOptions](#scanoptions) | No | Scan options. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('BLE scan device find result = '+ JSON.stringify(data)); +} +try { + bluetoothManager.BLE.on("BLEDeviceFind", onReceiveEvent); + bluetoothManager.BLE.startBLEScan( + [{ + deviceId:"XX:XX:XX:XX:XX:XX", + name:"test", + serviceUuid:"00001888-0000-1000-8000-00805f9b34fb" + }], + { + interval: 500, + dutyMode: bluetoothManager.ScanDuty.SCAN_MODE_LOW_POWER, + matchMode: bluetoothManager.MatchMode.MATCH_MODE_AGGRESSIVE, + } + ); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### bluetoothManager.BLE.stopBLEScan + +stopBLEScan(): void + +Stops the BLE scan. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + bluetoothManager.BLE.stopBLEScan(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### bluetoothManager.BLE.on('BLEDeviceFind') + +on(type: "BLEDeviceFind", callback: Callback<Array<ScanResult>>): void + +Subscribe to the BLE device discovery events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ----------------------------------- | +| type | string | Yes | Event type. The value **BLEDeviceFind** indicates an event reported when a BLE device is discovered. | +| callback | Callback<Array<[ScanResult](#scanresult)>> | Yes | Callback invoked to return the discovered devices. You need to implement this callback.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bluetooth device find = '+ JSON.stringify(data)); +} +try { + bluetoothManager.BLE.on('BLEDeviceFind', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### bluetoothManager.BLE.off('BLEDeviceFind') + +off(type: "BLEDeviceFind", callback?: Callback<Array<ScanResult>>): void + +Unsubscribes from the BLE device discovery events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **BLEDeviceFind** indicates an event reported when a BLE device is discovered. | +| callback | Callback<Array<[ScanResult](#scanresult)>> | No | Callback for the **BLEDeviceFind** event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('bluetooth device find = '+ JSON.stringify(data)); +} +try { + bluetoothManager.BLE.on('BLEDeviceFind', onReceiveEvent); + bluetoothManager.BLE.off('BLEDeviceFind', onReceiveEvent); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## BaseProfile + +Provides the profile base class. + + +### getConnectionDevices + +getConnectionDevices(): Array<string> + +Obtains the connected devices. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ------------------- | ------------- | +| Array<string> | Addresses of the connected devices.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; + let retArray = a2dpSrc.getConnectionDevices(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + +### getDeviceState + +getDeviceState(device: string): ProfileConnectionState + +Obtains the connection state of the profile. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Return value** + +| Type | Description | +| ------------------------------------------------- | ----------------------- | +| [ProfileConnectionState](#profileconnectionstate) | Profile connection state obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; + let ret = a2dpSrc.getDeviceState('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + +## A2dpSourceProfile + +Before using an API of **A2dpSourceProfile**, you need to create an instance of this class by using **getProfile()**. + + +### connect + +connect(device: string): void + +Sets up an Advanced Audio Distribution Profile (A2DP) connection. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; + a2dpSrc.connect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### disconnect + +disconnect(device: string): void + +Disconnects an A2DP connection. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; + a2dpSrc.disconnect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('connectionStateChange') + +on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void + +Subscribes to the A2DP connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates an A2DP connection state change event.| +| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the A2DP connection state change event. | + +**Return value** + +No value is returned. + +**Example** + +```js +function onReceiveEvent(data) { + console.info('a2dp state = '+ JSON.stringify(data)); +} +let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; +a2dpSrc.on('connectionStateChange', onReceiveEvent); +``` + + +### off('connectionStateChange') + +off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void + +Unsubscribes from the A2DP connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates an A2DP connection state change event.| +| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the A2DP connection state change event. | + +**Return value** + +No value is returned. + +**Example** + +```js +function onReceiveEvent(data) { + console.info('a2dp state = '+ JSON.stringify(data)); +} +let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; +a2dpSrc.on('connectionStateChange', onReceiveEvent); +a2dpSrc.off('connectionStateChange', onReceiveEvent); +``` + + +### getPlayingState + +getPlayingState(device: string): PlayingState + +Obtains the playing state of a device. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Return value** + +| Type | Description | +| ----------------------------- | ---------- | +| [PlayingState](#PlayingState) | Playing state of the remote device obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let a2dpSrc = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile; + let state = a2dpSrc.getPlayingState('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## HandsFreeAudioGatewayProfile + +Before using an API of **HandsFreeAudioGatewayProfile**, you need to create an instance of this class by using **getProfile()**. + + +### connect + +connect(device: string): void + +Sets up a Hands-free Profile (HFP) connection of a device. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let hfpAg = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY) as bluetoothManager.HandsFreeAudioGatewayProfile; + hfpAg.connect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### disconnect + +disconnect(device: string): void + +Disconnects the HFP connection of a device. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let hfpAg = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY) as bluetoothManager.HandsFreeAudioGatewayProfile; + hfpAg.disconnect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('connectionStateChange') + +on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void + +Subscribes to the HFP connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates an HFP connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the HFP connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('hfp state = '+ JSON.stringify(data)); +} +let hfpAg = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY) as + bluetoothManager.HandsFreeAudioGatewayProfile; +hfpAg.on('connectionStateChange', onReceiveEvent); +``` + + +### off('connectionStateChange') + +off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void + +Unsubscribes from the HFP connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates an HFP connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the HFP connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('hfp state = '+ JSON.stringify(data)); +} +let hfpAg = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY) as + bluetoothManager.HandsFreeAudioGatewayProfile; +hfpAg.on('connectionStateChange', onReceiveEvent); +hfpAg.off('connectionStateChange', onReceiveEvent); +``` + + +## HidHostProfile + +Before using an API of **HidHostProfile**, you need to create an instance of this class by using **getProfile()**. + + +### connect + +connect(device: string): void + +Connects to the HidHost service of a device. + +**System API**: This is a system API. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let hidHostProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_HID_HOST) as bluetoothManager.HidHostProfile; + hidHostProfile.connect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### disconnect + +disconnect(device: string): void + +Disconnects from the HidHost service of a device. + +**System API**: This is a system API. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let hidHostProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_HID_HOST) as bluetoothManager.HidHostProfile; + hidHostProfile.disconnect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('connectionStateChange') + +on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void + +Subscribes to the HidHost connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates a HidHost connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the HidHost connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('hidHost state = '+ JSON.stringify(data)); +} +let hidHost = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_HID_HOST) as bluetoothManager.HidHostProfile; +hidHost.on('connectionStateChange', onReceiveEvent); +``` + + +### off('connectionStateChange') + +off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void + +Unsubscribes from the HidHost connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------------------- | ---- | --------------------------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates a HidHost connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the HidHost connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('hidHost state = '+ JSON.stringify(data)); +} +let hidHost = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_HID_HOST) as bluetoothManager.HidHostProfile; +hidHost.on('connectionStateChange', onReceiveEvent); +hidHost.off('connectionStateChange', onReceiveEvent); +``` + + +## PanProfile + +Before using an API of **PanProfile**, you need to create an instance of this class by using **getProfile()**. + + +### disconnect + +disconnect(device: string): void + +Disconnects from the Personal Area Network (PAN) service of a device. + +**System API**: This is a system API. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| device | string | Yes | Address of the target device.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let panProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_PAN_NETWORK) as bluetoothManager.PanProfile; + panProfile.disconnect('XX:XX:XX:XX:XX:XX'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('connectionStateChange') + +on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#StateChangeParam)>): void + +Subscribes to the PAN connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates a PAN connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | Yes | Callback invoked to return the PAN connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('pan state = '+ JSON.stringify(data)); +} +let panProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_PAN_NETWORK) as bluetoothManager.PanProfile; +panProfile.on('connectionStateChange', onReceiveEvent); +``` + + +### off('connectionStateChange') + +off(type: "connectionStateChange", callback?: Callback<[StateChangeParam](#StateChangeParam)>): void + +Unsubscribes from the PAN connection state change events. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------------------- | ---- | --------------------------------------------------------- | +| type | string | Yes | Event type. The value **connectionStateChange** indicates a PAN connection state change event. | +| callback | Callback<[StateChangeParam](#StateChangeParam)> | No | Callback for the PAN connection state change event. | + +**Example** + +```js +function onReceiveEvent(data) { + console.info('pan state = '+ JSON.stringify(data)); +} +let panProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_PAN_NETWORK) as bluetoothManager.PanProfile; +panProfile.on('connectionStateChange', onReceiveEvent); +panProfile.off('connectionStateChange', onReceiveEvent); +``` + + +### setTethering + +setTethering(enable: boolean): void + +Sets tethering. + +**System API**: This is a system API. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ------ | ---- | ------- | +| value | boolean | Yes | Whether to set tethering over a Bluetooth PAN.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let panProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_PAN_NETWORK) as bluetoothManager.PanProfile; + panProfile.setTethering(true); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### isTetheringOn + +isTetheringOn(): boolean + +Obtains the network sharing status. + +**System API**: This is a system API. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| --------------------- | --------------------------------- | +| boolean | Returns **true** if tethering is available over a Bluetooth PAN; return **false** otherwise.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let panProfile = bluetoothManager.getProfileInst(bluetoothManager.ProfileId.PROFILE_PAN_NETWORK) as bluetoothManager.PanProfile; + let ret = panProfile.isTetheringOn(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## GattServer + +Implements the Generic Attribute Profile (GATT) server. Before using an API of this class, you need to create a **GattServer** instance using **createGattServer()**. + + +### startAdvertising + +startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void + +Starts BLE advertising. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ----------- | ------------------------------------- | ---- | -------------- | +| setting | [AdvertiseSetting](#advertisesetting) | Yes | Settings related to BLE advertising. | +| advData | [AdvertiseData](#advertisedata) | Yes | Content of the BLE advertisement packet. | +| advResponse | [AdvertiseData](#advertisedata) | No | Response to the BLE scan request.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +let manufactureValueBuffer = new Uint8Array(4); +manufactureValueBuffer[0] = 1; +manufactureValueBuffer[1] = 2; +manufactureValueBuffer[2] = 3; +manufactureValueBuffer[3] = 4; + +let serviceValueBuffer = new Uint8Array(4); +serviceValueBuffer[0] = 4; +serviceValueBuffer[1] = 6; +serviceValueBuffer[2] = 7; +serviceValueBuffer[3] = 8; +console.info('manufactureValueBuffer = '+ JSON.stringify(manufactureValueBuffer)); +console.info('serviceValueBuffer = '+ JSON.stringify(serviceValueBuffer)); +let gattServer = bluetoothManager.BLE.createGattServer(); +try { + gattServer.startAdvertising({ + interval:150, + txPower:60, + connectable:true, + },{ + serviceUuids:["00001888-0000-1000-8000-00805f9b34fb"], + manufactureData:[{ + manufactureId:4567, + manufactureValue:manufactureValueBuffer.buffer + }], + serviceData:[{ + serviceUuid:"00001888-0000-1000-8000-00805f9b34fb", + serviceValue:serviceValueBuffer.buffer + }], + },{ + serviceUuids:["00001889-0000-1000-8000-00805f9b34fb"], + manufactureData:[{ + manufactureId:1789, + manufactureValue:manufactureValueBuffer.buffer + }], + serviceData:[{ + serviceUuid:"00001889-0000-1000-8000-00805f9b34fb", + serviceValue:serviceValueBuffer.buffer + }], + }); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### stopAdvertising + +stopAdvertising(): void + +Stops BLE advertising. + +**Required permissions**: ohos.permission.DISCOVER_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +let server = bluetoothManager.BLE.createGattServer(); +try { + server.stopAdvertising(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### addService + +addService(service: GattService): void + +Adds a service to this GATT server. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------- | --------------------------- | ---- | ------------------------ | +| service | [GattService](#gattservice) | Yes | Service to add. Settings related to BLE advertising.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +// Create descriptors. +let descriptors = []; +let arrayBuffer = new ArrayBuffer(8); +let descV = new Uint8Array(arrayBuffer); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002902-0000-1000-8000-00805F9B34FB', descriptorValue: arrayBuffer}; +descriptors[0] = descriptor; + +// Create characteristics. +let characteristics = []; +let arrayBufferC = new ArrayBuffer(8); +let cccV = new Uint8Array(arrayBufferC); +cccV[0] = 1; +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', characteristicValue: arrayBufferC, descriptors:descriptors}; +let characteristicN = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001821-0000-1000-8000-00805F9B34FB', characteristicValue: arrayBufferC, descriptors:descriptors}; +characteristics[0] = characteristic; + +// Create a gattService instance. +let gattService = {serviceUuid:'00001810-0000-1000-8000-00805F9B34FB', isPrimary: true, characteristics:characteristics, includeServices:[]}; + +let gattServer = bluetoothManager.BLE.createGattServer(); +try { + gattServer.addService(gattService); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### removeService + +removeService(serviceUuid: string): void + +Removes a service from this GATT server. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ----------- | ------ | ---- | ---------------------------------------- | +| serviceUuid | string | Yes | Universally unique identifier (UUID) of the service to remove, for example, **00001810-0000-1000-8000-00805F9B34FB**.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900004 | Profile is not supported. | +|2900099 | Operation failed. | + +**Example** + +```js +let server = bluetoothManager.BLE.createGattServer(); +try { + server.removeService('00001810-0000-1000-8000-00805F9B34FB'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### close + +close(): void + +Closes this GATT server to unregister it from the protocol stack. After this method is called, this [GattServer](#gattserver) cannot be used. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +let server = bluetoothManager.BLE.createGattServer(); +try { + server.close(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### notifyCharacteristicChanged + +notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): void + +Notifies the connected client device when a characteristic value changes. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------------- | ---------------------------------------- | ---- | --------------------------------------- | +| deviceId | string | Yes | Address of the client that receives notifications, for example, XX:XX:XX:XX:XX:XX.| +| notifyCharacteristic | [NotifyCharacteristic](#notifycharacteristic) | Yes | New characteristic value. | + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +// Create descriptors. +let descriptors = []; +let arrayBuffer = new ArrayBuffer(8); +let descV = new Uint8Array(arrayBuffer); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002902-0000-1000-8000-00805F9B34FB', descriptorValue: arrayBuffer}; +descriptors[0] = descriptor; +let arrayBufferC = new ArrayBuffer(8); +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', characteristicValue: arrayBufferC, descriptors:descriptors}; +let notifyCharacteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001821-0000-1000-8000-00805F9B34FB', characteristicValue: characteristic.characteristicValue, confirm: false}; +let server = bluetoothManager.BLE.createGattServer(); +try { + server.notifyCharacteristicChanged('XX:XX:XX:XX:XX:XX', notifyCharacteristic); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### sendResponse + +sendResponse(serverResponse: ServerResponse): void + +Sends a response to a read or write request from the GATT client. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------- | --------------------------------- | ---- | --------------- | +| serverResponse | [ServerResponse](#serverresponse) | Yes | Response returned by the GATT server.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +/* send response */ +let arrayBufferCCC = new ArrayBuffer(8); +let cccValue = new Uint8Array(arrayBufferCCC); +cccValue[0] = 1123; +let serverResponse = { + "deviceId": "XX:XX:XX:XX:XX:XX", + "transId": 0, + "status": 0, + "offset": 0, + "value": arrayBufferCCC, +}; + +let gattServer = bluetoothManager.BLE.createGattServer(); +try { + gattServer.sendResponse(serverResponse); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('characteristicRead') + +on(type: "characteristicRead", callback: Callback<CharacteristicReadRequest>): void + +Subscribes to the characteristic read request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ------------------------------------- | +| type | string | Yes | Event type. The value **characteristicRead** indicates a characteristic read request event.| +| callback | Callback<[CharacteristicReadRequest](#characteristicreadrequest)> | Yes | Callback invoked to return a characteristic read request event from the GATT client. | + +**Example** + +```js +let arrayBufferCCC = new ArrayBuffer(8); +let cccValue = new Uint8Array(arrayBufferCCC); +cccValue[0] = 1123; +function ReadCharacteristicReq(CharacteristicReadRequest) { + let deviceId = CharacteristicReadRequest.deviceId; + let transId = CharacteristicReadRequest.transId; + let offset = CharacteristicReadRequest.offset; + let characteristicUuid = CharacteristicReadRequest.characteristicUuid; + + let serverResponse = {deviceId: deviceId, transId: transId, status: 0, offset: offset, value:arrayBufferCCC}; + + try { + gattServer.sendResponse(serverResponse); + } catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); + } +} + +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.on("characteristicRead", ReadCharacteristicReq); +``` + + +### off('characteristicRead') + +off(type: "characteristicRead", callback?: Callback<CharacteristicReadRequest>): void + +Unsubscribes from the characteristic read request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **characteristicRead** indicates a characteristic read request event. | +| callback | Callback<[CharacteristicReadRequest](#characteristicreadrequest)> | No | Callback for the characteristic read request event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.off("characteristicRead"); +``` + + +### on('characteristicWrite') + +on(type: "characteristicWrite", callback: Callback<CharacteristicWriteRequest>): void + +Subscribes to the characteristic write request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | -------------------------------------- | +| type | string | Yes | Event type. The value **characteristicWrite** indicates a characteristic write request event.| +| callback | Callback<[CharacteristicWriteRequest](#characteristicwriterequest)> | Yes | Callback invoked to return a characteristic write request from the GATT client. | + +**Example** + +```js +let arrayBufferCCC = new ArrayBuffer(8); +let cccValue = new Uint8Array(arrayBufferCCC); +function WriteCharacteristicReq(CharacteristicWriteRequest) { + let deviceId = CharacteristicWriteRequest.deviceId; + let transId = CharacteristicWriteRequest.transId; + let offset = CharacteristicWriteRequest.offset; + let isPrep = CharacteristicWriteRequest.isPrep; + let needRsp = CharacteristicWriteRequest.needRsp; + let value = new Uint8Array(CharacteristicWriteRequest.value); + let characteristicUuid = CharacteristicWriteRequest.characteristicUuid; + + cccValue[0] = value[0]; + let serverResponse = {deviceId: deviceId, transId: transId, status: 0, offset: offset, value:arrayBufferCCC}; + + try { + gattServer.sendResponse(serverResponse); + } catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); + } +} + +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.on("characteristicWrite", WriteCharacteristicReq); +``` + + +### off('characteristicWrite') + +off(type: "characteristicWrite", callback?: Callback<CharacteristicWriteRequest>): void + +Unsubscribes from the characteristic write request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **characteristicWrite** indicates a characteristic write request event. | +| callback | Callback<[CharacteristicWriteRequest](#characteristicwriterequest)> | No | Callback for the characteristic write request event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.off("characteristicWrite"); +``` + + +### on('descriptorRead') + +on(type: "descriptorRead", callback: Callback<DescriptorReadRequest>): void + +Subscribes to the descriptor read request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | --------------------------------- | +| type | string | Yes | Event type. The value **descriptorRead** indicates a descriptor read request event.| +| callback | Callback<[DescriptorReadRequest](#descriptorreadrequest)> | Yes | Callback invoked to return a descriptor read request event from the GATT client. | + +**Example** + +```js +let arrayBufferDesc = new ArrayBuffer(8); +let descValue = new Uint8Array(arrayBufferDesc); +descValue[0] = 1101; +function ReadDescriptorReq(DescriptorReadRequest) { + let deviceId = DescriptorReadRequest.deviceId; + let transId = DescriptorReadRequest.transId; + let offset = DescriptorReadRequest.offset; + let descriptorUuid = DescriptorReadRequest.descriptorUuid; + + let serverResponse = {deviceId: deviceId, transId: transId, status: 0, offset: offset, value:arrayBufferDesc}; + + try { + gattServer.sendResponse(serverResponse); + } catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); + } +} + +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.on("descriptorRead", ReadDescriptorReq); +``` + + +### off('descriptorRead') + +off(type: "descriptorRead", callback?: Callback<DescriptorReadRequest>): void + +Unsubscribes from the descriptor read request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **descriptorRead** indicates a descriptor read request event. | +| callback | Callback<[DescriptorReadRequest](#descriptorreadrequest)> | No | Callback for the descriptor read request event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.off("descriptorRead"); +``` + + +### on('descriptorWrite') + +on(type: "descriptorWrite", callback: Callback<DescriptorWriteRequest>): void + +Subscribes to the descriptor write request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------- | +| type | string | Yes | Event type. The value **descriptorWrite** indicates a descriptor write request event.| +| callback | Callback<[DescriptorWriteRequest](#descriptorwriterequest)> | Yes | Callback invoked to return a descriptor write request from the GATT client. | + +**Example** + +```js +let arrayBufferDesc = new ArrayBuffer(8); +let descValue = new Uint8Array(arrayBufferDesc); +function WriteDescriptorReq(DescriptorWriteRequest) { + let deviceId = DescriptorWriteRequest.deviceId; + let transId = DescriptorWriteRequest.transId; + let offset = DescriptorWriteRequest.offset; + let isPrep = DescriptorWriteRequest.isPrep; + let needRsp = DescriptorWriteRequest.needRsp; + let value = new Uint8Array(DescriptorWriteRequest.value); + let descriptorUuid = DescriptorWriteRequest.descriptorUuid; + + descValue[0] = value[0]; + let serverResponse = {deviceId: deviceId, transId: transId, status: 0, offset: offset, value:arrayBufferDesc}; + + try { + gattServer.sendResponse(serverResponse); + } catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); + } +} + +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.on("descriptorRead", WriteDescriptorReq); +``` + + +### off('descriptorWrite') + +off(type: "descriptorWrite", callback?: Callback<DescriptorWriteRequest>): void + +Unsubscribes from the descriptor write request events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **descriptorWrite** indicates a descriptor write request event. | +| callback | Callback<[DescriptorWriteRequest](#descriptorwriterequest)> | No | Callback for the descriptor write request event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.off("descriptorWrite"); +``` + + +### on('connectStateChange') + +on(type: "connectStateChange", callback: Callback<BLEConnectChangedState>): void + +Subscribes to the BLE connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectStateChange** indicates a BLE connection state change event.| +| callback | Callback<[BLEConnectChangedState](#bleconnectchangedstate)> | Yes | Callback invoked to return the BLE connection state. | + +**Example** + +```js +function Connected(BLEConnectChangedState) { + let deviceId = BLEConnectChangedState.deviceId; + let status = BLEConnectChangedState.state; +} + +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.on("connectStateChange", Connected); +``` + + +### off('connectStateChange') + +off(type: "connectStateChange", callback?: Callback<BLEConnectChangedState>): void + +Unsubscribes from the BLE connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **connectStateChange** indicates a BLE connection state change event.| +| callback | Callback<[BLEConnectChangedState](#bleconnectchangedstate)> | No | Callback for the BLE connection state change event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +let gattServer = bluetoothManager.BLE.createGattServer(); +gattServer.off("connectStateChange"); +``` + + +## GattClientDevice + +Implements the GATT client. Before using an API of this class, you must create a **GattClientDevice** instance using **createGattClientDevice(deviceId: string)**. + + +### connect + +connect(): void + +Initiates a connection to the remote BLE device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.connect(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### disconnect + +disconnect(): void + +Disconnects from the remote BLE device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.disconnect(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### close + +close(): void + +Closes this GATT client to unregister it from the protocol stack. After this method is called, this [GattClientDevice](#gattclientdevice) instance cannot be used. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.close(); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + + + +### getServices + +getServices(callback: AsyncCallback<Array<GattService>>): void + +Obtains all services of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ------------------------ | +| callback | AsyncCallback<Array<[GattService](#gattservice)>> | Yes | Callback invoked to return the services obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +// Callback +function getServices(code, gattServices) { + if (code.code == 0) { + let services = gattServices; + console.log('bluetooth code is ' + code.code); + console.log("bluetooth services size is ", services.length); + + for (let i = 0; i < services.length; i++) { + console.log('bluetooth serviceUuid is ' + services[i].serviceUuid); + } + } +} + +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.connect(); + device.getServices(getServices); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### getServices + +getServices(): Promise<Array<GattService>> + +Obtains all services of the remote BLE device. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| ---------------------------------------- | --------------------------- | +| Promise<Array<[GattService](#gattservice)>> | Promise used to return the services obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +// Promise +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.connect(); + device.getServices().then(result => { + console.info("getServices successfully:" + JSON.stringify(result)); + }); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### readCharacteristicValue + +readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback<BLECharacteristic>): void + +Reads the characteristic value of the specific service of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------- | ---------------------------------------- | ---- | ----------------------- | +| characteristic | [BLECharacteristic](#blecharacteristic) | Yes | Characteristic value to read. | +| callback | AsyncCallback<[BLECharacteristic](#blecharacteristic)> | Yes | Callback invoked to return the characteristic value read.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901000 | Read forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +function readCcc(code, BLECharacteristic) { + if (code.code != 0) { + return; + } + console.log('bluetooth characteristic uuid: ' + BLECharacteristic.characteristicUuid); + let value = new Uint8Array(BLECharacteristic.characteristicValue); + console.log('bluetooth characteristic value: ' + value[0] +','+ value[1]+','+ value[2]+','+ value[3]); +} + +let descriptors = []; +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', +characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', +descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', descriptorValue: bufferDesc}; +descriptors[0] = descriptor; + +let bufferCCC = new ArrayBuffer(8); +let cccV = new Uint8Array(bufferCCC); +cccV[0] = 1; +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', +characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', +characteristicValue: bufferCCC, descriptors:descriptors}; + +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.readCharacteristicValue(characteristic, readCcc); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### readCharacteristicValue + +readCharacteristicValue(characteristic: BLECharacteristic): Promise<BLECharacteristic> + +Reads the characteristic value of the specific service of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------- | --------------------------------------- | ---- | -------- | +| characteristic | [BLECharacteristic](#blecharacteristic) | Yes | Characteristic value to read.| + +**Return value** + +| Type | Description | +| ---------------------------------------- | -------------------------- | +| Promise<[BLECharacteristic](#blecharacteristic)> | Promise used to return the characteristic value read.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901000 | Read forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +let descriptors = []; +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', +characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', +descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', descriptorValue: bufferDesc}; +descriptors[0] = descriptor; + +let bufferCCC = new ArrayBuffer(8); +let cccV = new Uint8Array(bufferCCC); +cccV[0] = 1; +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', +characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', +characteristicValue: bufferCCC, descriptors:descriptors}; + +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.readCharacteristicValue(characteristic); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### readDescriptorValue + +readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback<BLEDescriptor>): void + +Reads the descriptor contained in the specific characteristic of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ---------- | ---------------------------------------- | ---- | ----------------------- | +| descriptor | [BLEDescriptor](#bledescriptor) | Yes | Descriptor to read. | +| callback | AsyncCallback<[BLEDescriptor](#bledescriptor)> | Yes | Callback invoked to return the descriptor read.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901000 | Read forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +function readDesc(code, BLEDescriptor) { + if (code.code != 0) { + return; + } + console.log('bluetooth descriptor uuid: ' + BLEDescriptor.descriptorUuid); + let value = new Uint8Array(BLEDescriptor.descriptorValue); + console.log('bluetooth descriptor value: ' + value[0] +','+ value[1]+','+ value[2]+','+ value[3]); +} + +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 11; +let descriptor = { + serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', + descriptorValue: bufferDesc +}; +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.readDescriptorValue(descriptor, readDesc); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### readDescriptorValue + +readDescriptorValue(descriptor: BLEDescriptor): Promise<BLEDescriptor> + +Reads the descriptor contained in the specific characteristic of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ---------- | ------------------------------- | ---- | -------- | +| descriptor | [BLEDescriptor](#bledescriptor) | Yes | Descriptor to read.| + +**Return value** + +| Type | Description | +| ---------------------------------------- | -------------------------- | +| Promise<[BLEDescriptor](#bledescriptor)> | Promise used to return the descriptor read.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901000 | Read forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 11; +let descriptor = { + serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', + descriptorValue: bufferDesc +}; +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.readDescriptorValue(descriptor); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### writeCharacteristicValue + +writeCharacteristicValue(characteristic: BLECharacteristic): void + +Writes a characteristic value to the remote BLE device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------- | --------------------------------------- | ---- | ------------------- | +| characteristic | [BLECharacteristic](#blecharacteristic) | Yes | Binary value and other parameters of the BLE device characteristic.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901001 | Write forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +let descriptors = []; +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', descriptorValue: bufferDesc}; +descriptors[0] = descriptor; + +let bufferCCC = new ArrayBuffer(8); +let cccV = new Uint8Array(bufferCCC); +cccV[0] = 1; +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + characteristicValue: bufferCCC, descriptors:descriptors}; +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.writeCharacteristicValue(characteristic); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### writeDescriptorValue + +writeDescriptorValue(descriptor: BLEDescriptor): void + +Writes binary data to the specific descriptor of the remote BLE device. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ---------- | ------------------------------- | ---- | ------------------ | +| descriptor | [BLEDescriptor](#bledescriptor) | Yes | Binary value and other parameters of the BLE device descriptor.| +| boolean | Returns **true** if the operation is successful; returns **false** otherwise.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2901001 | Write forbidden. | +|2900099 | Operation failed. | + +**Example** + +```js +let bufferDesc = new ArrayBuffer(8); +let descV = new Uint8Array(bufferDesc); +descV[0] = 22; +let descriptor = { + serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002903-0000-1000-8000-00805F9B34FB', + descriptorValue: bufferDesc +}; +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.writeDescriptorValue(descriptor); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### setBLEMtuSize + +setBLEMtuSize(mtu: number): void + +Sets the maximum transmission unit (MTU) that can be transmitted between the GATT client and its remote BLE device. This API can be used only after a connection is set up by calling [connect](#connect). + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ---- | ------ | ---- | -------------- | +| mtu | number | Yes | MTU to set, which ranges from 22 to 512 bytes.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.setBLEMtuSize(128); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### setNotifyCharacteristicChanged + +setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): void + +Sets the function of notifying the GATT client when the characteristic value of the remote BLE device changes. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------------- | --------------------------------------- | ---- | ----------------------------- | +| characteristic | [BLECharacteristic](#blecharacteristic) | Yes | BLE characteristic to listen for. | +| enable | boolean | Yes | Whether to enable the notify function. The value **true** means to enable the notify function, and the value **false** means the opposite.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +// Create descriptors. +let descriptors = []; +let arrayBuffer = new ArrayBuffer(8); +let descV = new Uint8Array(arrayBuffer); +descV[0] = 11; +let descriptor = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', + descriptorUuid: '00002902-0000-1000-8000-00805F9B34FB', descriptorValue: arrayBuffer}; +descriptors[0] = descriptor; +let arrayBufferC = new ArrayBuffer(8); +let characteristic = {serviceUuid: '00001810-0000-1000-8000-00805F9B34FB', + characteristicUuid: '00001820-0000-1000-8000-00805F9B34FB', characteristicValue: arrayBufferC, descriptors:descriptors}; +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.setNotifyCharacteristicChanged(characteristic, false); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} + +``` + + +### on('BLECharacteristicChange') + +on(type: "BLECharacteristicChange", callback: Callback<BLECharacteristic>): void + +Subscribes to the BLE characteristic change events. The client can receive a notification from the server only after the **setNotifyCharacteristicChanged** method is called. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **BLECharacteristicChange** indicates a characteristic value change event.| +| callback | Callback<[BLECharacteristic](#blecharacteristic)> | Yes | Callback invoked to return the characteristic value changes. | + +**Example** + +```js +function CharacteristicChange(CharacteristicChangeReq) { + let serviceUuid = CharacteristicChangeReq.serviceUuid; + let characteristicUuid = CharacteristicChangeReq.characteristicUuid; + let value = new Uint8Array(CharacteristicChangeReq.characteristicValue); +} +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.on('BLECharacteristicChange', CharacteristicChange); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### off('BLECharacteristicChange') + +off(type: "BLECharacteristicChange", callback?: Callback<BLECharacteristic>): void + +Unsubscribes from the BLE characteristic change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **BLECharacteristicChange** indicates a characteristic value change event.| +| callback | Callback<[BLECharacteristic](#blecharacteristic)> | No | Callback for the characteristic value change event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.off('BLECharacteristicChange'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### on('BLEConnectionStateChange') + +on(type: "BLEConnectionStateChange", callback: Callback<BLEConnectChangedState>): void + +Subscribes to the BLE connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **BLEConnectionStateChange** indicates a BLE connection state change event.| +| callback | Callback<[BLEConnectChangedState](#bleconnectchangedstate)> | Yes | Callback invoked to return the BLE connection state. | + +**Example** + +```js +function ConnectStateChanged(state) { + console.log('bluetooth connect state changed'); + let connectState = state.state; +} +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.on('BLEConnectionStateChange', ConnectStateChanged); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### off('BLEConnectionStateChange') + +off(type: "BLEConnectionStateChange", callback?: Callback<BLEConnectChangedState>): void + +Unsubscribes from the BLE connection state change events. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | ---------------------------------------- | ---- | ---------------------------------------- | +| type | string | Yes | Event type. The value **BLEConnectionStateChange** indicates a BLE connection state change event.| +| callback | Callback<[BLEConnectChangedState](#bleconnectchangedstate)> | No | Callback for the BLE connection state change event. If this parameter is not set, this method unsubscribes from all callbacks corresponding to **type**.| + +**Example** + +```js +try { + let device = bluetoothManager.BLE.createGattClientDevice('XX:XX:XX:XX:XX:XX'); + device.off('BLEConnectionStateChange'); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### getDeviceName + +getDeviceName(callback: AsyncCallback<string>): void + +Obtains the name of the remote BLE device. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | --------------------------- | ---- | ------------------------------- | +| callback | AsyncCallback<string> | Yes | Callback invoked to return the remote BLE device name obtained.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +// callback +try { + let gattClient = bluetoothManager.BLE.createGattClientDevice("XX:XX:XX:XX:XX:XX"); + gattClient.connect(); + let deviceName = gattClient.getDeviceName((err, data)=> { + console.info('device name err ' + JSON.stringify(err)); + console.info('device name' + JSON.stringify(data)); + }) +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### getDeviceName + +getDeviceName(): Promise<string> + +Obtains the name of the remote BLE device. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| --------------------- | ---------------------------------- | +| Promise<string> | Promise used to return the remote BLE device name.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900099 | Operation failed. | + +**Example** + +```js +// promise +try { + let gattClient = bluetoothManager.BLE.createGattClientDevice("XX:XX:XX:XX:XX:XX"); + gattClient.connect(); + let deviceName = gattClient.getDeviceName().then((data) => { + console.info('device name' + JSON.stringify(data)); + }) +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### getRssiValue + +getRssiValue(callback: AsyncCallback<number>): void + +Obtains the received signal strength indication (RSSI) of the remote BLE device. This API uses an asynchronous callback to return the result. It can be used only after a connection is set up by calling [connect](#connect). + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| -------- | --------------------------- | ---- | ------------------------------ | +| callback | AsyncCallback<number> | Yes | Callback invoked to return the RSSI, in dBm.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +// callback +try { + let gattClient = bluetoothManager.BLE.createGattClientDevice("XX:XX:XX:XX:XX:XX"); + gattClient.connect(); + let rssi = gattClient.getRssiValue((err, data)=> { + console.info('rssi err ' + JSON.stringify(err)); + console.info('rssi value' + JSON.stringify(data)); + }) +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +### getRssiValue + +getRssiValue(): Promise<number> + +Obtains the RSSI of the remote BLE device. This API uses a promise to return the result. It can be used only after a connection is set up by calling [connect](#connect). + +**Required permissions**: ohos.permission.USE_BLUETOOTH + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +**Return value** + +| Type | Description | +| --------------------- | --------------------------------- | +| Promise<number> | Promise used to return the RSSI, in dBm.| + +**Error codes** + +For details about the error codes, see [Bluetooth Error Codes](../errorcodes/errorcode-bluetoothManager.md). + +| ID| Error Message| +| -------- | ---------------------------- | +|2900099 | Operation failed. | + +**Example** + +```js +// promise +try { + let gattClient = bluetoothManager.BLE.createGattClientDevice("XX:XX:XX:XX:XX:XX"); + let rssi = gattClient.getRssiValue().then((data) => { + console.info('rssi' + JSON.stringify(data)); + }) +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + +## ScanMode + +Enumerates the scan modes. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ---------------------------------------- | ---- | --------------- | +| SCAN_MODE_NONE | 0 | No scan mode. | +| SCAN_MODE_CONNECTABLE | 1 | Connectable mode. | +| SCAN_MODE_GENERAL_DISCOVERABLE | 2 | General discoverable mode. | +| SCAN_MODE_LIMITED_DISCOVERABLE | 3 | Limited discoverable mode. | +| SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE | 4 | General connectable and discoverable mode.| +| SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE | 5 | Limited connectable and discoverable mode.| + +## BondState + +Enumerates the pairing states. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ------------------ | ---- | ------ | +| BOND_STATE_INVALID | 0 | Invalid pairing.| +| BOND_STATE_BONDING | 1 | Pairing. | +| BOND_STATE_BONDED | 2 | Paired. | + + +## SppOption + +Defines the SPP configuration parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------ | ------------------- | ---- | ---- | ----------- | +| uuid | string | Yes | Yes | UUID of the SPP.| +| secure | boolean | Yes | Yes | Whether it is a secure channel. | +| type | [SppType](#spptype) | Yes | Yes | Type of the SPP link. | + + +## SppType + +Enumerates the SPP link types. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ---------- | ---- | ------------- | +| SPP_RFCOMM | 0 | Radio frequency communication (RFCOMM) link type.| + + +## GattService + +Defines the GATT service API parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| --------------- | ---------------------------------------- | ---- | ---- | ---------------------------------------- | +| serviceUuid | string | Yes | Yes | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| +| isPrimary | boolean | Yes | Yes | Whether the service is a primary service. The value **true** means a primary service. | +| characteristics | Array<[BLECharacteristic](#blecharacteristic)> | Yes | Yes | List of characteristics of the service. | +| includeServices | Array<[GattService](#gattservice)> | Yes | Yes | Services on which the service depends. | + + +## BLECharacteristic + +Defines the characteristic API parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------- | ---------------------------------------- | ---- | ---- | ---------------------------------------- | +| serviceUuid | string | Yes | Yes | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | Yes | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| characteristicValue | ArrayBuffer | Yes | Yes | Binary value of the characteristic. | +| descriptors | Array<[BLEDescriptor](#bledescriptor)> | Yes | Yes | List of descriptors of the characteristic. | + + +## BLEDescriptor + +Defines the descriptor API parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------ | ----------- | ---- | ---- | ---------------------------------------- | +| serviceUuid | string | Yes | Yes | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | Yes | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| descriptorUuid | string | Yes | Yes | UUID of the descriptor, for example, **00002902-0000-1000-8000-00805f9b34fb**.| +| descriptorValue | ArrayBuffer | Yes | Yes | Binary value of the descriptor. | + + +## NotifyCharacteristic + +Defines the parameters in the notifications sent when the server characteristic value changes. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------- | ----------- | ---- | ---- | ---------------------------------------- | +| serviceUuid | string | Yes | Yes | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | Yes | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| characteristicValue | ArrayBuffer | Yes | Yes | Binary value of the characteristic. | +| confirm | boolean | Yes | Yes | Whether the notification needs to be confirmed by the remote end. For a notification, set it to **true**. In this case, the remote end must confirm the receipt of the notification. For an indication, set it to **false**. In this case, the remote end does not need to confirm the receipt of the notification.| + + +## CharacteristicReadRequest + +Defines the parameters of the **CharacteristicReadReq** event received by the server. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------ | ------ | ---- | ---- | ---------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device that sends the **CharacteristicReadReq** event, for example, XX:XX:XX:XX:XX:XX.| +| transId | number | Yes | No | Transmission ID of the read request. The response returned by the server must use the same transmission ID. | +| offset | number | Yes | No | Position from which the characteristic value is read. For example, **k** means to read from the kth byte. The response returned by the server must use the same offset.| +| characteristicUuid | string | Yes | No | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| + + +## CharacteristicWriteRequest + +Defines the parameters of the **CharacteristicWriteReq** event received by the server. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------ | ------ | ---- | ---- | ---------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device that sends the **CharacteristicWriteReq** event, for example, XX:XX:XX:XX:XX:XX.| +| transId | number | Yes | No | Transmission ID of the write request. The response returned by the server must use the same transmission ID. | +| offset | number | Yes | No | Start position for writing the characteristic value. For example, **k** means to write from the kth byte. The response returned by the server must use the same offset.| +| descriptorUuid | string | Yes | No | UUID of the descriptor, for example, **00002902-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | No | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| + + +## DescriptorReadRequest + +Defines the parameters of the **DescriptorReadReq** event received by the server. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------ | ------ | ---- | ---- | ---------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device that sends a **DescriptorReadReq** event, for example, XX:XX:XX:XX:XX:XX.| +| transId | number | Yes | No | Transmission ID of the read request. The response returned by the server must use the same transmission ID. | +| offset | number | Yes | No | Position from which the descriptor is read. For example, **k** means to read from the kth byte. The response returned by the server must use the same offset.| +| descriptorUuid | string | Yes | No | UUID of the descriptor, for example, **00002902-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | No | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| + + +## DescriptorWriteRequest + +Defines the parameters of the **DescriptorWriteReq** event received by the server. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------------ | ----------- | ---- | ---- | ---------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device that sends a **DescriptorWriteReq** event, for example, XX:XX:XX:XX:XX:XX.| +| transId | number | Yes | No | Transmission ID of the write request. The response returned by the server must use the same transmission ID. | +| offset | number | Yes | No | Start position for writing the descriptor. For example, **k** means to write from the kth byte. The response returned by the server must use the same offset.| +| isPrep | boolean | Yes | No | Whether the write request is executed immediately. | +| needRsp | boolean | Yes | No | Whether to send a response to the GATT client. | +| value | ArrayBuffer | Yes | No | Binary value of the descriptor to write. | +| descriptorUuid | string | Yes | No | UUID of the descriptor, for example, **00002902-0000-1000-8000-00805f9b34fb**.| +| characteristicUuid | string | Yes | No | UUID of the characteristic, for example, **00002a11-0000-1000-8000-00805f9b34fb**.| +| serviceUuid | string | Yes | No | UUID of the service, for example, **00001888-0000-1000-8000-00805f9b34fb**.| + + +## ServerResponse + +Defines the parameters of the server's response to the GATT client's read/write request. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| -------- | ----------- | ---- | ---- | -------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device, for example, XX:XX:XX:XX:XX:XX. | +| transId | number | Yes | No | Transmission ID of the request. The value must be the same as the ID carried in the read/write request received. | +| status | number | Yes | No | Response state. Set this parameter to **0**, which indicates a normal response. | +| offset | number | Yes | No | Start read/write position. The value must be the same as the offset carried in the read/write request.| +| value | ArrayBuffer | Yes | No | Binary data in the response. | + + +## BLEConnectChangedState + +Defines the parameters of **BLEConnectChangedState**. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable| Writable| Description | +| -------- | ------------------------------------------------- | ---- | ---- | --------------------------------------------- | +| deviceId | string | Yes | No | Address of the remote device, for example, XX:XX:XX:XX:XX:XX.| +| state | [ProfileConnectionState](#profileconnectionstate) | Yes | Yes | BLE connection state. | + + +## ProfileConnectionState + +Enumerates the profile connection states. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ------------------- | ---- | -------------- | +| STATE_DISCONNECTED | 0 | Disconnected. | +| STATE_CONNECTING | 1 | Connecting.| +| STATE_CONNECTED | 2 | Connected. | +| STATE_DISCONNECTING | 3 | Disconnecting.| + + +## ScanFilter + +Defines the scan filter parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable| Writable| Description | +| ---------------------------------------- | ----------- | ---- | ---- | ------------------------------------------------------------ | +| deviceId | string | Yes | Yes | Address of the BLE device to filter, for example, XX:XX:XX:XX:XX:XX. | +| name | string | Yes | Yes | Name of the BLE device to filter. | +| serviceUuid | string | Yes | Yes | Service UUID of the device to filter, for example, **00001888-0000-1000-8000-00805f9b34fb**.| +| serviceUuidMask | string | Yes | Yes | Service UUID mask of the device to filter, for example, **FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF**.| +| serviceSolicitationUuid | string | Yes | Yes | Service solicitation UUID of the device to filter, for example, **00001888-0000-1000-8000-00805F9B34FB**.| +| serviceSolicitationUuidMask | string | Yes | Yes | Service solicitation UUID mask of the device to filter, for example, **FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF**.| +| serviceData | ArrayBuffer | Yes | Yes | Service data of the device to filter, for example, **[0x90, 0x00, 0xF1, 0xF2]**.| +| serviceDataMask | ArrayBuffer | Yes | Yes | Service data mask of the device to filter, for example, **[0xFF,0xFF,0xFF,0xFF]**.| +| manufactureId | number | Yes | Yes | Manufacturer ID of the device to filter, for example, **0x0006**. | +| manufactureData | ArrayBuffer | Yes | Yes | Manufacturer data of the device to filter, for example, **[0x1F,0x2F,0x3F]**.| +| manufactureDataMask | ArrayBuffer | Yes | Yes | Manufacturer data mask of the device to filter, for example, **[0xFF, 0xFF, 0xFF]**.| + + +## ScanOptions + +Defines the scan configuration parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| --------- | ----------------------- | ---- | ---- | -------------------------------------- | +| interval | number | Yes | Yes | Delay in reporting the scan result. The default value is **0**. | +| dutyMode | [ScanDuty](#scanduty) | Yes | Yes | Scan duty. The default value is SCAN_MODE_LOW_POWER. | +| matchMode | [MatchMode](#matchmode) | Yes | Yes | Hardware filtering match mode. The default value is **MATCH_MODE_AGGRESSIVE**.| + + +## ScanDuty + +Enumerates the scan duty options. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| --------------------- | ---- | ------------ | +| SCAN_MODE_LOW_POWER | 0 | Low-power mode, which is the default value.| +| SCAN_MODE_BALANCED | 1 | Balanced mode. | +| SCAN_MODE_LOW_LATENCY | 2 | Low-latency mode. | + + +## MatchMode + +Enumerates the hardware match modes of BLE scan filters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| --------------------- | ---- | ---------------------------------------- | +| MATCH_MODE_AGGRESSIVE | 1 | Hardware reports the scan result with a lower threshold of signal strength and few number of matches in a duration. This is the default value.| +| MATCH_MODE_STICKY | 2 | Hardware reports the scan result with a higher threshold of signal strength and sightings. | + + +## ScanResult + +Defines the scan result. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| -------- | ----------- | ---- | ---- | ---------------------------------- | +| deviceId | string | Yes | No | Address of the scanned device, for example, XX:XX:XX:XX:XX:XX.| +| rssi | number | Yes | No | RSSI of the device. | +| data | ArrayBuffer | Yes | No | Advertisement packets sent by the device. | + + +## BluetoothState + +Enumerates the Bluetooth states. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| --------------------- | ---- | ------------------ | +| STATE_OFF | 0 | Bluetooth is turned off. | +| STATE_TURNING_ON | 1 | Bluetooth is being turned on. | +| STATE_ON | 2 | Bluetooth is turned on. | +| STATE_TURNING_OFF | 3 | Bluetooth is being turned off. | +| STATE_BLE_TURNING_ON | 4 | The LE-only mode is being turned on for Bluetooth.| +| STATE_BLE_ON | 5 | Bluetooth is in LE-only mode. | +| STATE_BLE_TURNING_OFF | 6 | The LE-only mode is being turned off for Bluetooth.| + + +## AdvertiseSetting + +Defines the BLE advertising parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ----------- | ------- | ---- | ---- | ---------------------------------------- | +| interval | number | Yes | Yes | Interval for BLE advertising. The minimum value is **32** slots (20 ms). The maximum value is **16384** slots. The default value is **1600** slots (1s).| +| txPower | number | Yes | Yes | Transmit power, in dBm. The value range is -127 to 1. The default value is **-7**. | +| connectable | boolean | Yes | Yes | Whether the advertisement is connectable. The default value is **true**. | + + +## AdvertiseData + +Defines the content of a BLE advertisement packet. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| --------------- | ---------------------------------------- | ---- | ---- | --------------------------- | +| serviceUuids | Array<string> | Yes | Yes | List of service UUIDs to broadcast.| +| manufactureData | Array<[ManufactureData](#manufacturedata)> | Yes | Yes | List of manufacturers to broadcast. | +| serviceData | Array<[ServiceData](#servicedata)> | Yes | Yes | List of service data to broadcast. | + + +## ManufactureData + +Defines the content of a BLE advertisement packet. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ---------------- | ------------------- | ---- | ---- | ------------------ | +| manufactureId | number | Yes | Yes | Manufacturer ID allocated by the Bluetooth SIG.| +| manufactureValue | ArrayBuffer | Yes | Yes | Manufacturer data. | + + +## ServiceData + +Defines the service data contained in an advertisement packet. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| ------------ | ----------- | ---- | ---- | ---------- | +| serviceUuid | string | Yes | Yes | Service UUID.| +| serviceValue | ArrayBuffer | Yes | Yes | Service data. | + + +## PinRequiredParam + +Defines the pairing request parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| -------- | ------ | ---- | ---- | ----------- | +| deviceId | string | Yes | No | ID of the device to pair.| +| pinCode | string | Yes | No | Key for the device pairing. | + + +## BondStateParam + +Defines the pairing state parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| -------- | ------ | ---- | ---- | ----------- | +| deviceId | string | Yes | No | ID of the device to pair.| +| state | BondState | Yes | No | State of the device.| + + +## StateChangeParam + +Defines the profile state change parameters. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable| Writable| Description | +| -------- | ------------------------------------------------- | ---- | ---- | ------------------------------- | +| deviceId | string | Yes | No | Address of a Bluetooth device. | +| state | [ProfileConnectionState](#profileconnectionstate) | Yes | No | Profile connection state of the device.| + + +## DeviceClass + +Defines the class of a Bluetooth device. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Type | Readable | Writable | Description | +| --------------- | ----------------------------------- | ---- | ---- | ---------------- | +| majorClass | [MajorClass](#majorclass) | Yes | No | Major classes of Bluetooth devices. | +| majorMinorClass | [MajorMinorClass](#majorminorclass) | Yes | No | Major and minor classes of Bluetooth devices.| +| classOfDevice | number | Yes | No | Class of the device. | + + + +## MajorClass + +Enumerates the major classes of Bluetooth devices. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ------------------- | ------ | ---------- | +| MAJOR_MISC | 0x0000 | Miscellaneous device. | +| MAJOR_COMPUTER | 0x0100 | Computer. | +| MAJOR_PHONE | 0x0200 | Mobile phone. | +| MAJOR_NETWORKING | 0x0300 | Network device. | +| MAJOR_AUDIO_VIDEO | 0x0400 | Audio or video device.| +| MAJOR_PERIPHERAL | 0x0500 | Peripheral device. | +| MAJOR_IMAGING | 0x0600 | Imaging device. | +| MAJOR_WEARABLE | 0x0700 | Wearable device. | +| MAJOR_TOY | 0x0800 | Toy. | +| MAJOR_HEALTH | 0x0900 | Health device. | +| MAJOR_UNCATEGORIZED | 0x1F00 | Unclassified device. | + + +## MajorMinorClass + +Enumerates the major and minor classes of Bluetooth devices. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ---------------------------------------- | ------ | --------------- | +| COMPUTER_UNCATEGORIZED | 0x0100 | Unclassified computer. | +| COMPUTER_DESKTOP | 0x0104 | Desktop computer. | +| COMPUTER_SERVER | 0x0108 | Server. | +| COMPUTER_LAPTOP | 0x010C | Laptop. | +| COMPUTER_HANDHELD_PC_PDA | 0x0110 | Hand-held computer. | +| COMPUTER_PALM_SIZE_PC_PDA | 0x0114 | Palmtop computer. | +| COMPUTER_WEARABLE | 0x0118 | Wearable computer. | +| COMPUTER_TABLET | 0x011C | Tablet. | +| PHONE_UNCATEGORIZED | 0x0200 | Unclassified mobile phone. | +| PHONE_CELLULAR | 0x0204 | Portable phone. | +| PHONE_CORDLESS | 0x0208 | Cordless phone. | +| PHONE_SMART | 0x020C | Smartphone. | +| PHONE_MODEM_OR_GATEWAY | 0x0210 | Modem or gateway phone.| +| PHONE_ISDN | 0x0214 | ISDN phone. | +| NETWORK_FULLY_AVAILABLE | 0x0300 | Device with network fully available. | +| NETWORK_1_TO_17_UTILIZED | 0x0320 | Device used on network 1 to 17. | +| NETWORK_17_TO_33_UTILIZED | 0x0340 | Device used on network 17 to 33. | +| NETWORK_33_TO_50_UTILIZED | 0x0360 | Device used on network 33 to 50. | +| NETWORK_60_TO_67_UTILIZED | 0x0380 | Device used on network 60 to 67. | +| NETWORK_67_TO_83_UTILIZED | 0x03A0 | Device used on network 67 to 83. | +| NETWORK_83_TO_99_UTILIZED | 0x03C0 | Device used on network 83 to 99. | +| NETWORK_NO_SERVICE | 0x03E0 | Device without network service | +| AUDIO_VIDEO_UNCATEGORIZED | 0x0400 | Unclassified audio or video device. | +| AUDIO_VIDEO_WEARABLE_HEADSET | 0x0404 | Wearable audio or video headset. | +| AUDIO_VIDEO_HANDSFREE | 0x0408 | Hands-free audio or video device. | +| AUDIO_VIDEO_MICROPHONE | 0x0410 | Audio or video microphone. | +| AUDIO_VIDEO_LOUDSPEAKER | 0x0414 | Audio or video loudspeaker. | +| AUDIO_VIDEO_HEADPHONES | 0x0418 | Audio or video headphones. | +| AUDIO_VIDEO_PORTABLE_AUDIO | 0x041C | Portable audio or video device. | +| AUDIO_VIDEO_CAR_AUDIO | 0x0420 | In-vehicle audio or video device. | +| AUDIO_VIDEO_SET_TOP_BOX | 0x0424 | Audio or video STB device. | +| AUDIO_VIDEO_HIFI_AUDIO | 0x0428 | High-fidelity speaker device. | +| AUDIO_VIDEO_VCR | 0x042C | Video cassette recording (VCR) device. | +| AUDIO_VIDEO_VIDEO_CAMERA | 0x0430 | Camera. | +| AUDIO_VIDEO_CAMCORDER | 0x0434 | Camcorder | +| AUDIO_VIDEO_VIDEO_MONITOR | 0x0438 | Audio or video monitor. | +| AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER | 0x043C | Video display or loudspeaker. | +| AUDIO_VIDEO_VIDEO_CONFERENCING | 0x0440 | Video conferencing device. | +| AUDIO_VIDEO_VIDEO_GAMING_TOY | 0x0448 | Audio or video gaming toy. | +| PERIPHERAL_NON_KEYBOARD_NON_POINTING | 0x0500 | Non-keyboard or non-pointing peripheral device. | +| PERIPHERAL_KEYBOARD | 0x0540 | Keyboard device. | +| PERIPHERAL_POINTING_DEVICE | 0x0580 | Pointing peripheral device. | +| PERIPHERAL_KEYBOARD_POINTING | 0x05C0 | Keyboard pointing device. | +| PERIPHERAL_UNCATEGORIZED | 0x0500 | Unclassified peripheral device. | +| PERIPHERAL_JOYSTICK | 0x0504 | Peripheral joystick. | +| PERIPHERAL_GAMEPAD | 0x0508 | Peripheral game pad | +| PERIPHERAL_REMOTE_CONTROL | 0x05C0 | Peripheral remote control device | +| PERIPHERAL_SENSING_DEVICE | 0x0510 | Peripheral sensing device. | +| PERIPHERAL_DIGITIZER_TABLET | 0x0514 | Peripheral digitizer tablet.| +| PERIPHERAL_CARD_READER | 0x0518 | Peripheral card reader. | +| PERIPHERAL_DIGITAL_PEN | 0x051C | Peripheral digital pen. | +| PERIPHERAL_SCANNER_RFID | 0x0520 | Peripheral RFID scanner. | +| PERIPHERAL_GESTURAL_INPUT | 0x0522 | Gesture input device. | +| IMAGING_UNCATEGORIZED | 0x0600 | Unclassified imaging device. | +| IMAGING_DISPLAY | 0x0610 | Imaging display device. | +| IMAGING_CAMERA | 0x0620 | Imaging camera device. | +| IMAGING_SCANNER | 0x0640 | Imaging scanner. | +| IMAGING_PRINTER | 0x0680 | Imaging printer. | +| WEARABLE_UNCATEGORIZED | 0x0700 | Unclassified wearable device. | +| WEARABLE_WRIST_WATCH | 0x0704 | Smart watch. | +| WEARABLE_PAGER | 0x0708 | Wearable pager. | +| WEARABLE_JACKET | 0x070C | Smart jacket. | +| WEARABLE_HELMET | 0x0710 | Wearable helmet. | +| WEARABLE_GLASSES | 0x0714 | Wearable glasses. | +| TOY_UNCATEGORIZED | 0x0800 | Unclassified toy. | +| TOY_ROBOT | 0x0804 | Toy robot. | +| TOY_VEHICLE | 0x0808 | Toy vehicle. | +| TOY_DOLL_ACTION_FIGURE | 0x080C | Humanoid toy doll. | +| TOY_CONTROLLER | 0x0810 | Toy controller. | +| TOY_GAME | 0x0814 | Toy gaming device. | +| HEALTH_UNCATEGORIZED | 0x0900 | Unclassified health devices. | +| HEALTH_BLOOD_PRESSURE | 0x0904 | Blood pressure device. | +| HEALTH_THERMOMETER | 0x0908 | Thermometer | +| HEALTH_WEIGHING | 0x090C | Body scale. | +| HEALTH_GLUCOSE | 0x0910 | Blood glucose monitor. | +| HEALTH_PULSE_OXIMETER | 0x0914 | Pulse oximeter. | +| HEALTH_PULSE_RATE | 0x0918 | Heart rate monitor. | +| HEALTH_DATA_DISPLAY | 0x091C | Health data display. | +| HEALTH_STEP_COUNTER | 0x0920 | Step counter. | +| HEALTH_BODY_COMPOSITION_ANALYZER | 0x0924 | Body composition analyzer. | +| HEALTH_PEAK_FLOW_MONITOR | 0x0928 | Hygrometer. | +| HEALTH_MEDICATION_MONITOR | 0x092C | Medication monitor. | +| HEALTH_KNEE_PROSTHESIS | 0x0930 | Prosthetic knee. | +| HEALTH_ANKLE_PROSTHESIS | 0x0934 | Prosthetic ankle. | +| HEALTH_GENERIC_HEALTH_MANAGER | 0x0938 | Generic health management device. | +| HEALTH_PERSONAL_MOBILITY_DEVICE | 0x093C | Personal mobility device. | + + +## PlayingState + +Enumerates the A2DP playing states. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| ----------------- | ------ | ------- | +| STATE_NOT_PLAYING | 0x0000 | Not playing. | +| STATE_PLAYING | 0x0001 | Playing.| + + +## ProfileId + +Enumerates the Bluetooth profiles. API version 9 is added with **PROFILE_HID_HOST** and **PROFILE_PAN_NETWORK**. + +**System capability**: SystemCapability.Communication.Bluetooth.Core + +| Name | Value | Description | +| -------------------------------- | ------ | --------------- | +| PROFILE_A2DP_SOURCE | 1 | A2DP profile.| +| PROFILE_HANDS_FREE_AUDIO_GATEWAY | 4 | HFP profile. | +| PROFILE_HID_HOST | 6 | Human Interface Device (HID) profile. | +| PROFILE_PAN_NETWORK | 7 | PAN profile. | diff --git a/en/application-dev/reference/apis/js-apis-fileio.md b/en/application-dev/reference/apis/js-apis-fileio.md index 181a68d508ac6a52903f2fa33c13bc24a94cee88..4d69af5ec5184989ae3a79c45693297fae5b1c66 100644 --- a/en/application-dev/reference/apis/js-apis-fileio.md +++ b/en/application-dev/reference/apis/js-apis-fileio.md @@ -3,9 +3,9 @@ The **fileio** module provides APIs for file storage and management, including basic file management, directory management, file information statistics, and stream read and write. > **NOTE** -> +> > - The initial APIs of this module are supported since API version 6. Newly added APIs will be marked with a superscript to indicate their earliest API version. -> - The APIs provided by this module are deprecated since API version 9. You are advised to use [@ohos.file.fs](./js-apis-file-fs.md). +> - The APIs provided by this module are deprecated since API version 9. You are advised to use [@ohos.file.fs](js-apis-file-fs.md). ## Modules to Import @@ -18,7 +18,7 @@ import fileio from '@ohos.fileio'; Before using the APIs provided by this module to perform operations on files or directories, obtain the path of the application sandbox as follows: -Stage Model +**Stage Model** ```js import UIAbility from '@ohos.app.ability.UIAbility'; @@ -31,9 +31,9 @@ export default class EntryAbility extends UIAbility { } ``` - For details about how to obtain the stage model context, see [AbilityContext](js-apis-ability-context.md#abilitycontext). + For details about how to obtain the stage model context, see [UIAbilityContext](js-apis-inner-application-uiAbilityContext.md). -FA Model +**FA Model** ```js import featureAbility from '@ohos.ability.featureAbility'; @@ -62,9 +62,9 @@ Obtains file information. This API uses a promise to return the result. **Return value** -| Type | Description | -| ---------------------------- | ---------- | -| Promise<[Stat](#stat)> | Promise used to return the file information obtained.| + | Type | Description | + | ---------------------------- | ---------- | + | Promise<[Stat](#stat)> | Promise used to return the file information obtained.| **Example** @@ -119,9 +119,9 @@ Synchronously obtains file information. **Return value** -| Type | Description | -| ------------- | ---------- | -| [Stat](#stat) | File information obtained.| + | Type | Description | + | ------------- | ---------- | + | [Stat](#stat) | File information obtained.| **Example** @@ -147,9 +147,9 @@ Opens a file directory. This API uses a promise to return the result. **Return value** -| Type | Description | -| -------------------------- | -------- | -| Promise<[Dir](#dir)> | Promise used to return the **Dir** object.| + | Type | Description | + | -------------------------- | -------- | + | Promise<[Dir](#dir)> | Promise used to return the **Dir** object.| **Example** @@ -205,9 +205,9 @@ Synchronously opens a directory. **Return value** -| Type | Description | -| ----------- | -------- | -| [Dir](#dir) | A **Dir** instance corresponding to the directory.| + | Type | Description | + | ----------- | -------- | + | [Dir](#dir) | A **Dir** instance corresponding to the directory.| **Example** @@ -231,13 +231,13 @@ Checks whether the current process can access a file. This API uses a promise to | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: check whether the file exists.
- **1**: check whether the current process has the execute permission on the file.
- **2**: check whether the current process has the write permission on the file.
- **4**: check whether the current process has the read permission on the file.| +| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: Check whether the file exists.
- **1**: Check whether the process has the execute permission on the file.
- **2**: Check whether the process has the write permission on the file.
- **4**: Check whether the process has the read permission on the file. | **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -264,7 +264,7 @@ Checks whether the current process can access a file. This API uses an asynchron | Name | Type | Mandatory| Description | | -------- | ------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: check whether the file exists.
- **1**: check whether the current process has the execute permission on the file.
- **2**: check whether the current process has the write permission on the file.
- **4**: check whether the current process has the read permission on the file.| +| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: Check whether the file exists.
- **1**: Check whether the process has the execute permission on the file.
- **2**: Check whether the process has the write permission on the file.
- **4**: Check whether the process has the read permission on the file. | | callback | AsyncCallback<void> | Yes | Callback invoked when the file is asynchronously checked. | **Example** @@ -290,7 +290,7 @@ Synchronously checks whether the current process can access the specified file. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: check whether the file exists.
- **1**: check whether the current process has the execute permission on the file.
- **2**: check whether the current process has the write permission on the file.
- **4**: check whether the current process has the read permission on the file.| +| mode | number | No | Options for accessing the file. You can specify multiple options, separated with a bitwise OR operator (|). The default value is **0**.
The options are as follows:
- **0**: Check whether the file exists.
- **1**: Check whether the process has the execute permission on the file.
- **2**: Check whether the process has the write permission on the file.
- **4**: Check whether the process has the read permission on the file. | **Example** @@ -314,15 +314,15 @@ Closes a file. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to close.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to close.| **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -347,10 +347,10 @@ Closes a file. This API uses an asynchronous callback to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to close.| -| callback | AsyncCallback<void> | Yes | Callback invoked when the file is closed asynchronously.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to close.| + | callback | AsyncCallback<void> | Yes | Callback invoked when the file is closed asynchronously.| **Example** @@ -373,9 +373,9 @@ Synchronously closes a file. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to close.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to close.| **Example** @@ -396,17 +396,17 @@ Copies a file. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | -------------------------- | ---- | ---------------------------------------- | -| src | string\|number | Yes | Path or file descriptor of the file to copy. | -| dest | string\|number | Yes | Path or file descriptor of the new file. | -| mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| + | Name | Type | Mandatory | Description | + | ---- | -------------------------- | ---- | ---------------------------------------- | + | src | string\|number | Yes | Path or file descriptor of the file to copy. | + | dest | string\|number | Yes | Path or file descriptor of the new file. | + | mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -431,12 +431,12 @@ Copies a file. This API uses an asynchronous callback to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| -------- | -------------------------- | ---- | ---------------------------------------- | -| src | string\|number | Yes | Path or file descriptor of the file to copy. | -| dest | string\|number | Yes | Path or file descriptor of the new file. | -| mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| -| callback | AsyncCallback<void> | Yes | Callback invoked when the file is copied asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | -------------------------- | ---- | ---------------------------------------- | + | src | string\|number | Yes | Path or file descriptor of the file to copy. | + | dest | string\|number | Yes | Path or file descriptor of the new file. | + | mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| + | callback | AsyncCallback<void> | Yes | Callback invoked when the file is copied asynchronously. | **Example** @@ -459,11 +459,11 @@ Synchronously copies a file. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | -------------------------- | ---- | ---------------------------------------- | -| src | string\|number | Yes | Path or file descriptor of the file to copy. | -| dest | string\|number | Yes | Path or file descriptor of the new file. | -| mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| + | Name | Type | Mandatory | Description | + | ---- | -------------------------- | ---- | ---------------------------------------- | + | src | string\|number | Yes | Path or file descriptor of the file to copy. | + | dest | string\|number | Yes | Path or file descriptor of the new file. | + | mode | number | No | Option for overwriting the file of the same name in the destination path. The default value is **0**, which is the only value supported.
**0**: Completely overwrite the file with the same name and truncate the part that is not overwritten.| **Example** @@ -487,13 +487,13 @@ Creates a directory. This API uses a promise to return the result. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the directory. | -| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -520,7 +520,7 @@ Creates a directory. This API uses an asynchronous callback to return the result | Name | Type | Mandatory| Description | | -------- | ------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the directory. | -| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | | callback | AsyncCallback<void> | Yes | Callback invoked when the directory is created asynchronously. | **Example** @@ -546,7 +546,7 @@ Synchronously creates a directory. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the directory. | -| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | No | Permission on the directory to create. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o775**.
- **0o775**: The owner has the read, write, and execute permissions, and other users have the read and execute permissions.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Example** @@ -569,14 +569,14 @@ Opens a file. This API uses a promise to return the result. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create it. If you use this option, you must also specify **mode**.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (added to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.

- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| -| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions on the file.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create a file. The third parameter **mode** must also be specified.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (written to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.
- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| +| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Return value** -| Type | Description | -| --------------------- | ----------- | -| Promise<number> | Promise used to return the file descriptor of the file opened.| + | Type | Description | + | --------------------- | ----------- | + | Promise<number> | Promise used to return the file descriptor of the file opened.| **Example** @@ -603,8 +603,8 @@ Opens a file. This API uses an asynchronous callback to return the result. | Name | Type | Mandatory| Description | | -------- | ------------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create it. If you use this option, you must also specify **mode**.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (added to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.

- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| -| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions on the file.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create a file. The third parameter **mode** must also be specified.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (written to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.
- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| +| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | | callback | AsyncCallback<number> | Yes | Callback invoked when the file is open asynchronously. | **Example** @@ -630,14 +630,14 @@ Synchronously opens a file. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create it. If you use this option, you must also specify **mode**.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (added to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.

- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| -| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions on the file.
- **0o640**: The owner has the read and write permissions, and the user group has the read permission.
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.
The file permissions on newly created files are affected by umask, which is set as the process starts. Currently, the modification of umask is not open.| +| flags | number | No | Option for opening the file. You must specify one of the following options. By default, the file is open in read-only mode.
- **0o0**: Open the file in read-only mode.
- **0o1**: Open the file in write-only mode.
- **0o2**: Open the file in read/write mode.
In addition, you can specify the following options, separated using a bitwise OR operator (|). By default, no additional option is specified.
- **0o100**: If the file does not exist, create a file. The third parameter **mode** must also be specified.
- **0o200**: If **0o100** is added and the file already exists, throw an exception.
- **0o1000**: If the file exists and is open in write-only or read/write mode, truncate the file length to 0.
- **0o2000**: Open the file in append mode. New data will be appended to the file (written to the end of the file).
- **0o4000**: If **path** points to a named pipe (also known as a FIFO), block special file, or character special file, perform non-blocking operations on the open file and in subsequent I/Os.
- **0o200000**: If **path** does not point to a directory, throw an exception.
- **0o400000**: If **path** points to a symbolic link, throw an exception.
- **0o4010000**: Open the file in synchronous I/O mode.| +| mode | number | No | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|). The default value is **0o666**.
- **0o666**: The owner, user group, and other users have the read and write permissions.
- **0o640**: The owner has the read and write permissions, and the user group has the read permission.
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.
The file permissions on newly created files are affected by umask, which is set as the process starts. Currently, the modification of umask is not open. | **Return value** -| Type | Description | -| ------ | ----------- | -| number | File descriptor of the file opened.| + | Type | Description | + | ------ | ----------- | + | number | File descriptor of the file opened.| **Example** @@ -670,13 +670,13 @@ Reads data from a file. This API uses a promise to return the result. | ------- | ----------- | ---- | ------------------------------------------------------------ | | fd | number | Yes | File descriptor of the file to read. | | buffer | ArrayBuffer | Yes | Buffer used to store the file data read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size| +| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size| **Return value** -| Type | Description | -| ---------------------------------- | ------ | -| Promise<[ReadOut](#readout)> | Promise used to return the data read.| + | Type | Description | + | ---------------------------------- | ------ | + | Promise<[ReadOut](#readout)> | Promise used to return the data read.| **Example** @@ -703,12 +703,12 @@ Reads data from a file. This API uses an asynchronous callback to return the res **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the file to read. | -| buffer | ArrayBuffer | Yes | Buffer used to store the file data read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | -| callback | AsyncCallback<[ReadOut](#readout)> | Yes | Callback invoked when the data is read asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | ---------------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the file to read. | + | buffer | ArrayBuffer | Yes | Buffer used to store the file data read. | + | options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | + | callback | AsyncCallback<[ReadOut](#readout)> | Yes | Callback invoked when the data is read asynchronously. | **Example** @@ -735,17 +735,17 @@ Synchronously reads data from a file. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ----------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the file to read. | -| buffer | ArrayBuffer | Yes | Buffer used to store the file data read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | + | Name | Type | Mandatory | Description | + | ------- | ----------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the file to read. | + | buffer | ArrayBuffer | Yes | Buffer used to store the file data read. | + | options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | **Return value** -| Type | Description | -| ------ | -------- | -| number | Length of the data read.| + | Type | Description | + | ------ | -------- | + | number | Length of the data read.| **Example** @@ -773,9 +773,9 @@ Deletes a directory. This API uses a promise to return the result. **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -853,9 +853,9 @@ Deletes a file. This API uses a promise to return the result. **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -926,17 +926,17 @@ Writes data into a file. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the file to write. | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size| + | Name | Type | Mandatory | Description | + | ------- | ------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the file to write. | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size| **Return value** -| Type | Description | -| --------------------- | -------- | -| Promise<number> | Promise used to return the length of the data written.| + | Type | Description | + | --------------------- | -------- | + | Promise<number> | Promise used to return the length of the data written.| **Example** @@ -961,12 +961,12 @@ Writes data into a file. This API uses an asynchronous callback to return the re **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the file to write. | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size| -| callback | AsyncCallback<number> | Yes | Callback invoked when the data is written asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | ------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the file to write. | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size| + | callback | AsyncCallback<number> | Yes | Callback invoked when the data is written asynchronously. | **Example** @@ -991,17 +991,17 @@ Synchronously writes data into a file. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the file to write. | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size| + | Name | Type | Mandatory | Description | + | ------- | ------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the file to write. | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size| **Return value** -| Type | Description | -| ------ | -------- | -| number | Length of the data written in the file.| + | Type | Description | + | ------ | -------- | + | number | Length of the data written in the file.| **Example** @@ -1029,9 +1029,9 @@ Calculates the hash value of a file. This API uses a promise to return the resul **Return value** -| Type | Description | -| --------------------- | -------------------------- | -| Promise<string> | Promise used to return the hash value obtained. The hash value is a hexadecimal string consisting of digits and uppercase letters.| + | Type | Description | + | --------------------- | -------------------------- | + | Promise<string> | Promise used to return the hash value obtained. The hash value is a hexadecimal string consisting of digits and uppercase letters.| **Example** @@ -1086,13 +1086,13 @@ Changes file permissions. This API uses a promise to return the result. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1119,7 +1119,7 @@ Changes file permissions. This API uses an asynchronous callback to return the r | Name | Type | Mandatory| Description | | -------- | ------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | | callback | AsyncCallback<void> | Yes | Callback invoked when the file permissions are changed asynchronously. | **Example** @@ -1145,7 +1145,7 @@ Synchronously changes file permissions. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Example** @@ -1165,15 +1165,15 @@ Obtains file information based on the file descriptor. This API uses a promise t **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | Descriptor of the target file.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | Descriptor of the target file.| **Return value** -| Type | Description | -| ---------------------------- | ---------- | -| Promise<[Stat](#stat)> | Promise used to return the file information.| + | Type | Description | + | ---------------------------- | ---------- | + | Promise<[Stat](#stat)> | Promise used to return the file information obtained.| **Example** @@ -1198,10 +1198,10 @@ Obtains file information based on the file descriptor. This API uses an asynchro **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------- | ---- | ---------------- | -| fd | number | Yes | File descriptor of the target file. | -| callback | AsyncCallback<[Stat](#stat)> | Yes | Callback invoked to return the file information obtained.| + | Name | Type | Mandatory | Description | + | -------- | ---------------------------------- | ---- | ---------------- | + | fd | number | Yes | File descriptor of the target file. | + | callback | AsyncCallback<[Stat](#stat)> | Yes | Callback invoked to return the file information obtained.| **Example** @@ -1224,15 +1224,15 @@ Synchronously obtains file information based on the file descriptor. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the target file.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the target file.| **Return value** -| Type | Description | -| ------------- | ---------- | -| [Stat](#stat) | File information obtained.| + | Type | Description | + | ------------- | ---------- | + | [Stat](#stat) | File information obtained.| **Example** @@ -1253,16 +1253,16 @@ Truncates a file based on the file descriptor. This API uses a promise to return **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------- | -| fd | number | Yes | File descriptor of the file to truncate. | -| len | number | No | File length, in bytes, after truncation.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------- | + | fd | number | Yes | File descriptor of the file to truncate. | + | len | number | No | File length, in bytes, after truncation.| **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1287,11 +1287,11 @@ Truncates a file based on the file descriptor. This API uses an asynchronous cal **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | ---------------- | -| fd | number | Yes | File descriptor of the file to truncate. | -| len | number | No | File length, in bytes, after truncation.| -| callback | AsyncCallback<void> | Yes | Callback that returns no value. | + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | ---------------- | + | fd | number | Yes | File descriptor of the file to truncate. | + | len | number | No | File length, in bytes, after truncation.| + | callback | AsyncCallback<void> | Yes | Callback that returns no value. | **Example** @@ -1315,10 +1315,10 @@ Synchronously truncates a file based on the file descriptor. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------- | -| fd | number | Yes | File descriptor of the file to truncate. | -| len | number | No | File length, in bytes, after truncation.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------- | + | fd | number | Yes | File descriptor of the file to truncate. | + | len | number | No | File length, in bytes, after truncation.| **Example** @@ -1347,9 +1347,9 @@ Truncates a file based on the file path. This API uses a promise to return the r **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1376,7 +1376,7 @@ Truncates a file based on the file path. This API uses an asynchronous callback | Name | Type | Mandatory| Description | | -------- | ------------------------- | ---- | -------------------------------- | -| path | string | Yes | Application sandbox path of the file to truncate.| +| path | string | Yes | Application sandbox path of the file to truncate. | | len | number | No | File length, in bytes, after truncation.| | callback | AsyncCallback<void> | Yes | Callback that returns no value. | @@ -1403,7 +1403,7 @@ Synchronously truncates a file based on the file path. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | -------------------------------- | -| path | string | Yes | Application sandbox path of the file to truncate.| +| path | string | Yes | Application sandbox path of the file to truncate. | | len | number | No | File length, in bytes, after truncation.| **Example** @@ -1428,13 +1428,13 @@ Reads the text content of a file. This API uses a promise to return the result. | Name | Type | Mandatory| Description | | -------- | ------ | ---- | ------------------------------------------------------------ | | filePath | string | Yes | Application sandbox path of the file to read. | -| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **encoding** (string): format of the data (string) to be encoded. The default value is **utf-8**, which is the only value supported.| +| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **encoding** (string): format of the string to be encoded. The default value is **'utf-8'**, which is the only value supported.| **Return value** -| Type | Description | -| --------------------- | ---------- | -| Promise<string> | Promise used to return the content read.| + | Type | Description | + | --------------------- | ---------- | + | Promise<string> | Promise used to return the content read.| **Example** @@ -1461,7 +1461,7 @@ Reads the text content of a file. This API uses an asynchronous callback to retu | Name | Type | Mandatory| Description | | -------- | --------------------------- | ---- | ------------------------------------------------------------ | | filePath | string | Yes | Application sandbox path of the file to read. | -| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
-  **encoding**: format of the string to be encoded. The default value is  **utf-8**, which is the only value supported.| +| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **encoding** (string): format of the string to be encoded. The default value is **'utf-8'**, which is the only value supported.| | callback | AsyncCallback<string> | Yes | Callback used to return the content read. | **Example** @@ -1487,13 +1487,13 @@ Synchronously reads the text of a file. | Name | Type | Mandatory| Description | | -------- | ------ | ---- | ------------------------------------------------------------ | | filePath | string | Yes | Application sandbox path of the file to read. | -| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **encoding** (string): format of the data (string) to be encoded. The default value is **utf-8**, which is the only value supported.| +| options | Object | No | The options are as follows:
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **encoding** (string): format of the string to be encoded. The default value is **'utf-8'**, which is the only value supported.| **Return value** -| Type | Description | -| ------ | -------------------- | -| string | Promise used to return the content of the file read.| + | Type | Description | + | ------ | -------------------- | + | string | Promise used to return the content of the file read.| **Example** @@ -1519,9 +1519,9 @@ Obtains link information. This API uses a promise to return the result. **Return value** -| Type | Description | -| ---------------------------- | ---------- | -| Promise<[Stat](#stat)> | Promise used to return the link information obtained. For details, see [Stat](#stat).| + | Type | Description | + | ---------------------------- | ---------- | + | Promise<[Stat](#stat)> | Promise used to return the link information obtained. For details, see [Stat](#stat).| **Example** @@ -1576,9 +1576,9 @@ Synchronously obtains the link information. **Return value** -| Type | Description | -| ------------- | ---------- | -| [Stat](#stat) | Link information obtained.| + | Type | Description | + | ------------- | ---------- | + | [Stat](#stat) | Link information obtained.| **Example** @@ -1605,9 +1605,9 @@ Renames a file. This API uses a promise to return the result. **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1682,15 +1682,15 @@ Flushes data of a file to disk. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to flush.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to flush.| **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1715,10 +1715,10 @@ Flushes data of a file to disk. This API uses an asynchronous callback to return **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | --------------- | -| fd | number | Yes | File descriptor of the file to flush. | -| Callback | AsyncCallback<void> | Yes | Callback invoked when the file is synchronized in asynchronous mode.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | --------------- | + | fd | number | Yes | File descriptor of the file to flush. | + | Callback | AsyncCallback<void> | Yes | Callback invoked when the file is synchronized in asynchronous mode.| **Example** @@ -1741,9 +1741,9 @@ Flushes data of a file to disk in synchronous mode. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to flush.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to flush.| **Example** @@ -1764,15 +1764,15 @@ Flushes data of a file to disk. This API uses a promise to return the result. ** **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to flush.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to flush.| **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1797,10 +1797,10 @@ Flushes data of a file to disk. This API uses an asynchronous callback to return **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------------- | ---- | ----------------- | -| fd | number | Yes | File descriptor of the file to synchronize. | -| callback | AsyncCallback<void> | Yes | Callback invoked when the file data is synchronized in asynchronous mode.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------------- | ---- | ----------------- | + | fd | number | Yes | File descriptor of the file to synchronize. | + | callback | AsyncCallback<void> | Yes | Callback invoked when the file data is synchronized in asynchronous mode.| **Example** @@ -1823,9 +1823,9 @@ Synchronizes data in a file in synchronous mode. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the file to flush.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the file to flush.| **Example** @@ -1853,9 +1853,9 @@ Creates a symbolic link based on the file path. This API uses a promise to retur **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -1939,9 +1939,9 @@ Changes the file owner based on the file path. This API uses a promise to return **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -2019,15 +2019,15 @@ Creates a temporary directory. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | --------------------------- | -| prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| + | Name | Type | Mandatory | Description | + | ------ | ------ | ---- | --------------------------- | + | prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| **Return value** -| Type | Description | -| --------------------- | ---------- | -| Promise<string> | Promise used to return the unique directory generated.| + | Type | Description | + | --------------------- | ---------- | + | Promise<string> | Promise used to return the unique directory generated.| **Example** @@ -2050,10 +2050,10 @@ Creates a temporary directory. This API uses an asynchronous callback to return **Parameters** -| Name | Type | Mandatory | Description | -| -------- | --------------------------- | ---- | --------------------------- | -| prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| -| callback | AsyncCallback<string> | Yes | Callback invoked when a temporary directory is created asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | --------------------------- | ---- | --------------------------- | + | prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| + | callback | AsyncCallback<string> | Yes | Callback invoked when a temporary directory is created asynchronously. | **Example** @@ -2074,15 +2074,15 @@ Synchronously creates a temporary directory. **Parameters** -| Name | Type | Mandatory | Description | -| ------ | ------ | ---- | --------------------------- | -| prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| + | Name | Type | Mandatory | Description | + | ------ | ------ | ---- | --------------------------- | + | prefix | string | Yes | A randomly generated string used to replace "XXXXXX" in a directory.| **Return value** -| Type | Description | -| ------ | ---------- | -| string | Unique path generated.| + | Type | Description | + | ------ | ---------- | + | string | Unique path generated.| **Example** @@ -2101,16 +2101,16 @@ Changes file permissions based on the file descriptor. This API uses a promise t **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -2136,11 +2136,11 @@ Changes file permissions based on the file descriptor. This API uses an asynchro **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| -| callback | AsyncCallback<void> | Yes | Callback invoked when the file permissions are changed asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | ------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | + | callback | AsyncCallback<void> | Yes | Callback invoked when the file permissions are changed asynchronously. | **Example** @@ -2164,10 +2164,10 @@ Synchronously changes the file permissions based on the file descriptor. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
-  **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission.| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | +| mode | number | Yes | Permissions on the file. You can specify multiple permissions, separated using a bitwise OR operator (|).
- **0o700**: The owner has the read, write, and execute permissions.
- **0o400**: The owner has the read permission.
- **0o200**: The owner has the write permission.
- **0o100**: The owner has the execute permission.
- **0o070**: The user group has the read, write, and execute permissions.
- **0o040**: The user group has the read permission.
- **0o020**: The user group has the write permission.
- **0o010**: The user group has the execute permission.
- **0o007**: Other users have the read, write, and execute permissions.
- **0o004**: Other users have the read permission.
- **0o002**: Other users have the write permission.
- **0o001**: Other users have the execute permission. | **Example** @@ -2192,13 +2192,13 @@ Opens a file stream based on the file path. This API uses a promise to return th | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| +| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| **Return value** -| Type | Description | -| --------------------------------- | --------- | -| Promise<[Stream](#stream)> | Promise used to return the result.| + | Type | Description | + | --------------------------------- | --------- | + | Promise<[Stream](#stream)> | Promise used to return the result.| **Example** @@ -2225,7 +2225,7 @@ Opens a file stream based on the file path. This API uses an asynchronous callba | Name | Type | Mandatory| Description | | -------- | --------------------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| +| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| | callback | AsyncCallback<[Stream](#stream)> | Yes | Callback invoked when the stream is open asynchronously. | **Example** @@ -2251,13 +2251,13 @@ Synchronously opens a stream based on the file path. | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | Yes | Application sandbox path of the file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| +| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| **Return value** -| Type | Description | -| ------------------ | --------- | -| [Stream](#stream) | Stream opened.| + | Type | Description | + | ------------------ | --------- | + | [Stream](#stream) | Stream opened.| **Example** @@ -2277,16 +2277,16 @@ Opens a file stream based on the file descriptor. This API uses a promise to ret **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | + | mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| **Return value** -| Type | Description | -| --------------------------------- | --------- | -| Promise<[Stream](#stream)> | Promise used to return the result.| + | Type | Description | + | --------------------------------- | --------- | + | Promise<[Stream](#stream)> | Promise used to return the result.| **Example** @@ -2311,11 +2311,11 @@ Opens a file stream based on the file descriptor. This API uses an asynchronous **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------------- | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| -| callback | AsyncCallback<[Stream](#stream)> | Yes | Callback invoked when the stream is open asynchronously. | + | Name | Type | Mandatory | Description | + | -------- | ---------------------------------------- | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | + | mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| + | callback | AsyncCallback<[Stream](#stream)> | Yes | Callback invoked when the stream is open asynchronously. | **Example** @@ -2338,16 +2338,16 @@ Synchronously opens a stream based on the file descriptor. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ---------------------------------------- | -| fd | number | Yes | File descriptor of the target file. | -| mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ---------------------------------------- | + | fd | number | Yes | File descriptor of the target file. | + | mode | string | Yes | - **r**: Open a file for reading. The file must exist.
- **r+**: Open a file for both reading and writing. The file must exist.
- **w**: Open a file for writing. If the file exists, clear its content. If the file does not exist, create a file.
- **w+**: Open a file for both reading and writing. If the file exists, clear its content. If the file does not exist, create a file.
- **a**: Open a file in append mode for writing at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).
- **a+**: Open a file in append mode for reading or updating at the end of the file. If the file does not exist, create a file. If the file exists, write data to the end of the file (the original content of the file is reserved).| **Return value** -| Type | Description | -| ------------------ | --------- | -| [Stream](#stream) | Stream opened.| + | Type | Description | + | ------------------ | --------- | + | [Stream](#stream) | Stream opened.| **Example** @@ -2368,17 +2368,17 @@ Changes the file owner based on the file descriptor. This API uses a promise to **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the target file.| -| uid | number | Yes | New UID. | -| gid | number | Yes | New GID. | + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the target file.| + | uid | number | Yes | New UID. | + | gid | number | Yes | New GID. | **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -2404,12 +2404,12 @@ Changes the file owner based on the file descriptor. This API uses an asynchrono **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | --------------- | -| fd | number | Yes | File descriptor of the target file. | -| uid | number | Yes | New UID. | -| gid | number | Yes | New GID. | -| callback | AsyncCallback<void> | Yes | Callback invoked when the file owner is changed asynchronously.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | --------------- | + | fd | number | Yes | File descriptor of the target file. | + | uid | number | Yes | New UID. | + | gid | number | Yes | New GID. | + | callback | AsyncCallback<void> | Yes | Callback invoked when the file owner is changed asynchronously.| **Example** @@ -2433,11 +2433,11 @@ Synchronously changes the file owner based on the file descriptor. **Parameters** -| Name | Type | Mandatory | Description | -| ---- | ------ | ---- | ------------ | -| fd | number | Yes | File descriptor of the target file.| -| uid | number | Yes | New UID. | -| gid | number | Yes | New GID. | + | Name | Type | Mandatory | Description | + | ---- | ------ | ---- | ------------ | + | fd | number | Yes | File descriptor of the target file.| + | uid | number | Yes | New UID. | + | gid | number | Yes | New GID. | **Example** @@ -2467,9 +2467,9 @@ Changes the file owner (owner of the symbolic link, not the file referred to by **Return value** -| Type | Description | -| ------------------- | ---------------------------- | -| Promise<void> | Promise that returns no value.| + | Type | Description | + | ------------------- | ---------------------------- | + | Promise<void> | Promise that returns no value.| **Example** @@ -2550,14 +2550,14 @@ Listens for file or directory changes. This API uses an asynchronous callback to | Name | Type | Mandatory| Description | | -------- | --------------------------------- | ---- | ------------------------------------------------------------ | | filePath | string | Yes | Application sandbox path of the file. | -| events | number | Yes | - **1**: The file or directory is renamed.
- **2**: The file or directory is modified.
- **3**: The file or directory is modified and renamed.| +| events | number | Yes | -**1**: The file or directory is renamed.
- **2**: The file or directory is modified.
- **3**: The file or directory is modified and renamed.| | callback | AsyncCallback<number> | Yes | Called each time a change is detected. | **Return value** -| Type | Description | -| -------------------- | ---------- | -| [Watcher](#watcher7) | Promise used to return the **Watcher** instance.| + | Type | Description | + | -------------------- | ---------- | + | [Watcher](#watcher7) | Promise used to return the **Watcher** instance.| **Example** @@ -2595,7 +2595,7 @@ Provides detailed file information. Before calling a method of the **Stat** clas | ------ | ------ | ---- | ---- | ---------------------------------------- | | dev | number | Yes | No | Major device number. | | ino | number | Yes | No | File ID. Different files on the same device have different **ino**s. | -| mode | number | Yes | No | File type and permissions. The first four bits indicate the file type, and the last 12 bits indicate the permissions. The bit fields are described as follows:
- **0o170000**: mask used to obtain the file type.
- **0o140000**: The file is a socket.
- **0o120000**: The file is a symbolic link.
- **0o100000**: The file is a regular file.
- **0o060000**: The file is a block device.
- **0o040000**: The file is a directory.
- **0o020000**: The file is a character device.
- **0o010000**: The file is a named pipe (FIFO).
- **0o0700**: mask used to obtain the owner permissions.
- **0o0400**: The owner has the permission to read a regular file or a directory entry.
- **0o0200**: The owner has the permission to write a regular file or create and delete a directory entry.
- **0o0100**: The owner has the permission to execute a regular file or search for the specified path in a directory.
- **0o0070**: mask used to obtain the user group permissions.
- **0o0040**: The user group has the permission to read a regular file or a directory entry.
- **0o0020**: The user group has the permission to write a regular file or create and delete a directory entry.
- **0o0010**: The user group has the permission to execute a regular file or search for the specified path in a directory.
- **0o0007**: mask used to obtain the permissions of other users.
- **0o0004**: Other users have the permission to read a regular file or a directory entry.
- **0o0002**: Other users have the permission to write a regular file or create and delete a directory entry.
- **0o0001**: Other users have the permission to execute a regular file or search for the specified path in a directory.| +| mode | number | Yes | No | File type and permissions. The first four bits indicate the file type, and the last 12 bits indicate the permissions. The bit fields are described as follows:
- **0o170000**: mask used to obtain the file type.
- **0o140000**: The file is a socket.
- **0o120000**: The file is a symbolic link.
- **0o100000**: The file is a regular file.
- **0o060000**: The file is a block device.
- **0o040000**: The file is a directory.
- **0o020000**: The file is a character device.
- **0o010000**: The file is a named pipe, that is, FIFO.
- **0o0700**: mask used to obtain owner permissions.
- **0o0400**: The owner has the read permission on a regular file or a directory entry.
- **0o0200**: The owner has the permission to write a regular file or create and delete a directory entry.
- **0o0100**: The owner has the permission to execute a regular file or has the permission to search for the specified path in a directory.
- **0o0070**: mask used to obtain user group permissions.
- **0o0040**: The user group has the read permission on a regular file or a directory entry.
- **0o0020**: The user group has the permission to write a regular file or has the permission to create and delete a directory entry.
- **0o0010**: The user group has the permission to execute a regular file or has the permission to search for the specified path in a directory.
- **0o0007**: mask used to obtain permissions of other users.
- **0o0004**: Other user groups have the read permission on a regular file or a directory entry.
- **0o0002**: Other user groups have the permission to write a regular file or have the permission to create and delete a directory entry.
- **0o0001**: Other users have the permission to execute a regular file or search for the specified path in a directory.| | nlink | number | Yes | No | Number of hard links in the file. | | uid | number | Yes | No | User ID, that is ID of the file owner. | | gid | number | Yes | No | Group ID, that is, ID of the user group of the file. | @@ -2617,9 +2617,9 @@ Checks whether this file is a block special file. A block special file supports **Return value** -| Type | Description | -| ------- | ---------------- | -| boolean | Whether the file is a block special file.| + | Type | Description | + | ------- | ---------------- | + | boolean | Whether the file is a block special file.| **Example** @@ -2639,9 +2639,9 @@ Checks whether this file is a character special file. A character special file s **Return value** -| Type | Description | -| ------- | ----------------- | -| boolean | Whether the file is a character special file.| + | Type | Description | + | ------- | ----------------- | + | boolean | Whether the file is a character special file.| **Example** @@ -2661,9 +2661,9 @@ Checks whether this file is a directory. **Return value** -| Type | Description | -| ------- | ------------- | -| boolean | Whether the file is a directory.| + | Type | Description | + | ------- | ------------- | + | boolean | Whether the file is a directory.| **Example** @@ -2683,9 +2683,9 @@ Checks whether this file is a named pipe (or FIFO). Named pipes are used for int **Return value** -| Type | Description | -| ------- | --------------------- | -| boolean | Whether the file is an FIFO.| + | Type | Description | + | ------- | --------------------- | + | boolean | Whether the file is an FIFO.| **Example** @@ -2705,9 +2705,9 @@ Checks whether this file is a regular file. **Return value** -| Type | Description | -| ------- | --------------- | -| boolean | Whether the file is a regular file.| + | Type | Description | + | ------- | --------------- | + | boolean | Whether the file is a regular file.| **Example** @@ -2727,9 +2727,9 @@ Checks whether this file is a socket. **Return value** -| Type | Description | -| ------- | -------------- | -| boolean | Whether the file is a socket.| + | Type | Description | + | ------- | -------------- | + | boolean | Whether the file is a socket.| **Example** @@ -2749,9 +2749,9 @@ Checks whether this file is a symbolic link. **Return value** -| Type | Description | -| ------- | --------------- | -| boolean | Whether the file is a symbolic link.| + | Type | Description | + | ------- | --------------- | + | boolean | Whether the file is a symbolic link.| **Example** @@ -2797,9 +2797,9 @@ Stops the **watcher** instance. This API uses an asynchronous callback to return **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | ---------------------- | -| callback | AsyncCallback<void> | Yes | Callback invoked when **watcher** is stopped asynchronously.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | ---------------------- | + | callback | AsyncCallback<void> | Yes | Callback invoked when **watcher** is stopped asynchronously.| **Example** @@ -2829,9 +2829,9 @@ Closes the stream. This API uses a promise to return the result. **Return value** -| Type | Description | -| ------------------- | ------------- | -| Promise<void> | Promise used to return the stream close result.| + | Type | Description | + | ------------------- | ------------- | + | Promise<void> | Promise used to return the stream close result.| **Example** @@ -2856,9 +2856,9 @@ Closes the stream. This API uses an asynchronous callback to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | ------------- | -| callback | AsyncCallback<void> | Yes | Callback invoked when the stream is closed asynchronously.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | ------------- | + | callback | AsyncCallback<void> | Yes | Callback invoked when the stream is closed asynchronously.| **Example** @@ -2898,9 +2898,9 @@ Flushes the stream. This API uses a promise to return the result. **Return value** -| Type | Description | -| ------------------- | ------------- | -| Promise<void> | Promise used to return the stream flushing result.| + | Type | Description | + | ------------------- | ------------- | + | Promise<void> | Promise used to return the stream flushing result.| **Example** @@ -2925,9 +2925,9 @@ Flushes the stream. This API uses an asynchronous callback to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | ---- | -------------- | -| callback | AsyncCallback<void> | Yes | Callback invoked when the stream is asynchronously flushed.| + | Name | Type | Mandatory | Description | + | -------- | ------------------------- | ---- | -------------- | + | callback | AsyncCallback<void> | Yes | Callback invoked when the stream is asynchronously flushed.| **Example** @@ -2967,16 +2967,16 @@ Writes data into the stream. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ------------------------------- | ---- | ---------------------------------------- | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size | + | Name | Type | Mandatory | Description | + | ------- | ------------------------------- | ---- | ---------------------------------------- | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size | **Return value** -| Type | Description | -| --------------------- | -------- | -| Promise<number> | Promise used to return the length of the data written.| + | Type | Description | + | --------------------- | -------- | + | Promise<number> | Promise used to return the length of the data written.| **Example** @@ -3001,11 +3001,11 @@ Writes data into the stream. This API uses an asynchronous callback to return th **Parameters** -| Name | Type | Mandatory| Description | -| -------- | ------------------------------- | ---- | ------------------------------------------------------------ | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size| -| callback | AsyncCallback<number> | Yes | Callback invoked when the data is written asynchronously. | + | Name | Type | Mandatory| Description | + | -------- | ------------------------------- | ---- | ------------------------------------------------------------ | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size| + | callback | AsyncCallback<number> | Yes | Callback invoked when the data is written asynchronously. | **Example** @@ -3031,16 +3031,16 @@ Synchronously writes data into the stream. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ------------------------------- | ---- | ---------------------------------------- | -| buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | -| options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the string to be encoded. The default value is **utf-8**, which is the only value supported.
Constraints: offset + length <= Buffer size | + | Name | Type | Mandatory | Description | + | ------- | ------------------------------- | ---- | ---------------------------------------- | + | buffer | ArrayBuffer\|string | Yes | Data to write. It can be a string or data from a buffer. | + | options | Object | No | The options are as follows:
- **offset** (number): position of the data to write in reference to the start address of the data. The default value is **0**.
- **length** (number): length of the data to write. The default value is the buffer length minus the offset.
- **position** (number): start position to write the data in the file. By default, data is written from the current position.
- **encoding** (string): format of the data to be encoded when the data is a string. The default value is **'utf-8'**, which is the only value supported.
Constraints: offset + length <= Buffer size | **Return value** -| Type | Description | -| ------ | -------- | -| number | Length of the data written in the file.| + | Type | Description | + | ------ | -------- | + | number | Length of the data written in the file.| **Example** @@ -3061,16 +3061,16 @@ Reads data from the stream. This API uses a promise to return the result. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ----------- | ---- | ---------------------------------------- | -| buffer | ArrayBuffer | Yes | Buffer used to store the file read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | + | Name | Type | Mandatory | Description | + | ------- | ----------- | ---- | ---------------------------------------- | + | buffer | ArrayBuffer | Yes | Buffer used to store the file read. | + | options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | **Return value** -| Type | Description | -| ---------------------------------- | ------ | -| Promise<[ReadOut](#readout)> | Promise used to return the data read.| + | Type | Description | + | ---------------------------------- | ------ | + | Promise<[ReadOut](#readout)> | Promise used to return the data read.| **Example** @@ -3096,11 +3096,11 @@ Reads data from the stream. This API uses an asynchronous callback to return the **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ---------------------------------------- | ---- | ---------------------------------------- | -| buffer | ArrayBuffer | Yes | Buffer used to store the file read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | -| callback | AsyncCallback<[ReadOut](#readout)> | Yes | Callback invoked when data is read asynchronously from the stream. | + | Name | Type | Mandatory | Description | + | -------- | ---------------------------------------- | ---- | ---------------------------------------- | + | buffer | ArrayBuffer | Yes | Buffer used to store the file read. | + | options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | + | callback | AsyncCallback<[ReadOut](#readout)> | Yes | Callback invoked when data is read asynchronously from the stream. | **Example** @@ -3126,16 +3126,16 @@ Synchronously reads data from the stream. **Parameters** -| Name | Type | Mandatory | Description | -| ------- | ----------- | ---- | ---------------------------------------- | -| buffer | ArrayBuffer | Yes | Buffer used to store the file read. | -| options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | + | Name | Type | Mandatory | Description | + | ------- | ----------- | ---- | ---------------------------------------- | + | buffer | ArrayBuffer | Yes | Buffer used to store the file read. | + | options | Object | No | The options are as follows:
- **offset** (number): position to store the data read in the buffer in reference to the start address of the buffer. The default value is **0**.
- **length** (number): length of the data to read. The default value is the buffer length minus the offset.
- **position** (number): position of the data to read in the file. By default, data is read from the current position.
Constraints: offset + length <= Buffer size | **Return value** -| Type | Description | -| ------ | -------- | -| number | Length of the data read.| + | Type | Description | + | ------ | -------- | + | number | Length of the data read.| **Example** @@ -3161,9 +3161,9 @@ Reads the next directory entry. This API uses a promise to return the result. **Return value** -| Type | Description | -| -------------------------------- | ------------- | -| Promise<[Dirent](#dirent)> | Promise used to return the directory entry read.| + | Type | Description | + | -------------------------------- | ------------- | + | Promise<[Dirent](#dirent)> | Promise used to return the directory entry read.| **Example** @@ -3186,9 +3186,9 @@ Reads the next directory entry. This API uses an asynchronous callback to return **Parameters** -| Name | Type | Mandatory | Description | -| -------- | -------------------------------------- | ---- | ---------------- | -| callback | AsyncCallback<[Dirent](#dirent)> | Yes | Callback invoked when the next directory entry is asynchronously read.| + | Name | Type | Mandatory | Description | + | -------- | -------------------------------------- | ---- | ---------------- | + | callback | AsyncCallback<[Dirent](#dirent)> | Yes | Callback invoked when the next directory entry is asynchronously read.| **Example** @@ -3212,9 +3212,9 @@ Synchronously reads the next directory entry. **Return value** -| Type | Description | -| ----------------- | -------- | -| [Dirent](#dirent) | Directory entry read.| + | Type | Description | + | ----------------- | -------- | + | [Dirent](#dirent) | Directory entry read.| **Example** @@ -3295,9 +3295,9 @@ Checks whether this directory entry is a block special file. A block special fil **Return value** -| Type | Description | -| ------- | ---------------- | -| boolean | Whether the directory entry is a block special file.| + | Type | Description | + | ------- | ---------------- | + | boolean | Whether the directory entry is a block special file.| **Example** @@ -3317,9 +3317,9 @@ Checks whether a directory entry is a character special file. A character specia **Return value** -| Type | Description | -| ------- | ----------------- | -| boolean | Whether the directory entry is a character special file.| + | Type | Description | + | ------- | ----------------- | + | boolean | Whether the directory entry is a character special file.| **Example** @@ -3339,9 +3339,9 @@ Checks whether a directory entry is a directory. **Return value** -| Type | Description | -| ------- | ------------- | -| boolean | Whether the directory entry is a directory.| + | Type | Description | + | ------- | ------------- | + | boolean | Whether the directory entry is a directory.| **Example** @@ -3361,9 +3361,9 @@ Checks whether this directory entry is a named pipe (or FIFO). Named pipes are u **Return value** -| Type | Description | -| ------- | --------------- | -| boolean | Whether the directory entry is a FIFO.| + | Type | Description | + | ------- | --------------- | + | boolean | Whether the directory entry is a FIFO.| **Example** @@ -3383,9 +3383,9 @@ Checks whether a directory entry is a regular file. **Return value** -| Type | Description | -| ------- | --------------- | -| boolean | Whether the directory entry is a regular file.| + | Type | Description | + | ------- | --------------- | + | boolean | Whether the directory entry is a regular file.| **Example** @@ -3405,9 +3405,9 @@ Checks whether a directory entry is a socket. **Return value** -| Type | Description | -| ------- | -------------- | -| boolean | Whether the directory entry is a socket.| + | Type | Description | + | ------- | -------------- | + | boolean | Whether the directory entry is a socket.| **Example** @@ -3427,9 +3427,9 @@ Checks whether a directory entry is a symbolic link. **Return value** -| Type | Description | -| ------- | --------------- | -| boolean | Whether the directory entry is a symbolic link.| + | Type | Description | + | ------- | --------------- | + | boolean | Whether the directory entry is a symbolic link.| **Example** diff --git a/en/application-dev/reference/apis/js-apis-system-bluetooth.md b/en/application-dev/reference/apis/js-apis-system-bluetooth.md index ff04cbb9845aa63f7a5bb7ac12104e485e5991e9..497e0817fcfcd1ca12c43948a8907b96871a1287 100644 --- a/en/application-dev/reference/apis/js-apis-system-bluetooth.md +++ b/en/application-dev/reference/apis/js-apis-system-bluetooth.md @@ -22,7 +22,6 @@ Scans for Bluetooth Low Energy (BLE) devices nearby. This operation consumes sys **System capability**: SystemCapability.Communication.Bluetooth.Lite **Parameters** - **Table 1** StartBLEScanOptions | Name| Type| Mandatory| Description| @@ -57,7 +56,6 @@ Stops scanning for BLE devices nearby. This API is used with [bluetooth.startBLE **System capability**: SystemCapability.Communication.Bluetooth.Lite **Parameters** - **Table 2** StopBLEScanOptions | Name| Type| Mandatory| Description| diff --git a/en/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md b/en/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md index 0a33bf8135951134bb63fcd80caba5c00b77e683..ed5df7b82fd0f73742ca53af4920172c90398fe5 100644 --- a/en/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md +++ b/en/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md @@ -27,8 +27,8 @@ AlphabetIndexer(value: {arrayValue: Array<string>, selected: number}) In addition to the [universal attributes](ts-universal-attributes-size.md), the following attributes are supported. -| Name | Type | Description | -| ----------------------- | --------------- | ----------------------------------------------------------- | +| Name | Type | Description | +| ----------------------- | --------------------| ------------------------------------------------------------------| | color | [ResourceColor](ts-types.md#resourcecolor) | Font color.
Default value: **0x99000000** | | selectedColor | [ResourceColor](ts-types.md#resourcecolor) | Font color of the selected text.
Default value: **0xFF254FF7** | | popupColor | [ResourceColor](ts-types.md#resourcecolor) | Font color of the pop-up text.
Default value: **0xFF254FF7** | @@ -39,9 +39,13 @@ In addition to the [universal attributes](ts-universal-attributes-size.md), the | popupFont | [Font](ts-types.md#font) | Font style of the pop-up text.
Default value:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | | font | [Font](ts-types.md#font) | Default font style of the alphabetic index bar.
Default value:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | | itemSize | string \| number | Size of an item in the alphabetic index bar. The item is a square, and the side length needs to be set. This attribute cannot be set to a percentage.
Default value: **24.0** | -| alignStyle | IndexerAlign | Alignment style of the alphabetic index bar. Left alignment and right alignment are supported.
Default value: **IndexerAlign.Right**| +| alignStyle | value: [IndexerAlign](#indexeralign),
offset10+?: [Length](ts-types.md#length) | Alignment style of the alphabetic index bar.
**value**: alignment of the alphabetic index bar with the pop-up window, which can be left-aligned or right-aligned.
Default value: **IndexerAlign.Right**
**offset**: spacing between the pop-up window and the alphabetic index bar. A value greater than or equal to 0 is valid. If this attribute is set to a value less than 0 or is not set, the spacing is the same as **popupPosition.x**.| | selected | number | Index of the selected item.
Default value: **0**| | popupPosition | [Position](ts-types.md#position8) | Position of the pop-up window relative to the center of the indexer bar's top border.
Default value: **{x:96.0, y:48.0}**| +| popupSelectedColor10+ | [ResourceColor](ts-types.md#resourcecolor) | Color of the selected text excluding the initial letter in the pop-up window.
Default value: **#FF182431**| +| popupUnselectedColor10+ | [ResourceColor](ts-types.md#resourcecolor) | Color of the unselected text in the pop-up window.
Default value: **#FF182431**| +| popupItemFont10+ | [Font](ts-types.md#font) | Font of the text excluding the initial letter in the pop-up window.
Default value:
{
size:24,
style:FontStyle.Medium
}| +| popupItemBackgroundColor10+ | [ResourceColor](ts-types.md#resourcecolor) | Background color of the portion excluding the initial letter in the pop-up window.
Default value: **#FFFFFF**| ## IndexerAlign diff --git a/en/application-dev/reference/errorcodes/Readme-EN.md b/en/application-dev/reference/errorcodes/Readme-EN.md index 6af20aafd50cecbcc2a3a3ad51553d542cf428ae..769c7d3905a01f7709e6a47c14590b8658f91f9d 100644 --- a/en/application-dev/reference/errorcodes/Readme-EN.md +++ b/en/application-dev/reference/errorcodes/Readme-EN.md @@ -57,10 +57,11 @@ - [Network Sharing Error Codes](errorcode-net-sharing.md) - [Policy Management Error Codes](errorcode-net-policy.md) - Connectivity - - [Wi-Fi Error Codes](errorcode-wifi.md) + - [Bluetooth Error Codes](errorcode-bluetoothManager.md) + - [Wi-Fi Error Codes](errorcode-wifi.md) - [NFC Error Codes](errorcode-nfc.md) - [RPC Error Codes](errorcode-rpc.md) -- Basic Features + - Basic Features - [Accessibility Error Codes](errorcode-accessibility.md) - [FaultLogger Error Codes](errorcode-faultlogger.md) - [Application Event Logging Error Codes](errorcode-hiappevent.md) diff --git a/en/application-dev/reference/errorcodes/errorcode-bluetoothManager.md b/en/application-dev/reference/errorcodes/errorcode-bluetoothManager.md new file mode 100644 index 0000000000000000000000000000000000000000..8cbc0165968e394c886c332e1c432bace9d5f69b --- /dev/null +++ b/en/application-dev/reference/errorcodes/errorcode-bluetoothManager.md @@ -0,0 +1,131 @@ +# Bluetooth Error Codes + +> **NOTE** +> +> This topic describes only module-specific error codes. For details about universal error codes, see [Universal Error Codes](errorcode-universal.md). + +## 2900001 + +**Error Message** + +Service stopped. + +**Description** + +The Bluetooth service is stopped, and the APIs related to the Bluetooth service cannot be called. + +**Possible Causes** + +The Bluetooth service fails to start. + +**Solution** + +Start the Bluetooth service. + +## 2900003 + +**Error Message** + +Bluetooth switch is off. + +**Description** + +Bluetooth is disabled. + +**Possible Causes** + +Bluetooth is disabled. + +**Solution** + +Enable Bluetooth. + +## 2900004 + +**Error Message** + +Profile is not supported. + +**Description** + +The profile is not supported. + +**Possible Causes** + +The profile is not supported by the device. + +**Solution** + +Check whether the device supports the profile. Use a profile supported by the device. + +## 2900099 + +**Error Message** + +Operation failed. + +**Description** + +The operation failed. + +**Possible Causes** + +The profile is not supported by the device. + +**Solution** + +Perform this operation again. + +## 2901000 + +**Error Message** + +Read forbidden. + +**Description** + +The read operation is not allowed. + +**Possible Causes** + +The caller does not have the read permission. + +**Solution** + +Check whether the caller has the read permission. + +## 2901001 + +**Error Message** + +Write forbidden. + +**Description** + +The write operation is not allowed. + +**Possible Causes** + +The caller does not have the write permission. + +**Solution** + +Check whether the caller has the write permission. + +## 2901054 + +**Error Message** + +IO error. + +**Description** + +The I/O operation failed. + +**Possible Causes** + +The I/O transmission is abnormal. + +**Solution** + +Perform this operation again. diff --git a/zh-cn/application-dev/application-dev-guide.md b/zh-cn/application-dev/application-dev-guide.md index 65973cf42728ae1cdcfcac794a3617f292f8d9e7..000525a35348eed5f6dc4f6d08862f2186569555 100644 --- a/zh-cn/application-dev/application-dev-guide.md +++ b/zh-cn/application-dev/application-dev-guide.md @@ -4,7 +4,7 @@ 在应用开发的文档中,您可以获取到如下几方面的内容: -### 入门 +## 入门 [入门](quick-start/start-overview.md)可以帮助开发者了解应用开发的基本方法。 @@ -12,7 +12,7 @@ 开发的基础知识包含了OpenHarmony应用程序的包结构配置文件说明,以及资源文件的使用指导。 -### 开发 +## 开发 为了帮助开发者更好的理解OpenHarmony提供的能力,我们对重点功能提供了开发指导,辅助开发者完成应用的开发。 @@ -32,28 +32,27 @@ - [网络与连接](connectivity/ipc-rpc-overview.md) - [电话服务](telephony/telephony-overview.md) - [数据管理](database/database-mdds-overview.md) +- [文件管理](file-management/medialibrary-overview.md) - [任务管理](task-management/background-task-overview.md) - [设备管理](device/usb-overview.md) - [设备使用信息统计](device-usage-statistics/device-usage-statistics-overview.md) - [DFX](dfx/hiappevent-guidelines.md) - [国际化](internationalization/international-overview.md) - [应用测试](application-test/arkxtest-guidelines.md) +- [一次开发,多端部署](key-features/multi-device-app-dev/foreword.md) - [IDL工具规格及使用说明书](IDL/idl-guidelines.md) - [Native API的相关指导](napi/napi-guidelines.md) -- [文件管理](file-management/medialibrary-overview.md) -- [一次开发,多端部署](key-features/multi-device-app-dev/foreword.md) - -### 工具 +## 工具 DevEco Studio工具是OpenHarmony应用开发的推荐IDE工具。 在[工具](https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ohos-deveco-studio-overview-0000001263280421)部分,讲解了DevEco Studio工具的详细用法,包括使用该工具进行工程创建、应用签名、应用调试、应用安装运行的指导。 -### 示例教程 +## 示例教程 我们提供了[Sample工程](https://gitee.com/openharmony/applications_app_samples/blob/master/README_zh.md)和[Codelab](https://gitee.com/openharmony/codelabs/blob/master/README.md)这两种形式的示例教程,为开发者提供更丰富的开发参考,辅助开发者理解功能逻辑,提升开发效率。 -### API参考 +## API参考 API参考提供了OpenHarmony全量组件和接口的参考文档,可以帮助开发者快速查找到指定接口的详细描述和调用方法。 @@ -63,8 +62,8 @@ API参考提供了OpenHarmony全量组件和接口的参考文档,可以帮助 - [组件参考(兼容JS的类Web开发范式-ArkUI.Full)](reference/arkui-js/js-components-common-attributes.md) - [组件参考(兼容JS的类Web开发范式-ArkUI.Lite)](reference/arkui-js-lite/js-framework-file.md) - [JS服务卡片UI组件参考](reference/js-service-widget-ui/js-service-widget-file.md) -- [接口参考(JS及TS API)](reference/apis/js-apis-ability-dataUriUtils.md) +- [接口参考(ArkTS及JS API)](reference/apis/development-intro.md) - 接口参考(Native API) - - [OpenHarmony Native API](reference/native-apis/_o_h___native_x_component.md) - - [Native API标准库](reference/native-lib/third_party_libc/musl.md) - - [Node_API](reference/native-lib/third_party_napi/napi.md) + - [OpenHarmony Native API](reference/native-apis/_o_h___native_x_component.md) + - [Native API标准库](reference/native-lib/third_party_libc/musl.md) + - [Node_API](reference/native-lib/third_party_napi/napi.md) diff --git a/zh-cn/application-dev/application-models/create-pageability.md b/zh-cn/application-dev/application-models/create-pageability.md index 75ab7e6cac005796a2156e48db577400b2e61ed6..c653379c1c938e6fd595f3acd4f66b5061be577b 100644 --- a/zh-cn/application-dev/application-models/create-pageability.md +++ b/zh-cn/application-dev/application-models/create-pageability.md @@ -76,22 +76,22 @@ FA模型中,可以通过featureAbility的getContext接口获取应用上下文 通过getContext获取应用上下文并获取分布式目录的示例如下: ```ts -import featureAbility from '@ohos.ability.featureAbility' -import fileIo from '@ohos.fileio' +import featureAbility from '@ohos.ability.featureAbility'; +import fs from '@ohos.file.fs'; (async () => { - let dir: string + let dir: string; try { - console.info('Begin to getOrCreateDistributedDir') - dir = await featureAbility.getContext().getOrCreateDistributedDir() + console.info('Begin to getOrCreateDistributedDir'); + dir = await featureAbility.getContext().getOrCreateDistributedDir(); console.info('distribute dir is ' + dir) } catch (error) { - console.error('getOrCreateDistributedDir failed with ' + error) + console.error('getOrCreateDistributedDir failed with ' + error); } let fd: number; let path = dir + "/a.txt"; - fd = fileIo.openSync(path, 0o2 | 0o100, 0o666); - fileIo.close(fd); + fd = fs.openSync(path, fs.OpenMode.READ_WRITE).fd; + fs.close(fd); })() ``` diff --git a/zh-cn/application-dev/application-models/explicit-implicit-want-mappings.md b/zh-cn/application-dev/application-models/explicit-implicit-want-mappings.md index 067419b0acce2d711705ece7587e3cd77a879b59..f7a39ebf2ea7b80ab710c475c14c92ab438c097c 100644 --- a/zh-cn/application-dev/application-models/explicit-implicit-want-mappings.md +++ b/zh-cn/application-dev/application-models/explicit-implicit-want-mappings.md @@ -88,10 +88,6 @@ 调用方传入的want参数中设置uri和type参数发起组件启动请求,系统会遍历当前系统已安装的组件列表,并逐个匹配待匹配Ability的skills配置中的uris数组,如果待匹配Ability的skills配置中的uris数组中只要有一个可以匹配调用方传入的want参数中设置的uri和type即为匹配成功。 -**图3** want参数中uri和type皆不为空时的匹配规则 - -![want-uri-type1](figures/want-uri-type1.png) - 实际应用中,uri和type共存在四种情况,下面将讲解四种情况的具体匹配规则: - 调用方传入的want参数的uri和type都为空。 @@ -111,6 +107,13 @@ 1. 如果待匹配Ability的skills配置中的uris数组为空,匹配失败。 2. 如果待匹配Ability的skills配置中的uris数组存在一条数据[uri匹配](#uri匹配规则)和[type匹配](#type匹配规则)需要均匹配成功,则匹配成功,否则匹配失败。 +最左uri匹配:当配置文件待匹配Ability的skills配置中的uris数组中只配置scheme;或者只配置scheme和host;或者只配置scheme,host和port时。 +传入want参数的uri的最左边依次需要和scheme;或者scheme和host;或者scheme,host,port都匹配,才满足最左uri匹配。 + + **图3** want参数中uri和type皆不为空时的匹配规则 + + ![want-uri-type1](figures/want-uri-type1.png) + 下图为了简化描述,称want中传入的uri为w_uri,称want中传入的type为w_type, 待匹配Ability的skills配置中uris为s_uris,其中每个元素为s_uri;按自上而下顺序匹配。 @@ -128,7 +131,9 @@ - 如果s_uri的host为空,当w_uri和s_uri的scheme相同时匹配成功,否则匹配失败; -- 如果s_uri的path、pathStartWith和pathRegex都为空,当w_uri和s_uri完全相同时匹配成功,否则匹配失败; +- 如果s_uri的port为空,当w_uri和s_uri中的scheme和host相同时匹配成功,否则匹配失败; + +- 如果s_uri的path、pathStartWith和pathRegex都为空,当w_uri和s_uri中的scheme,host和port相同时匹配成功,否则匹配失败; - 如果s_uri的path不为空,当w_uri和s_uri**全路径表达式**相同时匹配成功,否则继续进行pathStartWith的匹配; @@ -144,6 +149,11 @@ > - **前缀表达式**:`scheme://host:port/pathStartWith` > > - **正则表达式**:`scheme://host:port/pathRegex` +> +> - **前缀uri表达式**:当配置文件只配置scheme,或者只配置scheme和host,或者只配置scheme,host和port时,参数传入以配置文件为前缀的Uri +> * `scheme://` +> * `scheme://host` +> * `scheme://host:port` ### type匹配规则 diff --git a/zh-cn/application-dev/application-models/figures/want-uri-type1.png b/zh-cn/application-dev/application-models/figures/want-uri-type1.png index 6dd4117fb44fb8010e4fdbffff5739634680bcd7..3282188c0fa241cbe484394e14597c7cd928941a 100644 Binary files a/zh-cn/application-dev/application-models/figures/want-uri-type1.png and b/zh-cn/application-dev/application-models/figures/want-uri-type1.png differ diff --git a/zh-cn/application-dev/database/database-datashare-guidelines.md b/zh-cn/application-dev/database/database-datashare-guidelines.md index cfd6410141c17dc3837f4d24068350e0bbaed263..3ed0ccedd53ccc1a959110440edb42232534266b 100644 --- a/zh-cn/application-dev/database/database-datashare-guidelines.md +++ b/zh-cn/application-dev/database/database-datashare-guidelines.md @@ -264,6 +264,38 @@ DataShare即数据共享模块,提供了向其他应用共享以及管理其 console.log('dsHelper delete result: ' + data); }); ``` +## 限制 + +为了降低DataShareExtensionAbility能力被三方应用滥用的风险,在DataShareExtensionAbility中限制以下接口的调用 +- ./application/UIAbilityContext +- @ohos.ability.featureAbility.d.ts +- @ohos.ability.particleAbility.d.ts +- @ohos.account.osAccount.d.ts +- @ohos.backgroundTaskManager.d.ts +- @ohos.bluetooth.d.ts +- @ohos.bluetoothManager.d.ts +- @ohos.connectedTag.d.ts +- @ohos.continuation.continuationManage.d.ts +- @ohos.mutilmedia.audio.d.ts +- @ohos.multimedia.carema.d.ts +- @ohos.nfc.cardEmulation.d.ts +- @ohos.nfc.controller.d.ts +- @ohos.nfc.tag.d.ts +- @ohos.request.d.ts +- @ohos.resourceschedule.backgroundTaskManager.d.ts +- @ohos.telephony.call.d.ts +- @ohos.telephony.data.d.ts +- @ohos.telephony.observer.d.ts +- @ohos.telephony.radio.d.ts +- @ohos.telephony.sim.d.ts +- @ohos.telephony.sms.d.ts +- @ohos.vibrator.d.ts +- @ohos.wallpaper.d.ts +- @ohos.wifi.d.ts +- @ohos.wifiext.d.ts +- @ohos.wifiManager.d.ts +- @ohos.wifiManagerExt.d.ts +- @ohos.window.d.ts ## 相关示例 diff --git a/zh-cn/application-dev/quick-start/Readme-CN.md b/zh-cn/application-dev/quick-start/Readme-CN.md index ef1c7b868f3a4be8ee86d36c2c3109f0011a314b..7447243c41ecf4b6f0c3a73c18f51941802d0ece 100755 --- a/zh-cn/application-dev/quick-start/Readme-CN.md +++ b/zh-cn/application-dev/quick-start/Readme-CN.md @@ -27,6 +27,7 @@ - [应用间HSP开发指导(仅对系统应用开放)](cross-app-hsp.md) - 原子化服务 - [原子化服务开发指导](atomicService.md) + - [原子化服务空间管理(仅对系统应用开放)](atomicService-aging.md) - 应用程序包快速修复 - [快速修复概述](quickfix-principles.md) - [快速修复调试指导](quickfix-debug.md) diff --git a/zh-cn/application-dev/quick-start/application-package-structure-fa.md b/zh-cn/application-dev/quick-start/application-package-structure-fa.md index 3e75f3b114fc2865f54ebbcc70bd0f6e9d39ced6..a8fb2e327d19ad114f265994a07716ceb1d6ad72 100644 --- a/zh-cn/application-dev/quick-start/application-package-structure-fa.md +++ b/zh-cn/application-dev/quick-start/application-package-structure-fa.md @@ -11,7 +11,7 @@ FA模型与Stage模型不同之处在于HAP内部文件存放位置不同,FA - assets是HAP所有的资源文件、库文件和代码文件的集合,内部可以分为entry和js文件夹。entry文件夹中存放的是resources目录和resources.index文件。 -- resources目录用于存放应用的资源文件(字符串、图片等),便于开发者使用和维护,详见[资源文件的使用](../key-features/multi-device-app-dev/resource-usage.md)。 +- resources目录用于存放应用的资源文件(字符串、图片等),便于开发者使用和维护,详见[资源文件的使用](resource-categories-and-access.md)。 - resources.index是资源索引表,由IDE调用SDK工具生成。 diff --git a/zh-cn/application-dev/quick-start/application-package-structure-stage.md b/zh-cn/application-dev/quick-start/application-package-structure-stage.md index 41c5bc2431533a746a6367d2a90fa64809036ded..485f83c1a731e7b0697a1d2e1fe6358492eb2f02 100644 --- a/zh-cn/application-dev/quick-start/application-package-structure-stage.md +++ b/zh-cn/application-dev/quick-start/application-package-structure-stage.md @@ -21,7 +21,7 @@ - 打包后的HAP结构包括ets、libs、resources等文件夹和resources.index、module.json、pack.info等文件。 - ets目录用于存放应用代码编译后的字节码文件。 - libs目录用于存放库文件。库文件是OpenHarmony应用依赖的第三方代码(.so二进制文件)。 - - resources目录用于存放应用的资源文件(字符串、图片等),便于开发者使用和维护,详见[资源文件的使用](../key-features/multi-device-app-dev/resource-usage.md)。 + - resources目录用于存放应用的资源文件(字符串、图片等),便于开发者使用和维护,详见[资源文件的使用](resource-categories-and-access.md)。 - resources.index是资源索引表,由IDE编译工程时生成。 - module.json是HAP的配置文件,内容由工程配置中的module.json5和app.json5组成,该文件是HAP中必不可少的文件。IDE会自动生成一部分默认配置,开发者按需修改其中的配置。详细字段请参见[应用配置文件](application-configuration-file-overview-stage.md)。 - pack.info是Bundle中用于描述每个HAP属性的文件,例如app中的bundleName和versionCode信息、module中的name、type和abilities等信息,由IDE工具生成Bundle包时自动生成。 diff --git a/zh-cn/application-dev/quick-start/atomicService-aging.md b/zh-cn/application-dev/quick-start/atomicService-aging.md new file mode 100644 index 0000000000000000000000000000000000000000..6386a526006120cfd6c94bb18252137fedf03e78 --- /dev/null +++ b/zh-cn/application-dev/quick-start/atomicService-aging.md @@ -0,0 +1,72 @@ +# 原子化服务空间管理(仅对系统应用开放) + +从用户的角度,用户不感知原子化服务的安装,也不会主动的卸载原子化服务;从操作系统的角度,原子化服务使用[免安装特性](../reference/apis/js-apis-freeInstall.md),但并不是真的不安装。因此,为了减少系统空间占用,需要对原子化服务有序管理。 + +## 原子化服务数据目录配额管理 + +对原子化服务的数据沙箱目录设置存储配额上限,可通过系统参数persist.sys.bms.aging.policy.atomicservice.datasize.threshold获得,默认值1024MB,当超过该配额限制时,写入数据返回失败。 + +查看和设置系统参数可使用[param get/set](../../device-dev/subsystems/subsys-boot-init-plugin.md)命令 + +## 主动销毁原子化服务 + +可以通过[uninstall](../reference/apis/js-apis-installer.md#bundleinstalleruninstall)接口主动销毁原子化服务。 + +**示例:** + +```ts +import installer from '@ohos.bundle.installer'; +let bundleName = 'com.ohos.demo'; +let installParam = { + userId: 100 +}; + +try { + installer.getBundleInstaller().then(data => { + data.uninstall(bundleName, installParam, err => { + if (err) { + console.error('uninstall failed:' + err.message); + } else { + console.info('uninstall successfully.'); + } + }); + }).catch(error => { + console.error('getBundleInstaller failed. Cause: ' + error.message); + }); +} catch (error) { + console.error('getBundleInstaller failed. Cause: ' + error.message); +} +``` + +## 自动销毁原子化服务 + +### 自动销毁时机 + +- 定时器触发,其间隔可通过系统参数persist.sys.bms.aging.policy.timer.interval获得,默认8小时;要求剩余电量必须大于等于系统参数persist.sys.bms.aging.policy.battery.threshold,默认10% +- 安装原子化服务时触发 +- 修改原子化服务可清理标识时触发 + +### 销毁条件 + +#### 原子化服务可销毁 + +- 通过[isHapModuleRemovable](../reference/apis/js-apis-freeInstall.md#ishapmoduleremovable)返回true +- 非运行状态 + +#### 销毁开始条件 + +当前系统所有原子化服务占用空间(包含安装目录和数据目录)大于系统参数persist.sys.bms.aging.policy.data.size.threshold,默认500MB + +#### 销毁结束条件 + +当前系统所有原子化服务占用空间(包含安装目录和数据目录)小于系统参数persist.sys.bms.aging.policy.data.size.threshold的80% + +### 自动销毁顺序 + +- 将可销毁的原子化服务按照最近使用时间区分到不同时间区域内,如[0, 10), [10, 20), [20, 30), [30, ~), 可通过系统参数persist.sys.bms.aging.policy.recently.used.threshold获得时间区域单位,默认是1天; +- 对于两个可销毁的原子化服务,若处于同一时间区域内优先销毁使用频率低的原子化服务;若处于不同时间区域内优先销毁长时间未使用的原子化服务。 + +### 分级自动销毁 + +- 当满足自动销毁开始条件时,按照销毁顺序优先销毁原子化服务的cache目录,若满足销毁结束条件,则退出; +- 若不满足,则按照销毁顺序再次清理原子化服务的其他目录。 \ No newline at end of file diff --git a/zh-cn/application-dev/quick-start/figures/application_details.jpg b/zh-cn/application-dev/quick-start/figures/application_details.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17b7172bc5bea2f4e16af8d385834930ca4bf49f Binary files /dev/null and b/zh-cn/application-dev/quick-start/figures/application_details.jpg differ diff --git a/zh-cn/application-dev/quick-start/module-configuration-file.md b/zh-cn/application-dev/quick-start/module-configuration-file.md index 0743763adda6e0a788c5fc9df8d2ac9fc79393eb..86ccf113fdb68fe1fd08b63af6bb615dd29b82ef 100644 --- a/zh-cn/application-dev/quick-start/module-configuration-file.md +++ b/zh-cn/application-dev/quick-start/module-configuration-file.md @@ -204,14 +204,15 @@ deviceTypes示例: abilities标签描述UIAbility组件的配置信息,标签值为数组类型,该标签下的配置只对当前UIAbility生效。 -**OpenHarmony中不允许应用隐藏启动图标** +**OpenHarmony中不允许应用隐藏入口图标** -OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置启动图标,那么系统将应用app.json中的icon作为启动图标,并显示在桌面上。
-用户点击该图标,将跳转到Settings的应用管理中对应的应用详情页面中。
-如果应用想要隐藏启动图标,需要配置AllowAppDesktopIconHide应用特权,具体配置方式参考[应用特权配置指南](../../device-dev/subsystems/subsys-app-privilege-config-guide.md)。 +OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置入口图标,那么系统将应用app.json中的icon作为入口图标,并显示在桌面上。
+用户点击该图标,将跳转到设置应用管理中对应的应用详情页面(图1)中。
+如果应用想要隐藏入口图标,需要配置AllowAppDesktopIconHide应用特权,具体配置方式参考[应用特权配置指南](../../device-dev/subsystems/subsys-app-privilege-config-guide.md)。 +**场景说明:** 该功能能防止一些恶意应用,故意配置无入口图标,导致用户找不到软件所在的位置,无法操作卸载应用,在一定程度上保证用户的手机安全 -**启动图标的设置:** 需要在配置文件(module.json5)中abilities配置下设置icon,label以及skills,而且skills的配置下的必须同时包含“ohos.want.action.home” 和 “entity.system.home”: +**入口图标的设置:** 需要在配置文件(module.json5)中abilities配置下设置icon,label以及skills,而且skills的配置下的必须同时包含“ohos.want.action.home” 和 “entity.system.home”: ``` { "module":{ @@ -233,32 +234,34 @@ OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置启动 } ``` -**启动图标的查询** -* HAP中包含Ability - * 配置文件(module.json5)中abilities配置中设置了启动图标 +**入口图标及入口标签的显示规则** +* HAP中包含UIAbility + * 配置文件(module.json5)中abilities配置中设置了入口图标 * 该应用没有隐藏图标的特权 - * 返回的桌面图标为该Ability配置的图标 - * 返回的桌面Label为该Ability配置的Label(如果没有配置Label,返回包名) - * 返回的组件名为该Ability的组件名 - * 用户点击该桌面图标,页面跳转到该Ability首页 + * 显示桌面图标为该UIAbility配置的图标 + * 显示桌面Label为该UIAbility配置的Label(如果没有配置Label,返回包名) + * 显示组件名为该UIAbility的组件名 + * 用户点击该桌面图标,页面跳转到该UIAbility首页 * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。 - * 配置文件(module.json5)中abilities配置中未设置启动图标 + * 配置文件(module.json5)中abilities配置中未设置入口图标 * 该应用没有隐藏图标的特权 - * 返回的桌面图标为app配置下的图标(app.json中icon为必填项) - * 返回的桌面Label为app配置下的label(app.json中label为必填项) - * 返回的组件名为应用详情页面的组件名(该组件为系统内置) - * 用户点击该桌面图标,页面跳转到该应用的详情页面 + * 显示桌面图标为app配置下的图标(app.json中icon为必填项) + * 显示桌面Label为app配置下的label(app.json中label为必填项) + * 用户点击该桌面图标,页面跳转到该应用的详情页面(图1) * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。 -* HAP中不包含Ability +* HAP中不包含UIAbility * 该应用没有隐藏图标的特权 - * 返回的桌面图标为app配置下的图标(app.json中icon为必填项) - * 返回的桌面Label为app配置下的label(app.json中label为必填项) - * 返回的组件名为应用详情页面的组件名(该组件为系统内置) - * 用户点击该桌面图标,页面跳转到该应用的详情页面 + * 显示桌面图标为app配置下的图标(app.json中icon为必填项) + * 显示桌面Label为app配置下的label(app.json中label为必填项) + * 用户点击该桌面图标,页面跳转到该应用的详情页面(图1) * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。

+ +应用的详情页例图 + +![应用的详情页例图](figures/application_details.jpg) **表4** **abilities标签说明** @@ -394,39 +397,6 @@ skills示例: } ``` -**增强隐式查询功能** - -支持Uri级别的前缀匹配。 -当配置文件只配置scheme,或者只配置scheme和host,或者只配置scheme,host和port时,参数传入以配置文件为前缀的Uri,配置成功。 - - - * 查询功能增强涉及以下接口
- [@ohos.bundle.bundleManager](../reference/apis/js-apis-bundleManager.md#bundlemanagerqueryabilityinfo)
- 1. function queryAbilityInfo(want: Want, abilityFlags: number, callback: AsyncCallback>): void;
- 2. function queryAbilityInfo(want: Want, abilityFlags: number, userId: number, callback: AsyncCallback>): void;
- 3. function queryAbilityInfo(want: Want, abilityFlags: number, userId?: number): Promise>; - * 配置要求
- abilities -> skills -> uris对象
- 配置1: 只配置 scheme = 'http'
- 配置2: 只配置 ( scheme = 'http' ) + ( host = 'example.com' )
- 配置3: 只配置 ( scheme = 'http' ) + ( host = 'example.com' ) + ( port = '8080' ) - * 前缀匹配
- 参数[want](../application-models/want-overview.md)下uri,调用queryAbilityInfo查询接口
- 1. uri = 'https://' 无匹配
- 2. uri = 'http://' 可以匹配 配置1
- 3. uri = 'https://example.com' 无匹配
- 4. uri = 'https://exa.com' 无匹配
- 5. uri = 'http://exa.com' 可以匹配 配置1
- 6. uri = 'http://example.com' 可以匹配 配置1 配置2
- 7. uri = 'https://example.com:8080' 无匹配
- 8. uri = 'http://exampleaa.com:8080' 可以匹配 配置1
- 9. uri = 'http://example.com:9180' 可以匹配 配置1 配置2
- 10. uri = 'http://example.com:8080' 可以匹配 配置1 配置2 配置3
- 11. uri = 'https://example.com:9180/path' 无匹配
- 12. uri = 'http://exampleap.com:8080/path' 可以匹配 配置1
- 13. uri = 'http://example.com:9180/path' 可以匹配 配置1 配置2
- 14. uri = 'http://example.com:8080/path' 可以匹配 配置1 配置2 配置3
- ## extensionAbilities标签 描述extensionAbilities的配置信息,标签值为数组类型,该标签下的配置只对当前extensionAbilities生效。 diff --git a/zh-cn/application-dev/quick-start/module-structure.md b/zh-cn/application-dev/quick-start/module-structure.md index 5da4b2204179728ef1ddfd900fcaf75066256d98..69afd5d9b435430d8ca9d1b014be649e5de0c700 100644 --- a/zh-cn/application-dev/quick-start/module-structure.md +++ b/zh-cn/application-dev/quick-start/module-structure.md @@ -190,14 +190,15 @@ metadata对象示例: ## abilities对象的内部结构 -**OpenHarmony中不允许应用隐藏启动图标** +**OpenHarmony中不允许应用隐藏入口图标** -OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置启动图标,那么系统会给该应用创建一个默认的图标显示在桌面上;
-用户点击该图标,将跳转到Settings的应用管理中对应的应用详情页面中。
-如果应用想要隐藏启动图标,需要配置AllowAppDesktopIconHide应用特权,具体配置方式参考[应用特权配置指南](../../device-dev/subsystems/subsys-app-privilege-config-guide.md)。 +OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置入口图标,那么系统会给该应用创建一个默认的图标显示在桌面上;
+用户点击该图标,将跳转到Settings的应用管理中对应的应用详情页面(图1)中。
+如果应用想要隐藏入口图标,需要配置AllowAppDesktopIconHide应用特权,具体配置方式参考[应用特权配置指南](../../device-dev/subsystems/subsys-app-privilege-config-guide.md)。 +**场景说明:** 该功能能防止一些恶意应用,故意配置无入口图标,导致用户找不到软件所在的位置,无法操作卸载应用,在一定程度上保证用户的手机安全 -**启动图标的设置:** 需要在配置文件(config.json)中abilities配置下设置icon,label以及skills,而且skills的配置下必须同时包含“ohos.want.action.home” 和 “entity.system.home”: +**入口图标的设置:** 需要在配置文件(config.json)中abilities配置下设置icon,label以及skills,而且skills的配置下必须同时包含“ohos.want.action.home” 和 “entity.system.home”: ``` { "module":{ @@ -220,34 +221,36 @@ OpenHarmony系统对无图标应用严格管控。如果HAP中没有配置启动 } ``` -**启动图标的查询** -* HAP中包含Page类型的Ability - * 配置文件(config.json)中abilities配置中设置了启动图标 +**入口图标及入口标签的显示规则** +* HAP中包含Page类型的PageAbility + * 配置文件(config.json)中abilities配置中设置了入口图标 * 该应用没有隐藏图标的特权 - * 返回的桌面图标为该Ability配置的图标 - * 返回的桌面Label为该Ability配置的Label(如果没有配置Label,返回包名) - * 返回的组件名为该Ability的组件名 - * 用户点击该桌面图标,页面跳转到该Ability首页 + * 显示桌面图标为该PageAbility配置的图标 + * 显示桌面Label为该PageAbility配置的Label(如果没有配置Label,返回包名) + * 显示组件名为该PageAbility的组件名 + * 用户点击该桌面图标,页面跳转到该PageAbility首页 * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。 - * 配置文件(config.json)中abilities配置中未设置启动图标 + * 配置文件(config.json)中abilities配置中未设置入口图标 * 该应用没有隐藏图标的特权 - * 返回的桌面图标为系统默认图标 - * 返回的桌面Label为该应用的包名 - * 返回的组件名为应用详情页面的组件名(该组件为系统内置) - * 用户点击该桌面图标,页面跳转到该应用的详情页面 + * 显示桌面图标为系统默认图标 + * 显示桌面Label为该应用的包名 + * 用户点击该桌面图标,页面跳转到该应用的详情页面(图1) * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。 -* HAP中不包含Page类型的Ability +* HAP中不包含Page类型的PageAbility * 该应用没有隐藏图标的特权 - * 返回的桌面图标为系统默认图标 - * 返回的桌面Label为该应用的包名 - * 返回的组件名为应用详情页面的组件名(该组件为系统内置) - * 用户点击该桌面图标,页面跳转到该应用的详情页面 + * 显示桌面图标为系统默认图标 + * 显示桌面Label为该应用的包名 + * 用户点击该桌面图标,页面跳转到该应用的详情页面(图1) * 该应用具有隐藏图标的特权 * 桌面查询时不返回应用信息,不会在桌面上显示对应的图标。 -注:应用详情页面中显示的图标与label,可能与桌面上显示的不同。如果非Page类型的ability配置了入口图标和label,那么详情页中显示的即为配置的。

+注:应用详情页面(图1)中显示的label可能与桌面上显示的不同。如果非Page类型的PageAbility配置了入口图标和label,那么详情页中显示的即为配置的。

+ +图1 + +![应用的详情页例图](figures/application_details.jpg) **表8** **abilities对象的内部结构说明** @@ -411,40 +414,6 @@ skills示例: ] ``` -**增强隐式查询功能** - -支持Uri级别的前缀匹配。 -当配置文件只配置scheme,或者只配置scheme和host,或者只配置scheme,host和port时,参数传入以配置文件为前缀的Uri,配置成功。 - - * 查询功能增强涉及以下接口
- [@ohos.bundle.bundleManager](../reference/apis/js-apis-bundleManager.md#bundlemanagerqueryabilityinfo)
- 1. function queryAbilityInfo(want: Want, abilityFlags: number, callback: AsyncCallback>): void;
- 2. function queryAbilityInfo(want: Want, abilityFlags: number, userId: number, callback: AsyncCallback>): void;
- 3. function queryAbilityInfo(want: Want, abilityFlags: number, userId?: number): Promise>; - * 配置要求
- abilities -> skills -> uris对象
- 配置1: 只配置 scheme = 'http'
- 配置2: 只配置 ( scheme = 'http' ) + ( host = 'www.example.com' )
- 配置3: 只配置 ( scheme = 'http' ) + ( host = 'www.example.com' ) + ( port = '8080' ) - * 前缀匹配
- [want](../application-models/want-overview.md)下uri,调用queryAbilityInfo查询接口
- 1. uri = 'https://' 无匹配
- 2. uri = 'http://' 可以匹配 配置1
- 3. uri = 'https://www.example.com' 无匹配
- 4. uri = 'https://www.exa.com' 无匹配
- 5. uri = 'http://www.exa.com' 可以匹配 配置1
- 6. uri = 'http://www.example.com' 可以匹配 配置1 配置2
- 7. uri = 'https://www.example.com:8080' 无匹配
- 8. uri = 'http://www.exampleaa.com:8080' 可以匹配 配置1
- 9. uri = 'http://www.example.com:9180' 可以匹配 配置1 配置2
- 10. uri = 'http://www.example.com:8080' 可以匹配 配置1 配置2 配置3
- 11. uri = 'https://www.example.com:9180/query/student/name' 无匹配
- 12. uri = 'http://www.exampleap.com:8080/query/student/name' 可以匹配 配置1
- 13. uri = 'http://www.example.com:9180/query/student/name' 可以匹配 配置1 配置2
- 14. uri = 'http://www.example.com:8080/query/student/name' 可以匹配 配置1 配置2 配置3
- - - ## reqPermissions权限申请 **表12** **reqPermissions权限申请字段说明** diff --git a/zh-cn/application-dev/reference/apis/Readme-CN.md b/zh-cn/application-dev/reference/apis/Readme-CN.md index 07d9d19b88f139b835a153c436013f92f3257148..95ad5e7b6db5ff249511dca9841dae46e6c9b66d 100755 --- a/zh-cn/application-dev/reference/apis/Readme-CN.md +++ b/zh-cn/application-dev/reference/apis/Readme-CN.md @@ -233,6 +233,7 @@ - [@ohos.data.ValuesBucket (数据集)](js-apis-data-valuesBucket.md) - 文件管理 + - [@ohos.file.cloudSyncManager (端云同步管理)](js-apis-file-cloudsyncmanager.md) - [@ohos.file.environment (目录环境能力)](js-apis-file-environment.md) - [@ohos.file.fileAccess (公共文件访问与管理)](js-apis-fileAccess.md) - [@ohos.file.fileExtensionInfo (公共文件访问与管理属性信息)](js-apis-fileExtensionInfo.md) @@ -267,7 +268,8 @@ - [@ohos.request (上传下载)](js-apis-request.md) - 通信与连接 - - [@ohos.bluetooth (蓝牙)](js-apis-bluetooth.md) + - [@ohos.bluetooth (蓝牙)(待停用)](js-apis-bluetooth.md) + - [@ohos.bluetoothManager (蓝牙)(推荐)](js-apis-bluetoothManager.md) - [@ohos.connectedTag (有源标签)](js-apis-connectedTag.md) - [@ohos.nfc.cardEmulation (标准NFC-cardEmulation)](js-apis-cardEmulation.md) - [@ohos.nfc.controller (标准NFC)](js-apis-nfcController.md) @@ -352,6 +354,7 @@ - 定制管理 - [@ohos.configPolicy (配置策略)](js-apis-configPolicy.md) - [@ohos.enterprise.accountManager (帐户管理)](js-apis-enterprise-accountManager.md) + - [@ohos.enterprise.bundleManager (包管理)](js-apis-enterprise-bundleManager.md) - [@ohos.enterprise.adminManager (企业设备管理)](js-apis-enterprise-adminManager.md) - [@ohos.enterprise.dateTimeManager (系统时间管理)](js-apis-enterprise-dateTimeManager.md) - [@ohos.enterprise.deviceControl (设备控制管理)](js-apis-enterprise-deviceControl.md) diff --git a/zh-cn/application-dev/reference/apis/js-apis-app-ability-appRecovery.md b/zh-cn/application-dev/reference/apis/js-apis-app-ability-appRecovery.md index 8658417d06f5e70a9f87a3ae9555a6fa82a628fa..94ac177abec2771b0bda6c3f0413b97bea8f8ec8 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-app-ability-appRecovery.md +++ b/zh-cn/application-dev/reference/apis/js-apis-app-ability-appRecovery.md @@ -158,6 +158,12 @@ saveAppState(context?: UIAbilityContext): boolean; **系统能力**:SystemCapability.Ability.AbilityRuntime.Core +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| -------- | -------- | -------- | -------- | +| context | [UIAbilityContext](js-apis-inner-application-uiAbilityContext.md)| 否 | UIAbility上下文环境。 | + **返回值:** | 类型 | 说明 | @@ -182,6 +188,12 @@ setRestartWant(want: Want): void; **系统能力**:SystemCapability.Ability.AbilityRuntime.Core +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| -------- | -------- | -------- | -------- | +| want | [Want](js-apis-application-want.md)| 是 | 通过设置Want中"bundleName"和"abilityName"字段来指定恢复重启的Ability。 | + **示例:** ```ts diff --git a/zh-cn/application-dev/reference/apis/js-apis-app-ability-serviceExtensionAbility.md b/zh-cn/application-dev/reference/apis/js-apis-app-ability-serviceExtensionAbility.md index bc17ac5a0e514bfc1526eb5771399029faae9a24..8e521d379da256f91114d62f06a822f01903758c 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-app-ability-serviceExtensionAbility.md +++ b/zh-cn/application-dev/reference/apis/js-apis-app-ability-serviceExtensionAbility.md @@ -148,7 +148,7 @@ Extension生命周期回调,如果是connectAbility拉起的服务,会在onC ## ServiceExtensionAbility.onDisconnect -onDisconnect(want: Want): void | Promise; +onDisconnect(want: Want): void | Promise\; Extension的生命周期回调,客户端执行断开连接服务时回调。 diff --git a/zh-cn/application-dev/reference/apis/js-apis-app-ability-want.md b/zh-cn/application-dev/reference/apis/js-apis-app-ability-want.md index 1c5085195ca7703e0e9cdd76bc30b8dbe47f4423..6b938dfa1c2dfa3ff782f61f09f1763280a3fc71 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-app-ability-want.md +++ b/zh-cn/application-dev/reference/apis/js-apis-app-ability-want.md @@ -130,11 +130,11 @@ import Want from '@ohos.app.ability.Want'; ``` * 文件描述符(FD) ```ts - import fileio from '@ohos.fileio'; + import fs from '@ohos.file.fs'; let fd; try { - fd = fileio.openSync('/data/storage/el2/base/haps/pic.png'); + fd = fs.openSync('/data/storage/el2/base/haps/pic.png').fd; } catch(e) { console.error('openSync fail: ${JSON.stringify(e)}'); } diff --git a/zh-cn/application-dev/reference/apis/js-apis-application-want.md b/zh-cn/application-dev/reference/apis/js-apis-application-want.md index f7d00402995f666cd8eb47062b2c61b789fdc285..f028724c676fb7437c902c9ef45a7a795525bde2 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-application-want.md +++ b/zh-cn/application-dev/reference/apis/js-apis-application-want.md @@ -108,10 +108,10 @@ import Want from '@ohos.application.Want'; ``` * 文件描述符(FD) ```ts - import fileio from '@ohos.fileio'; + import fs from '@ohos.file.fs'; let fd; try { - fd = fileio.openSync('/data/storage/el2/base/haps/pic.png'); + fd = fs.openSync('/data/storage/el2/base/haps/pic.png').fd; } catch(e) { console.error('openSync fail: ${JSON.stringify(e)}'); } diff --git a/zh-cn/application-dev/reference/apis/js-apis-avsession.md b/zh-cn/application-dev/reference/apis/js-apis-avsession.md index 92a3d81ebaad1d37ace61f40bd596bd35a9da2b0..e479203da8df13119334a1dd8f01f27f10a276c5 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-avsession.md +++ b/zh-cn/application-dev/reference/apis/js-apis-avsession.md @@ -441,8 +441,9 @@ castAudio(session: SessionToken | 'all', audioDevices: Array { +await audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => { audioDevices = data; console.info('Promise returned to indicate that the device list is obtained.'); }).catch((err) => { @@ -493,8 +494,9 @@ castAudio(session: SessionToken | 'all', audioDevices: Array { +await audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => { audioDevices = data; console.info('Promise returned to indicate that the device list is obtained.'); }).catch((err) => { diff --git a/zh-cn/application-dev/reference/apis/js-apis-bluetoothManager.md b/zh-cn/application-dev/reference/apis/js-apis-bluetoothManager.md index 673a90540c0f1e82f1787f2a566d132192b480e5..3ab78fbb0abb3d81e51c405c69f3388b3b0abe45 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-bluetoothManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-bluetoothManager.md @@ -652,6 +652,98 @@ try { ``` +## bluetoothManager.setDevicePinCode10+ + +setDevicePinCode(device: string, code: string, callback: AsyncCallback<void>): void + +当蓝牙配对类型[PinType](#pintype10)为PIN_TYPE_ENTER_PIN_CODE或PIN_TYPE_PIN_16_DIGITS时调用此接口,请求用户输入PIN码。 + +**需要权限**:ohos.permission.MANAGE_BLUETOOTH + +**系统能力**:SystemCapability.Communication.Bluetooth.Core。 + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ------ | ------- | ---- | -------------------------------- | +| device | string | 是 | 表示远端设备MAC地址,例如:"XX:XX:XX:XX:XX:XX"。 | +| code | string | 是 | 用户输入的PIN码。 | +| callback | AsyncCallback<void> | 是 | 回调函数,当设置PinCode成功,err为undefined,否则为错误对象。 | + +**错误码**: + +以下错误码的详细介绍请参见[蓝牙服务子系统错误码](../errorcodes/errorcode-bluetoothManager.md)。 + +| 错误码ID | 错误信息 | +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**示例:** + +```js +//callback +try { + bluetoothManager.setDevicePinCode('11:22:33:44:55:66', '12345', (err, data) => { + console.info('setDevicePinCode,device name err:' + JSON.stringify(err) + ',device name:' + JSON.stringify(data)); + }); +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + +## bluetoothManager.setDevicePinCode10+ + +setDevicePinCode(device: string, code: string): Promise<void> + +当蓝牙配对类型[PinType](#pintype10)为PIN_TYPE_ENTER_PIN_CODE或PIN_TYPE_PIN_16_DIGITS时调用此接口,请求用户输入PIN码。 + +**需要权限**:ohos.permission.MANAGE_BLUETOOTH + +**系统能力**:SystemCapability.Communication.Bluetooth.Core。 + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ------ | ------- | ---- | -------------------------------- | +| device | string | 是 | 表示远端设备MAC地址,例如:"XX:XX:XX:XX:XX:XX"。 | +| code | string | 是 | 用户输入的PIN码。 | + +**返回值:** + +| 类型 | 说明 | +| ------------------- | ------------- | +| Promise<void> | 返回promise对象。 | + +**错误码**: + +以下错误码的详细介绍请参见[蓝牙服务子系统错误码](../errorcodes/errorcode-bluetoothManager.md)。 + +| 错误码ID | 错误信息 | +| -------- | ---------------------------- | +|2900001 | Service stopped. | +|2900003 | Bluetooth switch is off. | +|2900099 | Operation failed. | + +**示例:** + +```js +//promise +try { + bluetoothManager.setDevicePinCode('11:22:33:44:55:66', '12345').then(() => { + console.info('setDevicePinCode'); + }, error => { + console.info('setDevicePinCode: errCode:' + error.code + ',errMessage' + error.message); + }) + +} catch (err) { + console.error("errCode:" + err.code + ",errMessage:" + err.message); +} +``` + + ## bluetoothManager.on('bluetoothDeviceFind') on(type: "bluetoothDeviceFind", callback: Callback<Array<string>>): void @@ -4005,12 +4097,13 @@ try { **系统能力**:SystemCapability.Communication.Bluetooth.Core。 -| 名称 | 类型 | 可读 | 可写 | 说明 | +| 名称 | 类型 | 可读 | 可写 | 说明 | | ------------------- | ---------------------------------------- | ---- | ---- | ---------------------------------------- | | serviceUuid | string | 是 | 是 | 特定服务(service)的UUID,例如:00001888-0000-1000-8000-00805f9b34fb。 | | characteristicUuid | string | 是 | 是 | 特定特征(characteristic)的UUID,例如:00002a11-0000-1000-8000-00805f9b34fb。 | -| characteristicValue | ArrayBuffer | 是 | 是 | 特征对应的二进制值。 | -| descriptors | Array<[BLEDescriptor](#bledescriptor)> | 是 | 是 | 特定特征的描述符列表。 | +| characteristicValue | ArrayBuffer | 是 | 是 | 特征对应的二进制值。 | +| descriptors | Array<[BLEDescriptor](#bledescriptor)> | 是 | 是 | 特定特征的描述符列表。 | +| properties10+ | [GattProperties](#gattproperties10) | 是 | 是 | 特定特征的属性描述。 | ## BLEDescriptor @@ -4218,6 +4311,7 @@ try { | deviceId | string | 是 | 否 | 表示扫描到的设备地址,例如:"XX:XX:XX:XX:XX:XX"。 | | rssi | number | 是 | 否 | 表示扫描到的设备的rssi值。 | | data | ArrayBuffer | 是 | 否 | 表示扫描到的设备发送的广播包。 | +| deviceName10+ | string | 是 | 否 | 表示扫描到的设备名称。 | ## BluetoothState @@ -4297,6 +4391,7 @@ try { | -------- | ------ | ---- | ---- | ----------- | | deviceId | string | 是 | 否 | 表示要配对的设备ID。 | | pinCode | string | 是 | 否 | 表示要配对的密钥。 | +| pinType10+ | [PinType](#pintype10) | 是 | 否 | 表示要配对的设备类型。 | ## BondStateParam @@ -4323,6 +4418,21 @@ try { | state | [ProfileConnectionState](#profileconnectionstate) | 是 | 否 | 表示蓝牙设备的profile连接状态。 | +## GattProperties10+ + +描述gatt characteristic的属性。 + +**系统能力**:SystemCapability.Communication.Bluetooth.Core。 + +| 名称 | 类型 | 只读 | 必填 | 说明 | +| -------- | ------ | ---- | ---- | ----------- | +| write10+ | boolean | 是 | 是 | 表示该特征支持写操作,需要对端设备的回复。 | +| writeNoResponse10+ | boolean | 是 | 是 | 表示该特征支持写操作,无需对端设备回复。 | +| read10+ | boolean | 是 | 是 | 表示该特征支持读操作。 | +| notify10+ | boolean | 是 | 是 | 表示该特征可通知对端设备。 | +| indicate10+ | boolean | 是 | 是 | 表示该特征可通知对端设备,需要对端设备的回复。 | + + ## DeviceClass 描述蓝牙设备的类别。 @@ -4336,7 +4446,6 @@ try { | classOfDevice | number | 是 | 否 | 表示设备类别。 | - ## MajorClass 枚举,蓝牙设备主要类别。 @@ -4477,4 +4586,22 @@ try { | PROFILE_A2DP_SOURCE | 1 | 表示A2DP profile。 | | PROFILE_HANDS_FREE_AUDIO_GATEWAY | 4 | 表示HFP profile。 | | PROFILE_HID_HOST | 6 | 表示HID profile。 | -| PROFILE_PAN_NETWORK | 7 | 表示PAN profile。 | \ No newline at end of file +| PROFILE_PAN_NETWORK | 7 | 表示PAN profile。 | + + +## PinType10+ + +枚举,蓝牙配对类型。 + +**系统能力**:SystemCapability.Communication.Bluetooth.Core。 + +| 名称 | 值 | 说明 | +| -------------------------------- | ------ | --------------- | +| PIN_TYPE_ENTER_PIN_CODE10+ | 0 | 用户需要输入对端设备上显示的PIN码。 | +| PIN_TYPE_ENTER_PASSKEY10+ | 1 | 用户需要输入对端设备上显示的PASSKEY。 | +| PIN_TYPE_CONFIRM_PASSKEY10+ | 2 | 用户需要确认本地设备上显示的PASSKEY。 | +| PIN_TYPE_NO_PASSKEY_CONSENT10+ | 3 | 无PASSKEY,用户需要接受或拒绝配对请求。 | +| PIN_TYPE_NOTIFY_PASSKEY10+ | 4 | 本地设备显示PASSKEY,用户需要在对端设备上输入该PASSKEY。 | +| PIN_TYPE_DISPLAY_PIN_CODE10+ | 5 | bluetooth 2.0设备,用户需要输入对端设备上显示的PIN码。 | +| PIN_TYPE_OOB_CONSENT10+ | 6 | 用户需要接受或拒绝OOB配对请求。 | +| PIN_TYPE_PIN_16_DIGITS10+ | 7 | 用户需要输入对端设备上显示的16位PIN码。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-bundleManager-businessAbilityInfo.md b/zh-cn/application-dev/reference/apis/js-apis-bundleManager-businessAbilityInfo.md new file mode 100644 index 0000000000000000000000000000000000000000..deeea708b336bd3a01788a178a6353ff29bbeac8 --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-bundleManager-businessAbilityInfo.md @@ -0,0 +1,21 @@ +# BusinessAbilityInfo + +> **说明:** +> 本模块首批接口从API version 10 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 + +包含基本业务路由信息。 + +## BusinessAbilityInfo + +**系统能力**: SystemCapability.BundleManager.BundleFramework.Core + +| 名称 | 类型 | 可读 | 可写 | 说明 | +| --------------------------------- | ------------------------------------------------------------ | ---- | ---- | -------------------- | +| bundleName | string | 是 | 否 | 表示应用程序的bundleName。 | +| moduleName | string | 是 | 否 | 表示应用程序的moduleName。 | +| name | string | 是 | 否 | 业务路由ability名。 | +| labelId | number | 是 | 否 | 模块标签的资源id。 | +| descriptionId | number | 是 | 否 | 描述信息的资源id。 | +| iconId | number | 是 | 否 | 描述ability信息的图标id。 | +| businessType | [businessAbilityRouter.BusinessType](js-apis-businessAbilityRouter.md#businesstype) | 是 | 否 | 标识枚举业务类型。 | +| applicationInfo | Array\<[ApplicationInfo](js-apis-bundleManager-applicationInfo.md)> | 是 | 否 | 应用程序的信息。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-businessAbilityRouter.md b/zh-cn/application-dev/reference/apis/js-apis-businessAbilityRouter.md new file mode 100644 index 0000000000000000000000000000000000000000..39213c877d58f8a243a1fd29dd8399f1a82da5ec --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-businessAbilityRouter.md @@ -0,0 +1,130 @@ +# @ohos.app.businessAbilityRouter (业务路由模块) + +本模块用于查询当前设备上安装的各种应用程序的路由ability信息。通过业务路由提供标准的业务模板和业务管理能力,开发者可以按照指定的业务类别注册标准业务,丰富的业务形成一个庞大的超市。系统应用或者三方应用可以从业务路由中获取所需业务,并选择合适的业务使用。同时业务路由提供统一的跳转管控规则,控制应用与业务之间的合理跳转,杜绝前后台任意的跳转行为,避免三方应用通过跳转变相分发,解决安全弱、体验差的问题。 + +> **说明:** +> +> 本模块首批接口从API version 10 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 + +本模块接口为系统接口。 + +## 导入模块 + +``` ts +import businessAbilityRouter from '@ohos.app.businessAbilityRouter'; +``` + +## 权限列表 + +| 权限 | 权限等级 | 描述 | +| ------------------------------------------ | ------------ | -------------------- | +| ohos.permission.GET_BUNDLE_INFO_PRIVILEGED | system_basic | 可查询所有应用信息。 | + +权限等级参考[权限等级说明](../../security/accesstoken-overview.md#权限等级说明)。 + +## BusinessType + +此枚举值用于标识过滤条件类型。 + +**系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework.Core。 + +**系统接口:** 此接口为系统接口。 + +| 名称 | 值 | 说明 | +| ----------- | ---- | ------------------------------------ | +| SHARE | 0 | 标识具有共享类型的ability信息。 | +| UNSPECIFIED | 255 | 标识未指定类型的ability信息。 | + +## BusinessAbilityFilter + +此过滤值用于过滤查询的ability类型。 + +**系统能力:** SystemCapability.BundleManager.BundleFrameWork.FreeInstall + +**系统接口:** 此接口为系统接口。 + +| 名称 | 类型 | 可读 | 可写 | 说明 | +| ------------ | ------------ | ---- | ---- | -------------------------------------- | +| businessType | BusinessType | 是 | 否 | 标识ability信息的类型。 | +| mimeType | string | 是 | 否 | 标识支持mime类型的ability信息。 | +| uri | string | 是 | 否 | 标识ability信息支持的uri。 | + +## businessAbilityRouter.queryBusinessAbilityInfo + +queryBusinessAbilityInfo(filter: BusinessAbilityFilter, callback: AsyncCallback\\>): void; + +以异步方法通过给定的过滤条件查询ability信息。使用callback异步回调。成功返回查询到的路由ability信息,失败返回对应错误信息。 + +**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED + +**系统能力:** SystemCapability.BundleManager.BundleFramework.Core + +**系统API:** 此接口为系统接口。 + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ----------- | ------ | ---- | --------------------------------------- | +| filter | [BusinessAbilityFilter](#businessabilityfilter) | 是 | 支持按业务类型过滤的对象。 | +| callback | AsyncCallback\\> | 是 | 回调函数。返回查询到的ability信息,否则为错误对象。 | + +**示例:** + +```ts +import businessAbilityRouter from '@ohos.app.businessAbilityRouter'; +let filter = {businessType: businessAbilityRouter.BusinessType.SHARE}; + +try { + businessAbilityRouter.queryBusinessAbilityInfo(filter) + .then(() => { + console.info('queryBusinessAbilityInfo success'); + }).catch((error) => { + console.error('queryBusinessAbilityInfo failed ' + error.message); + }); +} catch (error) { + console.error('queryBusinessAbilityInfo failed ' + error.message); +} +``` + +## businessAbilityRouter.queryBusinessAbilityInfo + +queryBusinessAbilityInfo(filter: BusinessAbilityFilter): Promise\\>; + +以异步方法通过给定的过滤条件查询ability信息。使用Promise异步回调,成功返回查询到的路由ability信息,失败返回对应错误信息。 + +**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED + +**系统能力:** SystemCapability.BundleManager.BundleFramework.Core + +**系统API:** 此接口为系统接口。 + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ----------- | ------------------------------- | ---- | --------------------------------------- | +| filter | [BusinessAbilityFilter](#businessabilityfilter) | 是 | 包含要查询的ability信息的筛选类型。 | + +**返回值:** + +| 类型 | 说明 | +| ------------------------------------------------------------ | ------------------------------------------- | +| Promise\\> | Promise对象,返回符合过滤条件的ability信息。 | + +**示例:** + +```ts +import businessAbilityRouter from '@ohos.app.businessAbilityRouter'; +let filter = {businessType: businessAbilityRouter.BusinessType.SHARE}; + +try { + businessAbilityRouter.queryBusinessAbilityInfo(filter, (error, data) => { + if (error) { + console.error('queryBusinessAbilityInfo failed ' + error.message); + return; + } + console.info('queryBusinessAbilityInfo success'); + }); +} catch (error) { + console.error('queryBusinessAbilityInfo failed ' + error.message); +} +``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md b/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md index 9a238fa148fc5d604106ef43eef16d1c85a4ed90..5271bda7af2d893c6bdcf98bc5b18c1442ec75c0 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md @@ -1281,6 +1281,14 @@ insert(table: string, values: ValuesBucket, callback: AsyncCallback<number> | values | [ValuesBucket](#valuesbucket) | 是 | 表示要插入到表中的数据行。 | | callback | AsyncCallback<number> | 是 | 指定callback回调函数。如果操作成功,返回行ID;否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1316,6 +1324,14 @@ insert(table: string, values: ValuesBucket, conflict: ConflictResolution, callb | conflict | [ConflictResolution](#conflictresolution10) | 是 | 指定冲突解决方式。 | | callback | AsyncCallback<number> | 是 | 指定callback回调函数。如果操作成功,返回行ID;否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1355,6 +1371,14 @@ insert(table: string, values: ValuesBucket):Promise<number> | --------------------- | ------------------------------------------------- | | Promise<number> | Promise对象。如果操作成功,返回行ID;否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1394,6 +1418,14 @@ insert(table: string, values: ValuesBucket, conflict: ConflictResolution):Promi | --------------------- | ------------------------------------------------- | | Promise<number> | Promise对象。如果操作成功,返回行ID;否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1427,6 +1459,14 @@ batchInsert(table: string, values: Array<ValuesBucket>, callback: AsyncCal | values | Array<[ValuesBucket](#valuesbucket)> | 是 | 表示要插入到表中的一组数据。 | | callback | AsyncCallback<number> | 是 | 指定callback回调函数。如果操作成功,返回插入的数据个数,否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1480,6 +1520,14 @@ batchInsert(table: string, values: Array<ValuesBucket>):Promise<number& | --------------------- | ----------------------------------------------------------- | | Promise<number> | Promise对象。如果操作成功,返回插入的数据个数,否则返回-1。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1527,6 +1575,14 @@ update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback& | predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的更新条件。 | | callback | AsyncCallback<number> | 是 | 指定的callback回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1564,6 +1620,14 @@ update(values: ValuesBucket, predicates: RdbPredicates, conflict: ConflictResolu | conflict | [ConflictResolution](#conflictresolution10) | 是 | 指定冲突解决方式。 | | callback | AsyncCallback<number> | 是 | 指定的callback回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1605,6 +1669,14 @@ update(values: ValuesBucket, predicates: RdbPredicates):Promise<number> | --------------------- | ----------------------------------------- | | Promise<number> | 指定的Promise回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1646,6 +1718,14 @@ update(values: ValuesBucket, predicates: RdbPredicates, conflict: ConflictResolu | --------------------- | ----------------------------------------- | | Promise<number> | 指定的Promise回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1684,6 +1764,14 @@ update(table: string, values: ValuesBucket, predicates: dataSharePredicates.Data | predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是 | DataSharePredicates的实例对象指定的更新条件。 | | callback | AsyncCallback<number> | 是 | 指定的callback回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1729,6 +1817,14 @@ update(table: string, values: ValuesBucket, predicates: dataSharePredicates.Data | --------------------- | ----------------------------------------- | | Promise<number> | 指定的Promise回调方法。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1764,6 +1860,14 @@ delete(predicates: RdbPredicates, callback: AsyncCallback<number>):void | predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的删除条件。 | | callback | AsyncCallback<number> | 是 | 指定callback回调函数。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1798,6 +1902,14 @@ delete(predicates: RdbPredicates):Promise<number> | --------------------- | ------------------------------- | | Promise<number> | Promise对象。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1829,6 +1941,14 @@ delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callb | predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是 | DataSharePredicates的实例对象指定的删除条件。 | | callback | AsyncCallback<number> | 是 | 指定callback回调函数。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -1867,6 +1987,14 @@ delete(table: string, predicates: dataSharePredicates.DataSharePredicates):Promi | --------------------- | ------------------------------- | | Promise<number> | Promise对象。返回受影响的行数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -2205,6 +2333,14 @@ executeSql(sql: string, bindArgs: Array<ValueType>, callback: AsyncCallbac | bindArgs | Array<[ValueType](#valuetype)> | 是 | SQL语句中参数的值。 | | callback | AsyncCallback<void> | 是 | 指定callback回调函数。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -2239,6 +2375,14 @@ executeSql(sql: string, bindArgs?: Array<ValueType>):Promise<void> | ------------------- | ------------------------- | | Promise<void> | 无返回结果的Promise对象。 | +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js @@ -2259,6 +2403,14 @@ beginTransaction():void **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**错误码:** + +以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)。 + +| **错误码ID** | **错误信息** | +| ------------ | ----------------------- | +| 14800047 | The WAL file size exceeds the default limit.| + **示例:** ```js diff --git a/zh-cn/application-dev/reference/apis/js-apis-device-manager.md b/zh-cn/application-dev/reference/apis/js-apis-device-manager.md index 3c0701bd503245342420ea3cefb2f849d8b87ab6..d7a67f5c99718f310d6d5e4126a31880ce03f0be 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-device-manager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-device-manager.md @@ -460,6 +460,83 @@ getLocalDeviceInfo(): Promise<DeviceInfo> }); ``` +### getDeviceInfo10+ + +getDeviceInfo(networkId: string, callback:AsyncCallback<DeviceInfo>): void + +通过指定设备的网络标识获取该设备的信息。使用callback异步回调。 + +**系统能力**:SystemCapability.DistributedHardware.DeviceManager + +**参数:** + + | 参数名 | 类型 | 必填 | 说明 | + | -------- | ---------------------------------------- | ---- | --------- | + | networkId| string | 是 | 设备的网络标识。 | + | callback | AsyncCallback<[DeviceInfo](#deviceinfo)> | 是 | 获取指定设备信息。 | + +**错误码:** + +以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md) + +| 错误码ID | 错误信息 | +| -------- | --------------------------------------------------------------- | +| 11600101 | Failed to execute the function. | + +**示例:** + + ```js + try { + dmInstance.getDeviceInfo(networkId, (err, data) => { + if (err) { + console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message); + return; + } + console.log('get device info: ' + JSON.stringify(data)); + }); + } catch (err) { + console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message); + } + ``` + +### getDeviceInfo10+ + +getDeviceInfo(networkId: string): Promise<DeviceInfo> + +通过指定设备的网络标识获取该设备的信息。使用Promise异步回调。 + +**系统能力**:SystemCapability.DistributedHardware.DeviceManager + +**参数:** + + | 参数名 | 类型 | 必填 | 说明 | + | -------- | ---------------------------------------- | ---- | --------- | + | networkId| string | 是 | 设备的网络标识。 | + +**返回值:** + + | 类型 | 说明 | + | ---------------------------------------- | --------------------- | + | Promise<[DeviceInfo](#deviceinfo)> | Promise实例,用于获取异步返回结果。 | + +**错误码:** + +以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md) + +| 错误码ID | 错误信息 | +| ------- | --------------------------------------------------------------- | +| 11600101| Failed to execute the function. | + +**示例:** + + ```js + dmInstance.getDeviceInfo(networkId).then((data) => { + console.log('get device info: ' + JSON.stringify(data)); + }).catch((err) => { + console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message); + }); + ``` + ### startDeviceDiscovery8+ startDeviceDiscovery(subscribeInfo: SubscribeInfo): void diff --git a/zh-cn/application-dev/reference/apis/js-apis-display.md b/zh-cn/application-dev/reference/apis/js-apis-display.md index 8b73f026dcdc1864fcde3cc02707a890f3c39a9e..db7ab01ce6978bf0a8d49cf115a07ac5f4cd2f39 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-display.md +++ b/zh-cn/application-dev/reference/apis/js-apis-display.md @@ -291,6 +291,63 @@ try { } ``` +## display.on('privateModeChange')10+ + +on(type: 'privateModeChange', callback: Callback<boolean>): void + +开启屏幕隐私模式变化的监听。当屏幕前台有隐私窗口,则屏幕处于隐私模式,屏幕中的隐私窗口内容无法被截屏或录屏。 + +**系统接口:** 此接口为系统接口。 + +**系统能力:** SystemCapability.WindowManager.WindowManager.Core + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| -------- |------------------------------------------| ---- | ------------------------------------------------------- | +| type | string | 是 | 监听事件,固定为'privateModeChange',表示屏幕隐私模式状态发生变化。 | +| callback | Callback<boolean> | 是 | 回调函数。表示屏幕隐私模式是否改变。true表示屏幕由非隐私窗口模式变为隐私模式,false表示屏幕由隐私模式变为非隐私模式。 | + +**示例:** + +```js +let callback = (data) => { + console.info('Listening enabled. Data: ' + JSON.stringify(data)); +}; +try { + display.on("privateModeChange", callback); +} catch (exception) { + console.error('Failed to register callback. Code: ' + JSON.stringify(exception)); +} +``` + +## display.off('privateModeChange')10+ + +off(type: 'privateModeChange', callback?: Callback<boolean>): void + +关闭屏幕隐私模式变化的监听。当屏幕前台有隐私窗口,则屏幕处于隐私模式,屏幕中的隐私窗口内容无法被截屏或录屏。 + +**系统接口:** 此接口为系统接口。 + +**系统能力:** SystemCapability.WindowManager.WindowManager.Core + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| -------- |------------------------------------------| ---- | ------------------------------------------------------- | +| type | string | 是 | 监听事件,固定为'privateModeChange',表示屏幕隐私模式状态发生变化。 | +| callback | Callback<boolean> | 否 | 回调函数。表示屏幕隐私模式是否改变。true表示屏幕由非隐私模式变为隐私模式,false表示屏幕由隐私模式变为非隐私模式。 | + +**示例:** + +```js +try { + display.off("privateModeChange"); +} catch (exception) { + console.error('Failed to unregister callback. Code: ' + JSON.stringify(exception)); +} +``` + ## display.getDefaultDisplay(deprecated) getDefaultDisplay(callback: AsyncCallback<Display>): void diff --git a/zh-cn/application-dev/reference/apis/js-apis-enterprise-bundleManager.md b/zh-cn/application-dev/reference/apis/js-apis-enterprise-bundleManager.md new file mode 100644 index 0000000000000000000000000000000000000000..66249739bb2d229bb2a855b5cb71e76cc70d9b4e --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-enterprise-bundleManager.md @@ -0,0 +1,389 @@ +# @ohos.enterprise.bundleManager(包管理) + +本模块提供包管理能力,包括添加包安装白名单、获取包安装白名单、移除包安装白名单等。仅企业设备管理员应用才能调用。 + +> **说明:** +> +> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 + +## 导入模块 + +```js +import bundleManager from '@ohos.enterprise.bundleManager'; +``` + +## bundleManager.addAllowedInstallBundles + +addAllowedInstallBundles(admin: Want, appIds: Array\, callback: AsyncCallback<void>): void; + +添加包安装白名单接口,使用callback异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| -------- | ---------------------------------------- | ---- | ------------------------------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array<string> | 是 | 允许安装包的白名单 | +| callback | AsyncCallback<void> | 是 | 回调函数。当接口调用成功err为null,否则为错误对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.AddAllowedInstallBundles(wantTemp, appIds, (error) => { + if (error != null) { + console.log("error code:" + error.code + " error message:" + error.message); + } +}); +``` + +## bundleManager.addAllowedInstallBundles + +addAllowedInstallBundles(admin: Want, appIds: Array\, userId: number, callback: AsyncCallback<void>): void; + +添加包安装白名单接口,使用callback异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| ----- | ----------------------------------- | ---- | ------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array<string> | 是 | 允许安装包的白名单 | +| userId | number | 是 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | +| callback | AsyncCallback<void> | 是 | 回调函数。当接口调用成功err为null,否则为错误对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.AddAllowedInstallBundles(wantTemp, appIds, 100, (error) => { + if (error != null) { + console.log("error code:" + error.code + " error message:" + error.message); + } +}); +``` + +## bundleManager.addAllowedInstallBundles + +addAllowedInstallBundles(admin: Want, appIds: Array\, userId?: number): Promise<void>; + +添加包安装白名单接口,使用promise异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| ----- | ----------------------------------- | ---- | ------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array<string> | 是 | 允许安装包的白名单 | +| userId | number | 否 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | + +**返回值:** + +| 类型 | 说明 | +| --------------------- | ------------------------- | +| Promise<void> | 无返回结果的Promise对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.addAllowedInstallBundles(wantTemp, appIds, 100).then(() => { + console.log("success"); +}).catch(error => { + console.log("error code:" + error.code + " error message:" + error.message); +}); +``` + +## bundleManager.removeAllowedInstallBundles + +removeAllowedInstallBundles(admin: Want, appIds: Array\, callback: AsyncCallback<void>): void; + +移除包安装白名单接口,使用callback异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| -------- | ---------------------------------------- | ---- | ------------------------------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array<string> | 是 | 移除允许安装包的白名单 | +| callback | AsyncCallback<void> | 是 | 回调函数。当接口调用成功err为null,否则为错误对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.removeAllowedInstallBundles(wantTemp, appIds, (error) => { + if (error != null) { + console.log("error code:" + error.code + " error message:" + error.message); + } +}); +``` + +## bundleManager.removeAllowedInstallBundles + +removeAllowedInstallBundles(admin: Want, appIds: Array\, userId: number, callback: AsyncCallback<void>): void; + +移除包安装白名单接口,使用callback异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| ----- | ----------------------------------- | ---- | ------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array<string> | 是 | 允许安装包的白名单 | +| userId | number | 是 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | +| callback | AsyncCallback<void> | 是 | 回调函数。当接口调用成功err为null,否则为错误对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.removeAllowedInstallBundles(wantTemp, appIds, 100, (error) => { + if (error != null) { + console.log("error code:" + error.code + " error message:" + error.message); + } +}); +``` + +## bundleManager.removeAllowedInstallBundles + +removeAllowedInstallBundles(admin: Want, appIds: Array\, userId?: number): Promise<void>; + +移除包安装白名单接口,使用promise异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| ----- | ----------------------------------- | ---- | ------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| appIds | Array\<string> | 是 | 允许安装包的白名单 | +| userId | number | 否 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | + +**返回值:** + +| 类型 | 说明 | +| --------------------- | ------------------------- | +| Promise<void> | 无返回结果的Promise对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +let appIds = {"com.example.myapplication"}; + +bundleManager.removeAllowedInstallBundles(wantTemp, appIds, 100).then(() => { + console.log("success"); +}).catch(error => { + console.log("error code:" + error.code + " error message:" + error.message); +}); +``` + +## bundleManager.getAllowedInstallBundles + +getAllowedInstallBundles(admin: Want, userId: number, callback: AsyncCallback<Array<string>>): void; + +获取包安装白名单接口,使用callback异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| -------- | ---------------------------------------- | ---- | ------------------------------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| userId | number | 是 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | +| callback | AsyncCallback<Array<string>> | 是 | 回调函数。当接口调用成功err为null,否则为错误对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; + +bundleManager.getAllowedInstallBundles(wantTemp, 100, (error) => { + if (error != null) { + console.log("error code:" + error.code + " error message:" + error.message); + } +}); +``` + +## bundleManager.getAllowedInstallBundles + +getAllowedInstallBundles(admin: Want, userId?: number): Promise<Array<string>>; + +获取包安装白名单接口,使用promise异步回调。 + +**需要权限:** ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY + +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 + +**参数:** + +| 参数 | 类型 | 必填 | 说明 | +| ----- | ----------------------------------- | ---- | ------- | +| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理员应用 | +| userId | number | 否 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | + +**返回值:** + +| 类型 | 说明 | +| --------------------- | ------------------------- | +| Promise<void> | 返回结果为String类型数组的Promise对象。 | + +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) + +| 错误码ID | 错误信息 | +| ------- | ---------------------------------------------------------------------------- | +| 9200003 | the administrator ability component is invalid. | +| 9200007 | the system ability work abnormally. | + +**示例:** + +```js +let wantTemp = { + bundleName: "com.example.myapplication", + abilityName: "EntryAbility", +}; +bundleManager.getAllowedInstallBundles(wantTemp, 100).then(() => { + console.log("success"); +}).catch(error => { + console.log("error code:" + error.code + " error message:" + error.message); +}); +``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-file-cloudsyncmanager.md b/zh-cn/application-dev/reference/apis/js-apis-file-cloudsyncmanager.md new file mode 100644 index 0000000000000000000000000000000000000000..58d96ecbea75a0a5a4840405dfebe1539000481d --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-file-cloudsyncmanager.md @@ -0,0 +1,141 @@ +# @ohos.file.cloudSyncManager (端云同步管理能力) + +该模块向云空间提供通知或更改端云服务状态的能力。 + +> **说明:** +> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 +> 本模块接口为系统接口,三方应用不支持调用。 +> 本模块支持对错误码进行处理,错误码及其适配方式[参考文档](../errorcodes/errorcode-filemanagement.md#错误码适配指导)。 + +## 导入模块 + +```js +import cloudSyncManager from '@ohos.file.cloudSyncManager'; +``` + +## cloudSyncManager.changeAppCloudSwitch + +changeAppCloudSwitch(accountId: string, bundleName: string, status: boolean): Promise<void>; + +异步方法修改应用的端云文件同步开关,以Promise形式返回结果。 + +**系统能力**:SystemCapability.FileManagement.DistributedFileService.CloudSyncManager + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ---------- | ------ | ---- | ---- | +| accountId | string | 是 | 帐号| +| bundleName | string | 是 | 应用包名| +| status | boolean | 是 | 修改的应用云同步开关状态,true为打开,false为关闭| + +**返回值:** + +| 类型 | 说明 | +| --------------------- | ---------------- | +| Promise<void> | 使用Promise形式返回修改应用的端云文件同步开关的结果 | + +**示例:** + + ```js + let accountId = "testAccount"; + let bundleName = "com.example.bundle"; + cloudSyncManager.changeAppCloudSwitch(accountId, bundleName, true).then(function() { + console.info("changeAppCloudSwitch successfully"); + }).catch(function(err) { + console.info("changeAppCloudSwitch failed with error message: " + err.message + ", error code: " + err.code); + }); + ``` + +## cloudSyncManager.changeAppCloudSwitch + +changeAppCloudSwitch(accountId: string, bundleName: string, status: boolean, callback: AsyncCallback<void>): void; + +异步方法修改应用的端云文件同步开关,以callback形式返回结果。 + +**系统能力**:SystemCapability.FileManagement.DistributedFileService.CloudSyncManager + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ---------- | ------ | ---- | ---- | +| accountId | string | 是 | 帐号| +| bundleName | string | 是 | 应用包名| +| status | boolean | 是 | 修改的应用云同步开关状态,true为打开,false为关闭| +| callback | AsyncCallback<void> | 是 | 异步修改应用的端云文件同步开关之后的回调 | + +**示例:** + + ```js + let accountId = "testAccount"; + let bundleName = "com.example.bundle"; + cloudSyncManager.changeAppCloudSwitch(accountId, bundleName, true, (err) => { + if (err) { + console.info("changeAppCloudSwitch failed with error message: " + err.message + ", error code: " + err.code); + } else { + console.info("changeAppCloudSwitch successfully"); + } + }); + ``` +## cloudSyncManager.notifyDataChange + +notifyDataChange(accountId: string, bundleName: string): Promise<void>; + +异步方法通知端云服务应用的云数据变更,以Promise形式返回结果。 + +**系统能力**:SystemCapability.FileManagement.DistributedFileService.CloudSyncManager + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ---------- | ------ | ---- | ---- | +| accountId | string | 是 | 帐号| +| bundleName | string | 是 | 应用包名| + +**返回值:** + +| 类型 | 说明 | +| --------------------- | ---------------- | +| Promise<void> | 使用Promise形式返回通知端云服务应用的云数据变更的结果 | + +**示例:** + + ```js + let accountId = "testAccount"; + let bundleName = "com.example.bundle"; + cloudSyncManager.notifyDataChange(accountId, bundleName).then(function() { + console.info("notifyDataChange successfully"); + }).catch(function(err) { + console.info("notifyDataChange failed with error message: " + err.message + ", error code: " + err.code); + }); + ``` + +## cloudSyncManager.notifyDataChange + +notifyDataChange(accountId: string, bundleName: string, callback: AsyncCallback<void>): void; + +异步方法通知端云服务应用的云数据变更,以callback形式返回结果。 + +**系统能力**:SystemCapability.FileManagement.DistributedFileService.CloudSyncManager + +**参数:** + +| 参数名 | 类型 | 必填 | 说明 | +| ---------- | ------ | ---- | ---- | +| accountId | string | 是 | 帐号| +| bundleName | string | 是 | 应用包名| +| callback | AsyncCallback<void> | 是 | 异步通知端云服务应用的云数据变更之后的回调 | + +**示例:** + + ```js + let accountId = "testAccount"; + let bundleName = "com.example.bundle"; + cloudSyncManager.notifyDataChange(accountId, bundleName, (err) => { + if (err) { + console.info("notifyDataChange failed with error message: " + err.message + ", error code: " + err.code); + } else { + console.info("notifyDataChange successfully"); + } + }); + ``` \ No newline at end of file diff --git a/zh-cn/application-dev/reference/apis/js-apis-image.md b/zh-cn/application-dev/reference/apis/js-apis-image.md index 87fac2670885d45b4bdb29a743e0633f429a04c4..e2db66ac13ef747d502a405acc2f1ae45ebd5b93 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -949,7 +949,7 @@ createImageSource(uri: string): ImageSource ```js //Stage模型 const context = getContext(this); -const path = context.getCacheDir() + "/test.jpg"; +const path = context.cacheDir() + "/test.jpg"; const imageSourceApi = image.createImageSource(path); ``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-inner-ability-want.md b/zh-cn/application-dev/reference/apis/js-apis-inner-ability-want.md index e37ad10f026c01739eb8f354723a3f917ded9326..195a244212a7519294558ab9c7ab1821ec9e81c5 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-inner-ability-want.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inner-ability-want.md @@ -41,12 +41,12 @@ Want是对象间信息传递的载体, 可以用于应用组件间的信息传 - 传递FD(文件描述符)数据(在UIAbility对象中调用,其中示例中的context为UIAbility的上下文对象) ```ts - import fileio from '@ohos.fileio'; + import fs from '@ohos.file.fs'; // ... let fd; try { - fd = fileio.openSync('/data/storage/el2/base/haps/pic.png'); + fd = fs.openSync('/data/storage/el2/base/haps/pic.png').fd; } catch(e) { console.error('openSync fail: ${JSON.stringify(e)}'); } diff --git a/zh-cn/application-dev/reference/apis/js-apis-inner-application-applicationContext.md b/zh-cn/application-dev/reference/apis/js-apis-inner-application-applicationContext.md index 54740765f23e2b2e45f45af87ddc781604604b6b..064e036e1a0e3a95440c202d04e1d5c98797d329 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-inner-application-applicationContext.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inner-application-applicationContext.md @@ -88,7 +88,7 @@ export default class EntryAbility extends UIAbility { } ``` -## ApplicationContext.off(type: 'abilityLifecycle', callbackId: number, callback: AsyncCallback) +## ApplicationContext.off(type: 'abilityLifecycle', callbackId: number, callback: AsyncCallback\) off(type: 'abilityLifecycle', callbackId: **number**, callback: AsyncCallback<**void**>): **void**; @@ -206,7 +206,7 @@ export default class EntryAbility extends UIAbility { } ``` -## ApplicationContext.off(type: 'environment', callbackId: number, callback: AsyncCallback) +## ApplicationContext.off(type: 'environment', callbackId: number, callback: AsyncCallback\) off(type: 'environment', callbackId: **number**, callback: AsyncCallback<**void**>): **void**; diff --git a/zh-cn/application-dev/reference/apis/js-apis-inner-application-serviceExtensionContext.md b/zh-cn/application-dev/reference/apis/js-apis-inner-application-serviceExtensionContext.md index 85b44d8120beb7dbb836ed74b9d3c45dc8fdeac8..9b835fee85ba01b9ccfd41b2bc65ccca524763f1 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-inner-application-serviceExtensionContext.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inner-application-serviceExtensionContext.md @@ -56,7 +56,7 @@ startAbility(want: Want, callback: AsyncCallback<void>): void; | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -128,7 +128,7 @@ startAbility(want: Want, options?: StartOptions): Promise\; | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -198,7 +198,7 @@ startAbility(want: Want, options: StartOptions, callback: AsyncCallback<void& | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -275,7 +275,7 @@ startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\< | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -351,7 +351,7 @@ startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, ca | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -436,7 +436,7 @@ startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): | 16000009 | Can not start ability in wukong mode. | | 16000010 | Can not operation with continue flag. | | 16000011 | Context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000051 | Network error. The network is abnormal. | | 16000052 | Free install not support. The application does not support freeinstall | | 16000053 | Not top ability. The application is not top ability. | @@ -1330,7 +1330,7 @@ startAbilityByCall(want: Want): Promise<Caller>; | 16000007 | Service busyness. There are concurrent tasks, waiting for retry. | | 16000008 | Crowdtest App Expiration. | | 16000009 | Can not start ability in wukong mode. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal Error. | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-inner-application-uiAbilityContext.md b/zh-cn/application-dev/reference/apis/js-apis-inner-application-uiAbilityContext.md index 1cf39b1e8171f8c419208e4b904bb18be6a17f18..7d2b3c2fd04e462648c22379121bb81726d246a9 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-inner-application-uiAbilityContext.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inner-application-uiAbilityContext.md @@ -54,7 +54,7 @@ startAbility(want: Want, callback: AsyncCallback<void>): void; | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -118,7 +118,7 @@ startAbility(want: Want, options: StartOptions, callback: AsyncCallback<void& | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -191,7 +191,7 @@ startAbility(want: Want, options?: StartOptions): Promise<void>; | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -260,7 +260,7 @@ startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -328,7 +328,7 @@ startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -406,7 +406,7 @@ startAbilityForResult(want: Want, options?: StartOptions): Promise<AbilityRes | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -477,7 +477,7 @@ startAbilityForResultWithAccount(want: Want, accountId: number, callback: AsyncC | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -549,7 +549,7 @@ startAbilityForResultWithAccount(want: Want, accountId: number, options: StartOp | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -629,7 +629,7 @@ startAbilityForResultWithAccount(want: Want, accountId: number, options?: StartO | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -1584,7 +1584,7 @@ startAbilityByCall(want: Want): Promise<Caller>; | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -1691,7 +1691,7 @@ startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\< | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -1763,7 +1763,7 @@ startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, ca | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | @@ -1837,7 +1837,7 @@ startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): | 16000009 | An ability cannot be started or stopped in Wukong mode. | | 16000010 | The call with the continuation flag is forbidden. | | 16000011 | The context does not exist. | -| 16000012 | The previous ability is starting, wait start later. | +| 16000017 | The previous ability is starting, wait start later. | | 16000050 | Internal error. | | 16000053 | The ability is not on the top of the UI. | | 16000055 | Installation-free timed out. | diff --git a/zh-cn/application-dev/reference/apis/js-apis-screen-lock.md b/zh-cn/application-dev/reference/apis/js-apis-screen-lock.md index 6782838ee05b97cda45cfe5066a4b43259adb1e4..32e95a0cdcac8699ef3f7f588cadaf88c9188e15 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-screen-lock.md +++ b/zh-cn/application-dev/reference/apis/js-apis-screen-lock.md @@ -43,7 +43,7 @@ import screenlock from '@ohos.screenLock'; **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**系统接口**:此接口为系统接口 | 名称 | 类型 | 必填 | 说明 | | --------- | ------ | ---- | ------------- | @@ -58,7 +58,7 @@ isLocked(): boolean **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**系统接口**:此接口为系统接口 **返回值:** @@ -80,7 +80,7 @@ unlock(callback: AsyncCallback<boolean>): void **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**系统接口**:此接口为系统接口 **参数:** @@ -116,7 +116,7 @@ unlock(): Promise<boolean> **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**系统接口**:此接口为系统接口 **返回值:** @@ -150,7 +150,9 @@ lock(callback: AsyncCallback<boolean>): void **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**需要权限:** ohos.permission.ACCESS_SCREEN_LOCK_INNER + +**系统接口**:此接口为系统接口 **参数:** @@ -186,7 +188,9 @@ lock(): Promise<boolean> **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**需要权限:** ohos.permission.ACCESS_SCREEN_LOCK_INNER + +**系统接口**:此接口为系统接口 **返回值:** @@ -220,7 +224,9 @@ onSystemEvent(callback: Callback<SystemEvent>): boolean **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**需要权限:** ohos.permission.ACCESS_SCREEN_LOCK_INNER + +**系统接口**:此接口为系统接口 **参数:** @@ -262,7 +268,9 @@ sendScreenLockEvent(event: String, parameter: number, callback: AsyncCallback< **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**需要权限:** ohos.permission.ACCESS_SCREEN_LOCK_INNER + +**系统接口**:此接口为系统接口 **参数:** @@ -300,7 +308,9 @@ sendScreenLockEvent(event: String, parameter: number): Promise<boolean> **系统能力:** SystemCapability.MiscServices.ScreenLock -**系统接口**:此接口为系统接口。 +**需要权限:** ohos.permission.ACCESS_SCREEN_LOCK_INNER + +**系统接口**:此接口为系统接口 **参数:** diff --git a/zh-cn/application-dev/reference/apis/test.txt b/zh-cn/application-dev/reference/apis/test.txt new file mode 100644 index 0000000000000000000000000000000000000000..b464861d9f38abbd9893395100b807e99a0aa873 --- /dev/null +++ b/zh-cn/application-dev/reference/apis/test.txt @@ -0,0 +1 @@ +e \ No newline at end of file diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-blank.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-blank.md index 16bb9d5c487dc9b47ef9302ce1a3ad9d8942f85c..891e3964deb2a69acc23c0b6811da9bb2c3dbe16 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-blank.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-blank.md @@ -22,7 +22,7 @@ Blank(min?: number | string) | 参数名 | 参数类型 | 必填 | 参数描述 | | -------- | -------- | -------- | -------- | -| min | number \| string | 否 | 空白填充组件在容器主轴上的最小大小。
默认值:0 | +| min | number \| string | 否 | 空白填充组件在容器主轴上的最小大小。
默认值:0
**说明:**
不支持设置百分比。负值使用默认值。当最小值大于容器可用空间时,使用最小值作为自身大小并超出容器。 | ## 属性 @@ -30,10 +30,14 @@ Blank(min?: number | string) | 名称 | 参数类型 | 描述 | | -------- | -------- | -------- | -| color | [ResourceColor](ts-types.md#resourcecolor) | 设置空白填充的填充颜色。
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +| color | [ResourceColor](ts-types.md#resourcecolor) | 设置空白填充的填充颜色。

默认值:Color.Transparent
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +## 事件 + +支持[通用事件](ts-universal-events-click.md)。 ## 示例 + ### 示例1 Blank组件在横竖屏占满空余空间效果。 ```ts diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-divider.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-divider.md index edac89e88e2d77fdc39d7a838df4fd666fce36d7..7da2322a170b7cb5d93c45316cfe5bff3fffb22c 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-divider.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-divider.md @@ -25,8 +25,8 @@ Divider() | 名称 | 参数类型 | 描述 | | ----------- | ---------- | ------------------ | | vertical | boolean | 使用水平分割线还是垂直分割线。false:水平分割线;true:垂直分割线。
默认值:false
从API version 9开始,该接口支持在ArkTS卡片中使用。 | -| color | [ResourceColor](ts-types.md#resourcecolor) | 分割线颜色。
从API version 9开始,该接口支持在ArkTS卡片中使用。 | -| strokeWidth | number \| string | 分割线宽度。
默认值:1
从API version 9开始,该接口支持在ArkTS卡片中使用。
**说明:**
分割线的宽度不支持百分比设置。 | +| color | [ResourceColor](ts-types.md#resourcecolor) | 分割线颜色。
默认值:'\#33182431'
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +| strokeWidth | number \| string | 分割线宽度。
默认值:1
单位:vp
从API version 9开始,该接口支持在ArkTS卡片中使用。
**说明:**
分割线的宽度不支持百分比设置。优先级低于[通用属性height](ts-universal-attributes-size.md),超过通用属性设置大小时,按照通用属性进行裁切。 | | lineCap | [LineCapStyle](ts-appendix-enums.md#linecapstyle) | 分割线的端点样式。
默认值:LineCapStyle.Butt
从API version 9开始,该接口支持在ArkTS卡片中使用。 | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navdestination.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navdestination.md index 49669a8f1be61875c2538ee030347e2edb559ea4..fbf7ae3f0aa68377a1b690e9daf8365b14bb469c 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navdestination.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navdestination.md @@ -9,7 +9,10 @@ ## 子组件 -可以包含子组件。 +> **说明:** +> +> - 子组件类型:系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 +> - 子组件个数:多个。 ## 接口 @@ -21,7 +24,11 @@ NavDestination() 仅支持[backgroundColor](ts-universal-attributes-background.md)通用属性。 -| 名称 | 参数类型 | 描述 | -| -------------- | ---------------------------------------- | ---------------------------------------- | -| title | string \| [CustomBuilder](ts-types.md#custombuilder8) \| [NavigationCommonTitle](ts-basic-components-navigation.md#navigationcommontitle类型说明) \| [NavigationCustomTitle](ts-basic-components-navigation.md##navigationcustomtitle类型说明) | 页面标题。 | -| hideTitleBar | boolean | 是否显示标题栏。
默认值:false
true: 隐藏标题栏。
false: 显示标题栏。 | \ No newline at end of file +| 名称 | 参数类型 | 描述 | +| ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| title | string \| [CustomBuilder](ts-types.md#custombuilder8) \| [NavigationCommonTitle](ts-basic-components-navigation.md#navigationcommontitle类型说明) \| [NavigationCustomTitle](ts-basic-components-navigation.md##navigationcustomtitle类型说明) | 页面标题。
**说明:**
使用NavigationCustomTitle类型设置height高度时,titleMode属性不会生效。
字符串超长时,如果不设置副标题,先缩小再换行2行后以...截断。如果设置副标题,先缩小后以...截断。 | +| hideTitleBar | boolean | 是否显示标题栏。
默认值:false
true: 隐藏标题栏。
false: 显示标题栏。 | + +## 事件 + +支持[通用事件](ts-universal-events-click.md)。 \ No newline at end of file diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md index 32be817dcbc2a1548167670cdf5310da341f2a8f..291a5286577e8cb34b7be7a3f0255bbf7adcf40e 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md @@ -23,17 +23,17 @@ Navigation() | 名称 | 参数类型 | 描述 | | -------------- | ---------------------------------------- | ---------------------------------------- | -| title | [ResourceStr](ts-types.md#resourcestr)10+ \| [CustomBuilder](ts-types.md#custombuilder8)8+ \| [NavigationCommonTitle](#navigationcommontitle类型说明)9+ \| [NavigationCustomTitle](#navigationcustomtitle类型说明)9+ | 页面标题。 | -| subTitledeprecated | string | 页面副标题。从API Version 9开始废弃,建议使用title代替。 | -| menus | Array<[NavigationMenuItem](#navigationmenuitem类型说明)> \| [CustomBuilder](ts-types.md#custombuilder8)8+ | 页面右上角菜单。使用Array<[NavigationMenuItem](#navigationmenuitem类型说明)> 写法时,竖屏最多支持显示3个图标,横屏最多支持显示5个图标,多余的图标会被放入自动生成的更多图标。 | +| title | [ResourceStr](ts-types.md#resourcestr)10+ \| [CustomBuilder](ts-types.md#custombuilder8)8+ \| [NavigationCommonTitle](#navigationcommontitle类型说明)9+ \| [NavigationCustomTitle](#navigationcustomtitle类型说明)9+ | 页面标题。
**说明:**
使用NavigationCustomTitle类型设置height高度时,titleMode属性不会生效。
字符串超长时,如果不设置副标题,先缩小再换行(2行)最后...截断。如果设置副标题,先缩小最后...截断。 | +| subTitledeprecated | string | 页面副标题。不设置时不显示副标题。从API Version 9开始废弃,建议使用title代替。 | +| menus | Array<[NavigationMenuItem](#navigationmenuitem类型说明)> \| [CustomBuilder](ts-types.md#custombuilder8)8+ | 页面右上角菜单。不设置时不显示菜单项。使用Array<[NavigationMenuItem](#navigationmenuitem类型说明)> 写法时,竖屏最多支持显示3个图标,横屏最多支持显示5个图标,多余的图标会被放入自动生成的更多图标。 | | titleMode | [NavigationTitleMode](#navigationtitlemode枚举说明) | 页面标题栏显示模式。
默认值:NavigationTitleMode.Free | -| toolBar | [object](#object类型说明) \| [CustomBuilder](ts-types.md#custombuilder8)8+ | 设置工具栏内容。
items: 工具栏所有项。 | +| toolBar | [object](#object类型说明) \| [CustomBuilder](ts-types.md#custombuilder8)8+ | 设置工具栏内容。不设置时不显示工具栏。
items: 工具栏所有项。
**说明:**
items均分底部工具栏,在每个均分内容区布局文本和图标,文本超长时,逐级缩小,缩小之后换行,最后...截断。 | | hideToolBar | boolean | 隐藏工具栏。
默认值:false
true: 隐藏工具栏。
false: 显示工具栏。 | | hideTitleBar | boolean | 隐藏标题栏。
默认值:false
true: 隐藏标题栏。
false: 显示标题栏。 | -| hideBackButton | boolean | 隐藏返回键。
默认值:false
true: 隐藏返回键。
false: 显示返回键。
不支持隐藏NavDestination组件标题栏中的返回图标。| -| navBarWidth9+ | [Length](ts-types.md#length) | 导航栏宽度。
默认值:200vp | -| navBarPosition9+ | [NavBarPosition](#navbarposition枚举说明) | 导航栏位置。
默认值:NavBarPosition.Start | -| mode9+ | [NavigationMode](#navigationmode枚举说明) | 导航栏的显示模式。
默认值:NavigationMode.Auto | +| hideBackButton | boolean | 隐藏返回键。
默认值:false
true: 隐藏返回键。
false: 显示返回键。
不支持隐藏NavDestination组件标题栏中的返回图标。
**说明:**
返回键键仅针对titleMode为NavigationTitleMode.Mini时才生效。 | +| navBarWidth9+ | [Length](ts-types.md#length) | 导航栏宽度。
默认值:200
单位:vp
**说明:**
仅在Navigation组件分栏时生效。 | +| navBarPosition9+ | [NavBarPosition](#navbarposition枚举说明) | 导航栏位置。
默认值:NavBarPosition.Start
**说明:**
仅在Navigation组件分栏时生效。 | +| mode9+ | [NavigationMode](#navigationmode枚举说明) | 导航栏的显示模式。
默认值:NavigationMode.Auto
自适应:基于组件宽度自适应单栏和双栏。 | | backButtonIcon9+ | string \| [PixelMap](../apis/js-apis-image.md#pixelmap7) \| [Resource](ts-types.md#resource) | 设置导航栏返回图标。不支持隐藏NavDestination组件标题栏中的返回图标。| | hideNavBar9+ | boolean | 是否显示导航栏(仅在mode为NavigationMode.Split时生效)。 | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md index 162f15f8f3645a41808ef0ad7dfca5a20077aa87..4bbe47093ab9d614d64d21544cc43d6ca90f0de2 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md @@ -10,6 +10,14 @@ 必须包含两个子组件,其中第二个子组件必须为[NavDestination](ts-basic-components-navdestination.md)。 +> **说明:** +> +> 子组件个数异常时: +> 1. 有且仅有1个时,触发路由到NavDestination的能力失效。 +> 2. 有且仅有1个时,且使用NavDestination场景下,不进行路由。 +> 3. 大于2个时,后续的子组件不显示。 +> 4. 第二个子组件不为NavDestination时,触发路由功能失效。 + ## 接口 NavRouter() @@ -17,9 +25,9 @@ NavRouter() ## 事件 -| 名称 | 功能描述 | -| ---------------------------------------- | ---------------------------------------- | -| onStateChange(callback: (isActivated: boolean) => void) | 组件激活状态切换时触发该回调。返回值isActivated为true时表示激活,为false时表示未激活。
**说明:** 用户点击NavRouter,激活NavRouter,加载对应的NavDestination子组件时,回调onStateChange(true);NavRouter对应的NavDestination子组件不再显示时,回调onStateChange(false)。 | +| 名称 | 功能描述 | +| ------------------------------------------------------- | ------------------------------------------------------------ | +| onStateChange(callback: (isActivated: boolean) => void) | 组件激活状态切换时触发该回调。返回值isActivated为true时表示激活,为false时表示未激活。
**说明:**
开发者点击激活NavRouter,加载对应的NavDestination子组件时,回调onStateChange(true)。NavRouter对应的NavDestination子组件不再显示时,回调onStateChange(false)。 | ## 示例 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md index f4d92ad423e1a47497d5673b2ce8dea3a587f09d..2a947a983a64ce376f584f02a2c287b1a781cc6e 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md @@ -31,9 +31,16 @@ PluginComponent(value: { template: PluginComponentTemplate, data: KVObject}) | source | string | 组件模板名。 | | bundleName | string | 提供者Ability的bundleName。 | +## 属性 + +除支持[通用属性size](ts-universal-attributes-size.md),且必须设置size。 ## 事件 +仅支持[手势事件](ts-gesture-settings.md)分发给提供方页面,并在提供方页面内部处理。 + +除支持[通用事件](ts-universal-events-click.md),还支持以下事件: + | 名称 | 功能描述 | | ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | | onComplete(callback: () => void) | 组件加载完成回调。 | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md index 69b6d182ffbf5d3bea4e4f47d6163c4ecf0109ca..11107f9c944bd327916d74bab34354dd058a95db 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md @@ -55,13 +55,18 @@ Progress(options: {value: number, total?: number, type?: ProgressType}) ## 属性 +除支持[通用属性](ts-universal-attributes-size.md)外,还支持以下属性: + | 名称 | 参数类型 | 描述 | | -------- | -------- | -------- | | value | number | 设置当前进度值。设置小于0的数值时置为0,设置大于total的数值时置为total。非法数值不生效。
从API version 9开始,该接口支持在ArkTS卡片中使用。 | -| color | [ResourceColor](ts-types.md#resourcecolor) | 设置进度条前景色。
从API version 9开始,该接口支持在ArkTS卡片中使用。 | -| backgroundColor | [ResourceColor](ts-types.md#resourcecolor) | 设置进度条底色。
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +| color | [ResourceColor](ts-types.md#resourcecolor) | 设置进度条前景色。
默认值:'\#ff007dff'
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +| backgroundColor | [ResourceColor](ts-types.md#resourcecolor) | 设置进度条底色。
默认值:'\#19182431'

从API version 9开始,该接口支持在ArkTS卡片中使用。 | | style8+ | {
strokeWidth?: [Length](ts-types.md#length),
scaleCount?: number,
scaleWidth?: [Length](ts-types.md#length)
} | 定义组件的样式。
- strokeWidth: 设置进度条宽度(不支持百分比设置)。从API version9开始,环形进度条设置宽度大于等于半径时,默认修改宽度至半径值的二分之一。
默认值:4.0Vp
- scaleCount: 设置环形进度条总刻度数。
默认值:120
- scaleWidth: 设置环形进度条刻度粗细(不支持百分比设置),刻度粗细大于进度条宽度时,为系统默认粗细。
默认值:2.0Vp
从API version 9开始,该接口支持在ArkTS卡片中使用。 | +## 事件 + +支持[通用事件](ts-universal-events-click.md)。 ## 示例 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md index 6f8df5055fb91666b7d05219d38c0676f2fc4312..d1a5a97d999faa05df7d5ab6c97a22d46b4b67c6 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md @@ -23,20 +23,22 @@ Select(options: Array\<[SelectOption](#selectoption对象说明)\>) ## 属性 +除支持[通用属性](ts-universal-attributes-size.md)外,还支持以下属性: + | 名称 | 参数类型 | 描述 | | ----------------------- | ------------------------------------- | --------------------------------------------- | | selected | number | 设置下拉菜单初始选项的索引,第一项的索引为0。
当不设置selected属性时,默认选择值为-1,菜单项不选中。 | -| value | string | 设置下拉按钮本身的文本内容。 | -| font | [Font](ts-types.md#font) | 设置下拉按钮本身的文本样式。 | -| fontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉按钮本身的文本颜色。 | -| selectedOptionBgColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单选中项的背景色。 | -| selectedOptionFont | [Font](ts-types.md#font) | 设置下拉菜单选中项的文本样式。 | -| selectedOptionFontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单选中项的文本颜色。 | -| optionBgColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单项的背景色。 | -| optionFont | [Font](ts-types.md#font) | 设置下拉菜单项的文本样式。 | -| optionFontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单项的文本颜色。 | -| space10+ | [Length](ts-types.md#length) | 设置下拉菜单项的文本与箭头之间的间距。 | -| arrowPosition10+ | [ArrowPosition](#arrowposition10枚举说明) | 设置下拉菜单项的文本与箭头之间的对齐方式。 | +| value | string | 设置下拉按钮本身的文本内容。当菜单选中时默认会替换为菜单项文本内容。 | +| font | [Font](ts-types.md#font) | 设置下拉按钮本身的文本样式。
默认值:
{
size: '16fp',
weight: FontWeight.Medium
} | +| fontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉按钮本身的文本颜色。
默认值:'\#E6FFFFFF' | +| selectedOptionBgColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单选中项的背景色。
默认值:'\#33007DFF' | +| selectedOptionFont | [Font](ts-types.md#font) | 设置下拉菜单选中项的文本样式。
默认值:
{
size: '16fp',
weight: FontWeight.Regular
} | +| selectedOptionFontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单选中项的文本颜色。
默认值:'\#ff007dff' | +| optionBgColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单项的背景色。
默认值:'\#ffffffff' | +| optionFont | [Font](ts-types.md#font) | 设置下拉菜单项的文本样式。
默认值:
{
size: '16fp',
weight: FontWeight.Regular
} | +| optionFontColor | [ResourceColor](ts-types.md#resourcecolor) | 设置下拉菜单项的文本颜色。
默认值:'\#ff182431' | +| space10+ | [Length](ts-types.md#length) | 设置下拉菜单项的文本与箭头之间的间距。
**说明:**
不支持设置百分比。 | +| arrowPosition10+ | [ArrowPosition](#arrowposition10枚举说明) | 设置下拉菜单项的文本与箭头之间的对齐方式。
默认值:ArrowPosition.END | ## ArrowPosition10+枚举说明 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md index 94f2a294869b0ccf6009b66f1d9bcb63119bf43a..84eab79ac1de7d932babff111b590b91df8d0598 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md @@ -38,7 +38,7 @@ AlphabetIndexer(value: {arrayValue: Array<string>, selected: number}) | selectedFont | [Font](ts-types.md#font) | 设置选中项文字样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | | popupFont | [Font](ts-types.md#font) | 设置提示弹窗字体样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | | font | [Font](ts-types.md#font) | 设置字母索引条默认字体样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | -| itemSize | string \| number | 设置字母索引条字母区域大小,字母区域为正方形,即正方形边长。不支持设置为百分比。
默认值:24.0。 | +| itemSize | string \| number | 设置字母索引条字母区域大小,字母区域为正方形,即正方形边长。不支持设置为百分比。
默认值:24.0
单位:vp | | alignStyle | value: [IndexerAlign](#indexeralign枚举说明),
offset10+?: [Length](ts-types.md#length) | value:设置字母索引条弹框的对齐样式,支持弹窗显示在索引条右侧和左侧。
默认值: IndexerAlign.Right。
offset:设置提示弹窗与索引条之间间距,大于等于0为有效值,在不设置或设置为小于0的情况下间距与popupPosition.x相同。 | | selected | number | 设置选中项索引值。
默认值:0。 | | popupPosition | [Position](ts-types.md#position8) | 设置弹出窗口相对于索引器条上边框中点的位置。
默认值:{x:96.0, y:48.0}。 | @@ -56,7 +56,7 @@ AlphabetIndexer(value: {arrayValue: Array<string>, selected: number}) ## 事件 -仅支持以下事件: +除支持[通用事件](ts-universal-events-click.md)外,还支持以下事件: | 名称 | 功能描述 | | -------- | -------- | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md index 89b012e6a400ccf07a4237c1c9117074453607fa..a91ed009ce9fd5f714a67dec13a835200d58ac71 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md @@ -11,6 +11,10 @@ 支持单个子组件。 +> **说明:** +> +> 子组件类型:系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 + ## 接口 @@ -22,12 +26,12 @@ **参数:** -| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 | -| -------- | -------- | -------- | -------- | -------- | -| count | number | 是 | - | 设置提醒消息数。 | -| position | [BadgePosition](#badgeposition枚举说明) | 否 | BadgePosition.RightTop | 设置提示点显示位置。 | -| maxCount | number | 否 | 99 | 最大消息数,超过最大消息时仅显示maxCount+。 | -| style | [BadgeStyle](#badgestyle对象说明) | 是 | - | Badge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。 | +| 参数名 | 参数类型 | 必填 | 参数描述 | +| -------- | -------- | -------- | -------- | +| count | number | 是 | 设置提醒消息数。
**说明:**
小于等于0时不显示信息标记。 | +| position | [BadgePosition](#badgeposition枚举说明) | 否 | 设置提示点显示位置。
默认值:BadgePosition.RightTop | +| maxCount | number | 否 | 最大消息数,超过最大消息时仅显示maxCount+。
默认值:99 | +| style | [BadgeStyle](#badgestyle对象说明) | 是 | Badge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。 | **方法2:** Badge(value: {value: string, position?: BadgePosition, style: BadgeStyle}) @@ -57,15 +61,23 @@ 从API version 9开始,该接口支持在ArkTS卡片中使用。 -| 名称 | 类型 | 必填 | 默认值 | 描述 | -| ------------------------- | ------------------------------------------------------------ | ---- | ----------------- | ------------------------------------------------------------ | -| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | Color.White | 文本颜色。 | -| fontSize | number \| string | 否 | 10 | 文本大小,单位vp。 | -| badgeSize | number \| string | 否 | 16 | Badge的大小,单位vp。不支持百分比形式设置。当设置为非法值时,按照默认值处理。 | -| badgeColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | Color.Red | Badge的颜色。 | -| fontWeight10+ | number \|[FontWeight](ts-appendix-enums.md#fontweight) \| string | 否 | FontWeight.Normal | 设置文本的字体粗细。 | -| borderColor10+ | [ResourceColor](ts-types.md#resourcecolor) | 否 | Color.Red | 底板描边颜色。 | -| borderWidth10+ | [Length](ts-types.md#length) | 否 | 1.0vp | 底板描边粗细。 | +| 名称 | 类型 | 必填 | 描述 | +| ------------------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 文本颜色。
默认值:Color.White | +| fontSize | number \| string | 否 | 文本大小。
默认值:10
单位:vp
**说明:**
不支持设置百分比。 | +| badgeSize | number \| string | 否 | Badge的大小。
默认值:16
单位:vp
**说明:**
不支持设置百分比。当设置为非法值时,按照默认值处理。 | +| badgeColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | Badge的颜色。
默认值:Color.Red | +| fontWeight10+ | number \|[FontWeight](ts-appendix-enums.md#fontweight) \| string | 否 | 设置文本的字体粗细。
默认值:FontWeight.Normal
**说明:**
不支持设置百分比。 | +| borderColor10+ | [ResourceColor](ts-types.md#resourcecolor) | 否 | 底板描边颜色。 | +| borderWidth10+ | [Length](ts-types.md#length) | 否 | 底板描边粗细。
默认值:1
单位:vp
**说明:**
不支持设置百分比。 | + +## 属性 + +支持[通用属性](ts-universal-attributes-size.md)。 + +## 事件 + +支持[通用事件](ts-universal-events-click.md)。 ## 示例 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-grid.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-grid.md index 25c8005fdeea7e965621140a00e2ae8f53e96b07..3aada9151e8f1584403809919ec3ea7722075db9 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-grid.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-grid.md @@ -21,7 +21,7 @@ > > ForEach/LazyForEach语句中,会计算展开所有子节点索引值。 > -> if/else/ForEach/LazyForEach发生变化以后,会更新子节点索引值。 +> [if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载)发生变化以后,会更新子节点索引值。 > > Grid子组件的visibility属性设置为Hidden或None时依然会计算索引值。 > diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-list.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-list.md index d90477e50c0166840c2d6cd575c4dc32768b7f5a..a3612ac4c429c5f009e3d3fa7917a49d83d6dbfa 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-list.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-list.md @@ -22,7 +22,7 @@ > > ForEach/LazyForEach语句中,会计算展开所有子节点索引值。 > -> if/else/ForEach/LazyForEach发生变化以后,会更新子节点索引值。 +> [if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载)发生变化以后,会更新子节点索引值。 > > ListItemGroup作为一个整体计算一个索引值,ListItemGroup内部的ListItem不计算索引值。 > diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md index ec239c8400514c7e41cb3b5f37cbee6afd6a0fb0..08022baa52e2ff206b0e3e00272f4af557cff536 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md @@ -11,6 +11,10 @@ 可以包含子组件。 +> **说明:** +> +> 子组件类型:系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 + ## 接口 @@ -20,19 +24,20 @@ Panel(show: boolean) | 参数名 | 参数类型 | 必填 | 参数描述 | | -------- | -------- | -------- | -------- | -| show | boolean | 是 | 控制Panel显示或隐藏。 | - +| show | boolean | 是 | 控制Panel显示或隐藏。
**说明:**
如果设置为false时,则不占位隐藏。[Visible.None](ts-universal-attributes-visibility.md)或者show之间有一个生效时,都会生效不占位隐藏。 | ## 属性 +除支持[通用属性](ts-universal-attributes-size.md)外,还支持以下属性: + | 名称 | 参数类型 | 描述 | | -------- | -------- | -------- | | type | [PanelType](#paneltype枚举说明) | 设置可滑动面板的类型。
默认值:PanelType.Foldable | -| mode | [PanelMode](#panelmode枚举说明) | 设置可滑动面板的初始状态。 | +| mode | [PanelMode](#panelmode枚举说明) | 设置可滑动面板的初始状态。
默认值:PanelMode.Half | | dragBar | boolean | 设置是否存在dragbar,true表示存在,false表示不存在。
默认值:true | -| fullHeight | string \| number | 指定PanelMode.Full状态下的高度。 | -| halfHeight | string \| number | 指定PanelMode.Half状态下的高度,默认为屏幕尺寸的一半。 | -| miniHeight | string \| number | 指定PanelMode.Mini状态下的高度。 | +| fullHeight | string \| number | 指定PanelMode.Full状态下的高度。
默认值:当前组件主轴大小减去8vp空白区
**说明:**
不支持设置百分比。 | +| halfHeight | string \| number | 指定PanelMode.Half状态下的高度。
默认值:当前组件主轴大小的一半。
**说明:**
不支持设置百分比。 | +| miniHeight | string \| number | 指定PanelMode.Mini状态下的高度。
默认值:48
单位:vp
**说明:**
不支持设置百分比。 | | show | boolean | 当滑动面板弹出时调用。 | | backgroundMask9+|[ResourceColor](ts-types.md#resourcecolor)|指定Panel的背景蒙层。| @@ -52,9 +57,10 @@ Panel(show: boolean) | Half | 类型为foldable和temporary时,为类半屏状态;类型为minibar,则不生效。 | | Full | 类全屏状态。 | - ## 事件 +除支持[通用事件](ts-universal-events-click.md)外,还支持以下事件: + | 名称 | 功能描述 | | -------- | -------- | | onChange(event: (width: number, height: number, mode: PanelMode) => void) | 当可滑动面板发生状态变化时触发, 返回的height值为内容区高度值,当dragbar属性为true时,panel本身的高度值为dragbar高度加上内容区高度。 | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-refresh.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-refresh.md index 1d4f7f8f449ecc9e3fc308bd34e84ea5518e7ba4..125dfbf58a1bb4c1e6aaa084128bd44f2dc83e35 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-refresh.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-refresh.md @@ -25,10 +25,14 @@ Refresh\(value: \{ refreshing: boolean, offset?: number | string , fr | friction | number \| string | 否 | 下拉摩擦系数,取值范围为0到100。
默认值:62
- 0表示下拉刷新容器不跟随手势下拉而下拉。
- 100表示下拉刷新容器紧紧跟随手势下拉而下拉。
- 数值越大,下拉刷新容器跟随手势下拉的反应越灵敏。 | | builder | [CustomBuilder](ts-types.md#custombuilder8)10+ | 否 | 下拉时,自定义刷新样式的组件。 | +## 属性 +支持[通用属性](ts-universal-attributes-size.md)。 ## 事件 +除支持[通用事件](ts-universal-events-click.md)外,还支持以下事件: + | 名称 | 描述 | | -------- | -------- | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md index 9c65d75a6d4ac685e9020c1b12a080edc29303e4..649fb56e53c29400fe39babced4e18e3ef2ab2aa 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md @@ -13,7 +13,7 @@ > **说明:** > -> - 子组件类型:系统组件和自定义组件,不支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](quick-start/arkts-rendering-control.md#数据懒加载))。 +> - 子组件类型:系统组件和自定义组件,不支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 > - 子组件个数:必须且仅包含2个子组件。 > - 子组件个数异常时:3个或以上子组件,显示第一个和第二个。1个子组件,显示侧边栏,内容区为空白。 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md index 8867318c70c437496adfa85106e9e4b218d8f34c..451c9c0d672859c219971da56f41239fe629ae8b 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md @@ -11,6 +11,10 @@ 可以包含子组件。 +> **说明:** +> +> 子组件类型:系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 + ## 接口 @@ -29,23 +33,23 @@ Swiper(controller?: SwiperController) | 名称 | 参数类型 | 描述 | | --------------------------- | ---------------------------------------- | ---------------------------------------- | -| index | number | 设置当前在容器中显示的子组件的索引值。
默认值:0 | -| autoPlay | boolean | 子组件是否自动播放。
默认值:false | +| index | number | 设置当前在容器中显示的子组件的索引值。
默认值:0
**说明:**
设置小于0或大于等于子组件数量时,按照默认值0处理。 | +| autoPlay | boolean | 子组件是否自动播放。
默认值:false
**说明:**
loop为false时,自动轮播到最后一页时停止轮播。手势切换后不是最后一页时继续播放。 | | interval | number | 使用自动播放时播放的时间间隔,单位为毫秒。
默认值:3000 | | indicator10+ | [DotIndicator](#dotindicator) \| [DigitIndicator](#digitindicator) \| boolean | 设置可选导航点指示器样式。
\- DotIndicator:圆点指示器样式。
\- DigitIndicator:数字指示器样式。
\- boolean:是否启用导航点指示器。
  默认值:true
  默认类型:DotIndicator | | loop | boolean | 是否开启循环。
设置为true时表示开启循环,在LazyForEach懒循环加载模式下,加载的组件数量建议大于5个。
默认值:true | | duration | number | 子组件切换的动画时长,单位为毫秒。
默认值:400 | | vertical | boolean | 是否为纵向滑动。
默认值:false | -| itemSpace | number \| string | 设置子组件与子组件之间间隙。
默认值:0 | +| itemSpace | number \| string | 设置子组件与子组件之间间隙。
默认值:0
**说明:**
不支持设置百分比。 | | displayMode | SwiperDisplayMode | 主轴方向上元素排列的模式,优先以displayCount设置的个数显示,displayCount未设置时本属性生效。
默认值:SwiperDisplayMode.Stretch | | cachedCount8+ | number | 设置预加载子组件个数。
默认值:1 | | disableSwipe8+ | boolean | 禁用组件滑动切换功能。
默认值:false | | curve8+ | [Curve](ts-appendix-enums.md#curve) \| string | 设置Swiper的动画曲线,默认为淡入淡出曲线,常用曲线参考[Curve枚举说明](ts-appendix-enums.md#curve),也可以通过[插值计算](../apis/js-apis-curve.md)模块提供的接口创建自定义的插值曲线对象。
默认值:Curve.Ease | | indicatorStyle8+ | {
left?: [Length](ts-types.md#length),
top?: [Length](ts-types.md#length),
right?: [Length](ts-types.md#length),
bottom?: [Length](ts-types.md#length),
size?: [Length](ts-types.md#length),
mask?: boolean,
color?: [ResourceColor](ts-types.md),
selectedColor?: [ResourceColor](ts-types.md)
} | 设置导航点样式:
\- left: 设置导航点距离Swiper组件左边的距离。
\- top: 设置导航点距离Swiper组件顶部的距离。
\- right: 设置导航点距离Swiper组件右边的距离。
\- bottom: 设置导航点距离Swiper组件底部的距离。
\- size: 设置导航点的直径。
\- mask: 设置是否显示导航点蒙层样式。
\- color: 设置导航点的颜色。
\- selectedColor: 设置选中的导航点的颜色。 | -| displayCount8+ | number\|string | 设置一页内元素显示个数。
默认值:1 | -| effectMode8+ | [EdgeEffect](ts-appendix-enums.md#edgeeffect) | 滑动效果,目前支持的滑动效果参见EdgeEffect的枚举说明。
默认值:EdgeEffect.Spring | -| nextMargin10+ |
[Length](ts-types.md#length)
| 后边距,用于露出后一项的一小部分。当cachedCount设置值小于等于0时,此时会露出后一项的一小部分,但无法加载子组件。当displayCount设置为1时,此参数设置无效。
默认值:0 | -| prevMargin10+ |
[Length](ts-types.md#length)
| 前边距,用于露出前一项的一小部分。当cachedCount设置值小于等于0时,此时会露出前一项的一小部分,但无法加载子组件。当displayCount设置为1时,此参数设置无效。
默认值:0 | +| displayCount8+ | number\|string | 设置一页内元素显示个数。
默认值:1
**说明:**
字符串类型仅支持设置为'auto',显示效果同SwiperDisplayMode.AutoLinear。
使用number类型时,子组件按照主轴均分Swiper宽度(减去displayCount-1的itemSpace)的方式进行主轴拉伸(收缩)布局。 | +| effectMode8+ | [EdgeEffect](ts-appendix-enums.md#edgeeffect) | 滑动效果,目前支持的滑动效果参见EdgeEffect的枚举说明。
默认值:EdgeEffect.Spring
**说明:**
控制器接口调用时不生效回弹。 | +| nextMargin10+ |
[Length](ts-types.md#length)
| 后边距,用于露出后一项的一小部分。当cachedCount设置值小于等于0时,此时会露出后一项的一小部分,但无法加载子组件。当displayCount设置为1时,此参数设置无效。
默认值:0 | +| prevMargin10+ |
[Length](ts-types.md#length)
| 前边距,用于露出前一项的一小部分。当cachedCount设置值小于等于0时,此时会露出前一项的一小部分,但无法加载子组件。当displayCount设置为1时,此参数设置无效。
默认值:0 | ## SwiperDisplayMode枚举说明 @@ -62,13 +66,13 @@ Swiper容器组件的控制器,可以将此对象绑定至Swiper组件,然 showNext(): void -翻至下一页。 +翻至下一页。翻页带动效切换过程,时长通过duration指定。 ### showPrevious showPrevious(): void -翻至上一页。 +翻至上一页。翻页带动效切换过程,时长通过duration指定。 ### finishAnimation @@ -99,13 +103,13 @@ finishAnimation(callback?: () => void): void | 参数名 | 参数类型 | 必填项 | 参数描述 | | ------------------ | ------------- | ------ | ------------------------------------------------------ | -| itemWidth | [Length](ts-types.md#length) | 否 | 设置Swiper组件圆点导航指示器的宽。 | -| itemHeight | [Length](ts-types.md#length) | 否 | 设置Swiper组件圆点导航指示器的高。 | -| selectedItemWidth | [Length](ts-types.md#length) | 否 | 设置选中Swiper组件圆点导航指示器的宽。 | -| selectedItemHeight | [Length](ts-types.md#length) | 否 | 设置选中Swiper组件圆点导航指示器的高。 | -| mask | boolean | 否 | 设置是否显示Swiper组件圆点导航指示器的蒙版样式。 | -| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置Swiper组件圆点导航指示器的颜色。 | -| selectedColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置选中Swiper组件圆点导航指示器的颜色。 | +| itemWidth | [Length](ts-types.md#length) | 否 | 设置Swiper组件圆点导航指示器的宽。
默认值:6
单位:vp | +| itemHeight | [Length](ts-types.md#length) | 否 | 设置Swiper组件圆点导航指示器的高。
默认值:6
单位:vp | +| selectedItemWidth | [Length](ts-types.md#length) | 否 | 设置选中Swiper组件圆点导航指示器的宽。
默认值:6
单位:vp | +| selectedItemHeight | [Length](ts-types.md#length) | 否 | 设置选中Swiper组件圆点导航指示器的高。
默认值:6
单位:vp | +| mask | boolean | 否 | 设置是否显示Swiper组件圆点导航指示器的蒙版样式。
默认值:false | +| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置Swiper组件圆点导航指示器的颜色。
默认值:'\#007DFF' | +| selectedColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置选中Swiper组件圆点导航指示器的颜色。
默认值:'\#182431'(10%透明度) | ### DigitIndicator @@ -113,29 +117,20 @@ finishAnimation(callback?: () => void): void | 参数名 | 参数类型 | 必填项 | 参数描述 | | ----------------- | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ | -| fontColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置Swiper组件数字导航点的字体颜色。 | -| selectedFontColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置选中Swiper组件数字导航点的字体颜色。 | -| digitFont | {
size?:[Length](ts-types.md#length)
weight?:number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string
} | 否 | 设置Swiper组件数字导航点的字体样式:
\- size:数字导航点指示器的字体大小。
\- weight:数字导航点指示器的字重。 | -| selectedDigitFont | {
size?:[Length](ts-types.md#length)
weight?:number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string
} | 否 | 设置选中Swiper组件数字导航点的字体样式:
\- size:数字导航点选中指示器的字体大小。
\- weight:数字导航点选中指示器的字重。 | - - +| fontColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置Swiper组件数字导航点的字体颜色。
默认值:'\#ff182431' | +| selectedFontColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 设置选中Swiper组件数字导航点的字体颜色。
默认值:'\#ff182431' | +| digitFont | {
size?:[Length](ts-types.md#length)
weight?:number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string
} | 否 | 设置Swiper组件数字导航点的字体样式:
\- size:数字导航点指示器的字体大小。
默认值:14vp
\- weight:数字导航点指示器的字重。 | +| selectedDigitFont | {
size?:[Length](ts-types.md#length)
weight?:number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string
} | 否 | 设置选中Swiper组件数字导航点的字体样式:
\- size:数字导航点选中指示器的字体大小。
默认值:14vp
\- weight:数字导航点选中指示器的字重。 | ## 事件 -### onChange - -onChange(event: (index: number) => void) - -当前显示的子组件索引变化时触发该事件,返回值为当前显示的子组件的索引值。 - -**说明**:Swiper组件结合LazyForEach使用时,不能在onChange事件里触发子页面UI的刷新。 - -**返回值:** - -| 名称 | 类型 | 参数描述 | -| --------- | ---------- | -------- | -| index | number | 当前显示元素的索引。 | +除支持[通用事件](ts-universal-events-click.md)外,还支持以下事件: +| 名称 | 功能描述 | +| ------------------------------------------------------------ | ------------------------------------------------------------ | +| onChange(event: (index: number) => void) | 当前显示的子组件索引变化时触发该事件,返回值为当前显示的子组件的索引值。
- index:当前显示元素的索引。
**说明:**
Swiper组件结合LazyForEach使用时,不能在onChange事件里触发子页面UI的刷新。 | +| onAnimationStart9+(event: (index: number) => void) | 切换动画开始时触发该回调。
- index:当前显示元素的索引。
**说明:**
参数为动画开始前的index值(不是最终结束动画的index值),多列Swiper时,index为最左侧组件的索引。 | +| onAnimationEnd9+(event: (index: number) => void) | 切换动画结束时触发该回调。
- index:当前显示元素的索引。
**说明:**
当Swiper切换动效结束时触发,包括动画过程中手势中断,通过SwiperController调用finishAnimatio。参数为动画结束后的index值,多列Swiper时,index为最左侧组件的索引。 | ## 示例 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md index f43c2e8866b0aff7ad3cf48fee76a6137fd6a53a..cf5dd6cc428ae738c28fd4094ed70064f5b9de14 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md @@ -13,7 +13,7 @@ > **说明:** > -> 可内置系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](quick-start/arkts-rendering-control.md#数据懒加载))。 +> 可内置系统组件和自定义组件,支持渲染控制类型([if/else](../../quick-start/arkts-rendering-control.md#条件渲染)、[ForEach](../../quick-start/arkts-rendering-control.md#循环渲染)和[LazyForEach](../../quick-start/arkts-rendering-control.md#数据懒加载))。 ## 接口 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md b/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md index 6c92ac2d49ca83c70e4c814d64bf823804c9db33..a9d7d861eb286acef5bfe4c2efc1563a41ae9d1c 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md @@ -8,10 +8,10 @@ > -| 名称 | 参数 | 参数描述 | -| ------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| PageTransitionEnter | {
type?: RouteType,
duration?: number,
curve?: [Curve](ts-appendix-enums.md#curve) \| string,
delay?: number
} | 设置当前页面的自定义入场动效。
- type:页面转场效果生效的路由类型。
默认值:RouteType.None。
**说明:**
没有匹配时使用系统默认的页面转场效果(根据设备可能会有差异),如需禁用系统默认页面转场效果,可以指定duration为0。
- duration:动画的时长
单位:毫秒
- curve:动画曲线。string类型的取值支持"ease"、"ease-in"、"ease-out"、"ease-in-out"、"extreme-deceleration"、"fast-out-linear-in"、"fast-out-slow-in"、"friction"、"linear"、"linear-out-slow-in"、"rhythm"、"sharp"、"smooth"。
默认值:Curve.Linear
- delay:动画延迟时长。
默认值:0
单位:毫秒 | -| PageTransitionExit | {
type?: RouteType,
duration?: number,
curve?: [Curve](ts-appendix-enums.md#curve) \| string,
delay?: number
} | 设置当前页面的自定义退场动效。
- type:页面转场效果生效的路由类型。
默认值:RouteType.None。
**说明:**
没有匹配时使用系统默认的页面转场效果(根据设备可能会有差异),如需禁用系统默认页面转场效果,可以指定duration为0。
- duration:动画的时长,单位为毫秒。
- curve:动画曲线,string类型取值与PageTransitionEnter相同。
 默认值:Curve.Linear
- delay:动画延迟时长。
默认值:0
单位:毫秒 | +| 名称 | 参数 | 必填 | 参数描述 | +| ------------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| PageTransitionEnter | {
type?: RouteType,
duration?: number,
curve?: [Curve](ts-appendix-enums.md#curve) \| string,
delay?: number
} | 否 | 设置当前页面的自定义入场动效。
- type:页面转场效果生效的路由类型。
默认值:RouteType.None。
**说明:**
没有匹配时使用系统默认的页面转场效果(根据设备可能会有差异),如需禁用系统默认页面转场效果,可以指定duration为0。
- duration:动画的时长
单位:毫秒
- curve:动画曲线。string类型的取值支持"ease"、"ease-in"、"ease-out"、"ease-in-out"、"extreme-deceleration"、"fast-out-linear-in"、"fast-out-slow-in"、"friction"、"linear"、"linear-out-slow-in"、"rhythm"、"sharp"、"smooth"。
默认值:Curve.Linear
- delay:动画延迟时长。
默认值:0
单位:毫秒 | +| PageTransitionExit | {
type?: RouteType,
duration?: number,
curve?: [Curve](ts-appendix-enums.md#curve) \| string,
delay?: number
} | 否 | 设置当前页面的自定义退场动效。
- type:页面转场效果生效的路由类型。
默认值:RouteType.None。
**说明:**
没有匹配时使用系统默认的页面转场效果(根据设备可能会有差异),如需禁用系统默认页面转场效果,可以指定duration为0。
- duration:动画的时长,单位为毫秒。
- curve:动画曲线,string类型取值与PageTransitionEnter相同。
 默认值:Curve.Linear
- delay:动画延迟时长。
默认值:0
单位:毫秒 | ## RouteType枚举说明 diff --git a/zh-cn/application-dev/reference/errorcodes/Readme-CN.md b/zh-cn/application-dev/reference/errorcodes/Readme-CN.md index 6267fa52fc5786b5b355242dcced764b3112ea15..6d2b4759009d19670e0b20ca65cbf31246c8ae97 100644 --- a/zh-cn/application-dev/reference/errorcodes/Readme-CN.md +++ b/zh-cn/application-dev/reference/errorcodes/Readme-CN.md @@ -57,6 +57,7 @@ - [网络共享错误码](errorcode-net-sharing.md) - [策略管理错误码](errorcode-net-policy.md) - 通信与连接 + - [Bluetooth错误码](errorcode-bluetoothManager.md) - [WIFI错误码](errorcode-wifi.md) - [NFC错误码](errorcode-nfc.md) - [RPC错误码](errorcode-rpc.md) diff --git a/zh-cn/application-dev/reference/errorcodes/errorcode-ability.md b/zh-cn/application-dev/reference/errorcodes/errorcode-ability.md index 202bd9d425c7f583b5db8c075e6b3df57fc196f0..1ef393a59db3a5110c1510b8c4683812917fc0fa 100644 --- a/zh-cn/application-dev/reference/errorcodes/errorcode-ability.md +++ b/zh-cn/application-dev/reference/errorcodes/errorcode-ability.md @@ -186,7 +186,7 @@ The context does not exist. 请检查上下文对象是否可用。 -## 16000012 上一个Ability未启动完成,先缓存在队列中等待后续启动。 +## 16000017 上一个Ability未启动完成,先缓存在队列中等待后续启动。 **错误信息** diff --git a/zh-cn/application-dev/reference/errorcodes/errorcode-data-rdb.md b/zh-cn/application-dev/reference/errorcodes/errorcode-data-rdb.md index 1b6a13893ed3c8dd093745f60e27ec866bd4e0d0..5fee0c6d8619bee3085668be83cc2450769f7422 100644 --- a/zh-cn/application-dev/reference/errorcodes/errorcode-data-rdb.md +++ b/zh-cn/application-dev/reference/errorcodes/errorcode-data-rdb.md @@ -81,3 +81,22 @@ The column value is null or the column type is incompatible. 1. 检查结果集是否为空。 2. 检查结果集当前行号、列号是否超出范围。 3. 检查当前列数据类型是否支持。 + +## 14800047 WAL文件大小超过默认上限 + +**错误信息** + +The WAL file size exceeds the default limit. + +**错误描述** + +WAL文件大小超过默认上限(200M)。 + +**可能原因** + +在开启读事务或者结果集未关闭的情况下,不断执行增删改操作,导致WAL文件大小超过默认上限。 + +**处理步骤** + +1. 检查结果集或者事务是否未关闭。 +2. 关闭所有的结果集或者事务。 diff --git a/zh-cn/application-dev/security/huks-appendix.md b/zh-cn/application-dev/security/huks-appendix.md index 317d78b22dd3088f4179a83d62238bdb97048526..1a4e617a098266e85399656e88b3dab4261dfdc9 100644 --- a/zh-cn/application-dev/security/huks-appendix.md +++ b/zh-cn/application-dev/security/huks-appendix.md @@ -1,70 +1,91 @@ # 通用密钥库密码算法规格 +## 规格实现范围说明 +本文档将说明密钥管理服务规格全景,面向OpenHarmony的厂商适配密钥管理服务规格分为必选规格和可选规格。必选规格为所有厂商均支持的算法规格。而对于可选规格,厂商将基于实际情况决定是否实现,如需使用,请查阅具体厂商提供的说明,确保规格支持再使用。 +**建议开发者使用必选规格开发应用,可保证全平台兼容。** + ## 支持的算法类型及参数组合 ### 导入\生成密钥规格 -| 算法                    | API级别 | 支持的密钥长度 | -| -------------- | :---------------: | ------------------ | -| AES | 8+ | 128、192、256 | -| RSA | 8+ | 512、768、1024、2048、3072、4096 | -| HMAC | 8+ | 8-1024(含),必须是8的倍数 | -| ECC | 8+ | 224、256、384、521 | -| ED25519 | 8+ | 256 | -| X25519 | 8+ | 256 | -| DSA | 8+ | 8-1024(含),8的倍数 | -| DH | 8+ | 2048、3072、4096 | -| SM2 | 9+ | 256 | -| SM3 | 9+ | 256 | -| SM4 | 9+ | 128 | - -### 加密解密 - -| 算法                    | API级别 | 备注 | -| ----------------------- | :----: | ---------------- | -| AES/CBC/NoPadding
AES/ECB/NoPadding
AES/CTR/NoPadding
AES/GCM/NoPadding
AES/CBC/PKCS7
AES/ECB/PKCS7 | 8+ | 1. CBC\ECB\CTR模式IV参数必选
2. GCM模式下Nonce、AAD、AEAD参数必选 | -| RSA/ECB/NoPadding
RSA/ECB/PKCS1_V1_5
RSA/ECB/OAEP | 8+ | | -| SM4/CTR/NoPadding
SM4/ECB/NoPadding
SM4/CBC/NoPadding
SM4/ECB/PKCS7
SM4/CBC/PKCS7 | 9+ | | - - - -### 签名验签 - - -| 算法 | API级别 | 备注 | -| --------- | :----------: | ----------------- | -| RSA/MD5/PKCS1_V1_5
RSA/SHA1/PKCS1_V1_5
RSA/SHA224/PKCS1_V1_5
RSA/SHA256/PKCS1_V1_5
RSA/SHA384/PKCS1_V1_5
RSA/SHA512/PKCS1_V1_5
RSA/SHA1/PSS
RSA/SHA224/PSS
RSA/SHA256/PSS
RSA/SHA384/PSS | 8+ | | -| RSA/NoDigest/PKCS1_V1_5 | 9+ | | -| DSA/SHA1
DSA/SHA224
DSA/SHA256
DSA/SHA384
DSA/SHA512 | 8+ | | -| DSA/NoDigest | 9+ | | -| ECC/SHA1
ECC/SHA224
ECC/SHA256
ECC/SHA384
ECC/SHA512 | 8+ | | -| ECC/NoDigest | 9+ | | -| ED25519/SHA1
ED25519/SHA224
ED25519/SHA256
ED25519/SHA384
ED25519/SHA512 |8+ | | -| ED25519/NoDigest | 9+ | | -| SM2/SM3
SM2/NoDigest |9+ | | - -### 密钥协商 - -| 算法                    | API级别 | 备注 | -| ------ | :-----------: | ------------------------------ | -| ECDH | 8+ | 协商密钥类型为ECC类型密钥 | -| DH | 8+ | | -| X25519 | 8+ | | - -### 密钥派生 - -| 算法                    |API级别 | 派生密钥及长度 | 备注 | -| ------------------------- | :-----------: | ------------ | ----------------- | -| HKDF/SHA256
HKDF/SHA384
HKDF/SHA512 | 8+ | 算法:AES、HMAC、SM4 长度:256、384、512 | 派生出的密钥可以存储到HUKS或者直接返回明文 | -| PBKDF2/SHA256
PBKDF2/SHA384
PBKDF2/SHA512 | 8+ | 算法:AES、HMAC、SM4 长度:256、384、512 | 派生出的密钥可以存储到HUKS或者直接返回明文 | +| 算法                    | API级别 | 支持的密钥长度 |是否必选规格| +| -------------- | :---------------: | ------------------ |:------------------: | +| AES | 8+ | 128、192、256 | 是 | +| RSA | 8+ | 512、768、1024|否| +| RSA | 8+ | 2048、3072、4096 |是| +| HMAC | 8+ | 8-1024(含),必须是8的倍数 |是| +| ECC | 8+ | 224 |否| +| ECC | 8+ | 256、384、521 |是| +| ED25519 | 8+ | 256 |是| +| X25519 | 8+ | 256 |是| +| DSA | 8+ | 8-1024(含),8的倍数 |否| +| DH | 8+ | 2048 |是| +| DH | 8+ | 3072、4096 |否| +| SM2 | 9+ | 256 |是| +| SM4 | 9+ | 128 |是| + +### 加密&解密流程算法与分组、填充模式的组合规格 + +| 算法/分组模式/填充模式                    | API级别 | 备注 |是否必选规格| +| ----------------------- | :----: | ---------------- | :----------------: | +| AES/ECB/NoPadding
AES/ECB/PKCS7 | 8+ | |否| +| AES/CBC/NoPadding
AES/CBC/PKCS7
AES/CTR/NoPadding| 8+ | IV参数必选 |是| +| AES/GCM/NoPadding | 8+ | Nonce、AAD、AEAD参数必选 |是| +| RSA/ECB/NoPadding
RSA/ECB/PKCS1_V1_5
RSA/ECB/OAEP | 8+ | OAEP填充模式支持的摘要算法:SHA256/SHA384/SHA512 | 是 | +| SM4/ECB/NoPadding
SM4/ECB/PKCS7
SM4/CBC/PKCS7 | 9+ | CBC模式下 IV 参数必选 |否 | +| SM4/CTR/NoPadding
SM4/CBC/NoPadding
| 9+ | IV 参数必选 |是 | + + + +### 签名&验签流程算法与摘要算法、填充模式的组合规格 + + +| 算法/摘要算法/填充模式 | API级别 | 备注 |是否必选规格| +| --------- | :----------: | ---------- | :-----------------: | +| RSA/MD5/PKCS1_V1_5
RSA/SHA1/PKCS1_V1_5
RSA/SHA224/PKCS1_V1_5
RSA/SHA224/PSS| 8+ | |否| +| RSA/SHA256/PKCS1_V1_5
RSA/SHA384/PKCS1_V1_5
RSA/SHA512/PKCS1_V1_5
RSA/SHA256/PSS
RSA/SHA384/PSS
RSA/SHA512/PSS | 8+ | | 是 +| RSA/NoDigest/PKCS1_V1_5 | 9+ |NoDigest 需要指定TAG HuksKeyDigest.HUKS_DIGEST_NONE |否| +| DSA/SHA1
DSA/SHA224
DSA/SHA256
DSA/SHA384
DSA/SHA512 | 8+ | |否| +| DSA/NoDigest | 9+ |NoDigest 需要指定TAG HuksKeyDigest.HUKS_DIGEST_NONE|否| +| ECC/SHA1
ECC/SHA224 | 8+ | |否| +| ECC/SHA256
ECC/SHA384
ECC/SHA512 | 8+ | |是| +| ECC/NoDigest | 9+ |NoDigest 需要指定TAG HuksKeyDigest.HUKS_DIGEST_NONE |否| +| ED25519/NoDigest | 8+ | NoDigest 需要指定TAG HuksKeyDigest.HUKS_DIGEST_NONE |否| +| SM2/SM3|9+ | |是| +| SM2/NoDigest |9+ | |否| + +### 密钥协商算法 + +| 算法                    | API级别 | 备注 | 是否必选规格| +| ------ | :-----------: | ------------------------------ |:-----------: | +| ECDH | 8+ | 协商密钥类型为ECC类型密钥 | 是| +| DH | 8+ | |是| +| X25519 | 8+ | |是| + +### HMAC 密钥长度与摘要组合规格 +| 摘要 | 密钥长度 | API级别 | 是否必选规格| +| ------ | :-----------: |:-----------: |:-----------: | +| SHA256 |192-1024(8的倍数)| 8+ | 是| +| SHA384 |256-1024(8的倍数) | 8+ | 是| +| SHA512 |256-1024(8的倍数)| 8+ | 是| +### 派生算法/摘要组合规格 + +| 算法/摘要   | 派生密钥的算法/长度     | 派生结果密钥可用算法/长度 | 备注 |API级别 |是否必选规格| +| ----------------- |-------------------------------- | ----------------------- | :------------: |:---------: |:--:| +| HKDF/SHA256 | AES/192-256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| +| HKDF/SHA384 | AES/256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| +|HKDF/SHA512 | AES/256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| +| PBKDF2/SHA256 | AES/192-256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| +| PBKDF2/SHA384 |AES/256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| +| PBKDF2/SHA512 | AES/256 | AES/128/192/256
HMAC/8-1024
SM4/128 | 派生密钥是业务基于三段式得到密钥会话结果,业务可决定派生密钥是否由HUKS管理(即密钥不出TEE)亦或是业务独立管理 |8+|是| ### 密钥证明 -| 算法                    |API级别 | 备注 | -| ------------------ | :-----: | ------------------------------------------------------------ | -| RSA | 9+ | 仅支持Padding为PSS的密钥 | -| ECC | 9+ | | -| X25519 | 9+ | | +| 算法                    |API级别 | 备注 | 是否必选规格| +| ------------------ | :-----: | ----------------------------- | :-------:| +| RSA | 9+ | 支持Padding为 PSS 与 PKCS1_V1_5的密钥 |是| +| ECC | 9+ | |是| +| X25519 | 9+ | |是| ## 密钥材料格式 针对不同密码算法的密钥对、公钥、私钥,HUKS定义了一套密钥材料格式。 diff --git a/zh-cn/device-dev/subsystems/figures/nnrt_dev_flow.png b/zh-cn/device-dev/subsystems/figures/nnrt_dev_flow.png index ab008db12eaae364195d7097b02af5a6f624c325..ca50b6ac1800e972a5a5f5dcb116771ac8730360 100644 Binary files a/zh-cn/device-dev/subsystems/figures/nnrt_dev_flow.png and b/zh-cn/device-dev/subsystems/figures/nnrt_dev_flow.png differ diff --git a/zh-cn/device-dev/subsystems/subsys-ai-nnrt-guide.md b/zh-cn/device-dev/subsystems/subsys-ai-nnrt-guide.md index d36d0755a47b526ff2210491de23201678b4c75c..02d436659491564874cd32956c6afbc33466369b 100644 --- a/zh-cn/device-dev/subsystems/subsys-ai-nnrt-guide.md +++ b/zh-cn/device-dev/subsystems/subsys-ai-nnrt-guide.md @@ -26,15 +26,15 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 ![架构图](./figures/nnrt_arch_diagram.png) -整个架构主要分为三层,AI应用在应用层,AI推理框架和NNRt在系统层,设备服务在芯片层。AI应用如要使用专用加速芯片模型推理,需要经过AI推理框架和NNRt才能调用到底层专用加速芯片,而NNRt就是负责适配底层各种专用加速芯片,它开放了标准统一的设备接口,众多的第三方芯片设备都可以通过HDI接口接入OHOS。 +整个架构主要分为三层,AI应用在应用层,AI推理框架和NNRt在系统层,设备服务在芯片层。AI应用如要使用专用加速芯片模型推理,需要经过AI推理框架和NNRt才能调用到底层专用加速芯片,而NNRt就是负责适配底层各种专用加速芯片,它开放了标准统一的设备接口,众多的第三方芯片设备都可以通过HDI接口接入OpenHarmony。 程序运行时,AI应用、AI推理框架、NNRt都在用户进程中,底层设备服务在服务进程中,NNRt根据HDI接口实现了HDI Client,服务端也需要根据HDI接口实现HDI Service,使得两个进程间能够跨进程通信。 -## NNRt开发指导 +## 开发指导 ### 场景介绍 -当需要将一款AI加速芯片接入NNRt的时候,可以参考下文,下文以rk3568芯片为例,展示rk3568 CPU如何通过HDI接口接入NNRt,并完成AI模型推理。 -> 依赖说明:该教程展示的rk3568 CPU接入NNRt并没有实际去写CPU的驱动,而是借用了Mindspore-Lite的CPU算子,故会依赖MindSpore-Lite的动态库以及头文件,实际开发时并不需要依赖MindSpore-Lite的任何库或者头文件。 +当需要将一款AI加速芯片接入NNRt的时候,可以参考下文。下文以RK3568芯片为例,展示RK3568 CPU如何通过HDI接口接入NNRt,并完成AI模型推理。 +> 依赖说明:该教程展示的RK3568 CPU接入NNRt并没有实际去写CPU的驱动,而是借用了MindSpore Lite的CPU算子,故会依赖MindSpore Lite的动态库以及头文件,实际开发时并不需要依赖MindSpore Lite的任何库或者头文件。 ### 开发流程 专用加速芯片接入NNRt的整体流程如下: @@ -45,242 +45,243 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 ### 开发步骤 开发者具体可通过以下步骤实现芯片对接NNRt: -1. 开源社区下载OpenHarmony的代码,编译drivers_interface部件,生成HDI接口的头文件。 - - 1. [下载源码](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/get-code/sourcecode-acquire.md)。 - - 2. 编译接口IDL文件。 - ```shell - ./build.sh --product-name productname –ccache --build-target drivers_interface_nnrt - ``` - > productname为产品名称,此处为rk3568. - - 编译完成后,在```out/rk3568/gen/drivers/interface/nnrt```目录下生成HDI头文件,默认语言类型为C++;若需要生成C类型的头文件,请在编译之前使用如下命令对```drivers/interface/nnrt/v1_0/BUILD.gn```文件中的```language```配置项进行设置。 - - ```shell - language = "c" - ``` - - 生成头文件目录如下所示: - ```text - out/rk3568/gen/drivers/interface/nnrt - └── v1_0 - ├── drivers_interface_nnrt__libnnrt_proxy_1.0_external_deps_temp.json - ├── drivers_interface_nnrt__libnnrt_stub_1.0_external_deps_temp.json - ├── innrt_device.h # 设备接口头文件 - ├── iprepared_model.h # 编译AI模型对象头文件 - ├── libnnrt_proxy_1.0__notice.d - ├── libnnrt_stub_1.0__notice.d - ├── model_types.cpp # AI模型结构定义实现文件 - ├── model_types.h # AI模型结构定义头文件 - ├── nnrt_device_driver.cpp # 设备驱动实现参考样例 - ├── nnrt_device_proxy.cpp - ├── nnrt_device_proxy.h - ├── nnrt_device_service.cpp # 设备服务端实现参考样例 - ├── nnrt_device_service.h # 设备服务端头文件 - ├── nnrt_device_stub.cpp - ├── nnrt_device_stub.h - ├── nnrt_types.cpp # 数据类型定义实现文件 - ├── nnrt_types.h # 数据类型定义头文件 - ├── node_attr_types.cpp # AI模型算子属性定义实现文件 - ├── node_attr_types.h # AI模型算子属性定义 - ├── prepared_model_proxy.cpp - ├── prepared_model_proxy.h - ├── prepared_model_service.cpp # 编译AI模型对象服务端实现参考样例 - ├── prepared_model_service.h # 编译AI模型对象服务端头文件 - ├── prepared_model_stub.cpp - └── prepared_model_stub.h - ``` - -2. 实现HDI服务。 - - 1. 在drivers/peripheral目录下新建开发目录,用于HDI服务开发,开发目录结构如下所示。 - ```text - drivers/peripheral/nnrt - ├── BUILD.gn # 代码编译脚本文件 - ├── bundle.json - └── hdi_cpu_service # 自定义目录 - ├── BUILD.gn # 代码编译脚本文件 - ├── include - │   ├── nnrt_device_service.h # 设备服务端头文件 - │   ├── node_functions.h # 非必须,由具体实现决定 - │   ├── node_registry.h # 非必须,由具体实现决定 - │   └── prepared_model_service.h # 编译AI模型对象服务端头文件 - └── src - ├── nnrt_device_driver.cpp # 设备驱动实现文件 - ├── nnrt_device_service.cpp # 设备服务端实现文件 - ├── nnrt_device_stub.cpp # 非必须,由具体实现决定 - ├── node_attr_types.cpp # 非必须,由具体实现决定 - ├── node_functions.cpp # 非必须,由具体实现决定 - ├── node_registry.cpp # 非必须,由具体实现决定 - └── prepared_model_service.cpp # 编译AI模型对象服务端实现文件 - ``` - - 2. 实现设备驱动,无特殊需求可直接使用步骤1中生成的nnrt_device_driver.cpp文件,否则根据具体驱动开发。 - 3. 实现服务接口,可参考nnrt_device_service.cpp和prepared_model_service.cpp实现文件,接口定义可以参考[NNRt的HDI接口定义](https://gitee.com/openharmony/drivers_interface/tree/master/nnrt)。 - - 4. 编译驱动和服务的实现文件为共享库。 - - 在```drivers/peripheral/nnrt/hdi_cpu_service/```下新建```BUILD.gn```文件,文件内容如下所示,相关参数配置内容可参考[Build教程](https://gitee.com/openharmony/build). +#### 生成HDI头文件 +开源社区下载OpenHarmony的代码,编译drivers_interface部件,生成HDI接口的头文件。 - ```shell - import("//build/ohos.gni") - import("//drivers/hdf_core/adapter/uhdf2/uhdf.gni") - - ohos_shared_library("libnnrt_service_1.0") { - include_dirs = [] - sources = [ - "src/nnrt_device_service.cpp", - "src/prepared_model_service.cpp", - "src/node_registry.cpp", - "src/node_functions.cpp", - "src/node_attr_types.cpp" - ] - public_deps = [ "//drivers/interface/nnrt/v1_0:nnrt_idl_headers" ] - external_deps = [ - "hdf_core:libhdf_utils", - "hiviewdfx_hilog_native:libhilog", - "ipc:ipc_single", - "c_utils:utils", - ] +1. [下载源码](../get-code/sourcecode-acquire.md)。 - install_images = [ chipset_base_dir ] - subsystem_name = "hdf" - part_name = "drivers_peripheral_nnrt" - } +2. 编译接口IDL文件。 + ```shell + ./build.sh --product-name productname –ccache --build-target drivers_interface_nnrt + ``` + > productname为产品名称,此处为RK3568。 - ohos_shared_library("libnnrt_driver") { - include_dirs = [] - sources = [ "src/nnr_device_driver.cpp" ] - deps = [ "//drivers/peripheral/nnrt/hdi_cpu_service:libnnrt_service_1.0" ] - - external_deps = [ - "hdf_core:libhdf_host", - "hdf_core:libhdf_ipc_adapter", - "hdf_core:libhdf_utils", - "hiviewdfx_hilog_native:libhilog", - "ipc:ipc_single", - "c_utils:utils", - ] + 编译完成后,在```out/rk3568/gen/drivers/interface/nnrt```目录下生成HDI头文件,默认语言类型为C++。若需要生成C类型的头文件,请在编译之前使用如下命令对```drivers/interface/nnrt/v1_0/BUILD.gn```文件中的```language```配置项进行设置。 - install_images = [ chipset_base_dir ] - subsystem_name = "hdf" - part_name = "drivers_peripheral_nnrt" - } + ```shell + language = "c" + ``` + + 生成头文件目录如下所示: + ```text + out/rk3568/gen/drivers/interface/nnrt + └── v1_0 + ├── drivers_interface_nnrt__libnnrt_proxy_1.0_external_deps_temp.json + ├── drivers_interface_nnrt__libnnrt_stub_1.0_external_deps_temp.json + ├── innrt_device.h # 设备接口头文件 + ├── iprepared_model.h # 编译AI模型对象头文件 + ├── libnnrt_proxy_1.0__notice.d + ├── libnnrt_stub_1.0__notice.d + ├── model_types.cpp # AI模型结构定义实现文件 + ├── model_types.h # AI模型结构定义头文件 + ├── nnrt_device_driver.cpp # 设备驱动实现参考样例 + ├── nnrt_device_proxy.cpp + ├── nnrt_device_proxy.h + ├── nnrt_device_service.cpp # 设备服务端实现参考样例 + ├── nnrt_device_service.h # 设备服务端头文件 + ├── nnrt_device_stub.cpp + ├── nnrt_device_stub.h + ├── nnrt_types.cpp # 数据类型定义实现文件 + ├── nnrt_types.h # 数据类型定义头文件 + ├── node_attr_types.cpp # AI模型算子属性定义实现文件 + ├── node_attr_types.h # AI模型算子属性定义 + ├── prepared_model_proxy.cpp + ├── prepared_model_proxy.h + ├── prepared_model_service.cpp # 编译AI模型对象服务端实现参考样例 + ├── prepared_model_service.h # 编译AI模型对象服务端头文件 + ├── prepared_model_stub.cpp + └── prepared_model_stub.h + ``` + +#### 实现HDI服务 + +1. 在drivers/peripheral目录下新建开发目录,用于HDI服务开发,开发目录结构如下所示: + ```text + drivers/peripheral/nnrt + ├── BUILD.gn # 代码编译脚本文件 + ├── bundle.json + └── hdi_cpu_service # 自定义目录 + ├── BUILD.gn # 代码编译脚本文件 + ├── include + │   ├── nnrt_device_service.h # 设备服务端头文件 + │   ├── node_functions.h # 非必须,由具体实现决定 + │   ├── node_registry.h # 非必须,由具体实现决定 + │   └── prepared_model_service.h # 编译AI模型对象服务端头文件 + └── src + ├── nnrt_device_driver.cpp # 设备驱动实现文件 + ├── nnrt_device_service.cpp # 设备服务端实现文件 + ├── nnrt_device_stub.cpp # 非必须,由具体实现决定 + ├── node_attr_types.cpp # 非必须,由具体实现决定 + ├── node_functions.cpp # 非必须,由具体实现决定 + ├── node_registry.cpp # 非必须,由具体实现决定 + └── prepared_model_service.cpp # 编译AI模型对象服务端实现文件 + ``` + +2. 实现设备驱动,无特殊需求可直接使用步骤1中生成的nnrt_device_driver.cpp文件,否则根据具体驱动开发。 + +3. 实现服务接口,可参考nnrt_device_service.cpp和prepared_model_service.cpp实现文件,接口定义可以参考[NNRt的HDI接口定义](https://gitee.com/openharmony/drivers_interface/tree/master/nnrt)。 + +4. 编译驱动和服务的实现文件为共享库。 + + 在```drivers/peripheral/nnrt/hdi_cpu_service/```下新建```BUILD.gn```文件,文件内容如下所示,相关参数配置内容可参考[Build教程](https://gitee.com/openharmony/build)。 + + ```shell + import("//build/ohos.gni") + import("//drivers/hdf_core/adapter/uhdf2/uhdf.gni") + + ohos_shared_library("libnnrt_service_1.0") { + include_dirs = [] + sources = [ + "src/nnrt_device_service.cpp", + "src/prepared_model_service.cpp", + "src/node_registry.cpp", + "src/node_functions.cpp", + "src/node_attr_types.cpp" + ] + public_deps = [ "//drivers/interface/nnrt/v1_0:nnrt_idl_headers" ] + external_deps = [ + "hdf_core:libhdf_utils", + "hiviewdfx_hilog_native:libhilog", + "ipc:ipc_single", + "c_utils:utils", + ] + + install_images = [ chipset_base_dir ] + subsystem_name = "hdf" + part_name = "drivers_peripheral_nnrt" + } + + ohos_shared_library("libnnrt_driver") { + include_dirs = [] + sources = [ "src/nnr_device_driver.cpp" ] + deps = [ "//drivers/peripheral/nnrt/hdi_cpu_service:libnnrt_service_1.0" ] + + external_deps = [ + "hdf_core:libhdf_host", + "hdf_core:libhdf_ipc_adapter", + "hdf_core:libhdf_utils", + "hiviewdfx_hilog_native:libhilog", + "ipc:ipc_single", + "c_utils:utils", + ] + + install_images = [ chipset_base_dir ] + subsystem_name = "hdf" + part_name = "drivers_peripheral_nnrt" + } + + group("hdf_nnrt_service") { + deps = [ + ":libnnrt_driver", + ":libnnrt_service_1.0", + ] + } + ``` - group("hdf_nnrt_service") { + 将```group("hdf_nnrt_service")```添加到```drivers/peripheral/nnrt/BUILD.gn```文件中,以便在更上目录层级就能引用。 + ```shell + if (defined(ohos_lite)) { + group("nnrt_entry") { + deps = [ ] + } + } else { + group("nnrt_entry") { deps = [ - ":libnnrt_driver", - ":libnnrt_service_1.0", + "./hdi_cpu_service:hdf_nnrt_service", ] } - ``` + } + ``` - 将```group("hdf_nnrt_service")```添加到```drivers/peripheral/nnrt/BUILD.gn```文件中,以便在更上目录层级就能引用。 - ```shell - if (defined(ohos_lite)) { - group("nnrt_entry") { - deps = [ ] - } - } else { - group("nnrt_entry") { - deps = [ - "./hdi_cpu_service:hdf_nnrt_service", + 新建```drivers/peripheral/nnrt/bundle.json```用于定义新增的```drivers_peripheral_nnrt```部件。 + ```json + { + "name": "drivers_peripheral_nnrt", + "description": "Neural network runtime device driver", + "version": "3.2", + "license": "Apache License 2.0", + "component": { + "name": "drivers_peripheral_nnrt", + "subsystem": "hdf", + "syscap": [""], + "adapter_system_type": ["standard"], + "rom": "1024KB", + "ram": "2048KB", + "deps": { + "components": [ + "ipc", + "hdf_core", + "hiviewdfx_hilog_native", + "c_utils" + ], + "third_part": [ + "bounds_checking_function" + ] + }, + "build": { + "sub_component": [ + "//drivers/peripheral/nnrt:nnrt_entry" + ], + "test": [ + ], + "inner_kits": [ ] } } - ``` + } + ``` - 新建```drivers/peripheral/nnrt/bundle.json```用于定义新增的```drivers_peripheral_nnrt```部件。 - ```json - { - "name": "drivers_peripheral_nnrt", - "description": "Neural network runtime device driver", - "version": "3.2", - "license": "Apache License 2.0", - "component": { - "name": "drivers_peripheral_nnrt", - "subsystem": "hdf", - "syscap": [""], - "adapter_system_type": ["standard"], - "rom": "1024KB", - "ram": "2048KB", - "deps": { - "components": [ - "ipc", - "hdf_core", - "hiviewdfx_hilog_native", - "c_utils" - ], - "third_part": [ - "bounds_checking_function" - ] - }, - "build": { - "sub_component": [ - "//drivers/peripheral/nnrt:nnrt_entry" - ], - "test": [ - ], - "inner_kits": [ - ] +#### 声明HDI服务 + + 在对应产品的uhdf hcs配置文件中声明用户态驱动与服务,例如针对RK3568服务需要在```vendor/hihope/rk3568/hdf_config/uhdf/device_info.hcs```文件中新增如下配置: + ```text + nnrt :: host { + hostName = "nnrt_host"; + priority = 50; + uid = ""; + gid = ""; + caps = ["DAC_OVERRIDE", "DAC_READ_SEARCH"]; + nnrt_device :: device { + device0 :: deviceNode { + policy = 2; + priority = 100; + moduleName = "libnnrt_driver.z.so"; + serviceName = "nnrt_device_service"; } - } } - ``` + } + ``` +> 注意:修改hcs文件需要删除out目录重新编译,才能生效。 -3. 声明HDI服务。 - - 在对应产品的uhdf hcs配置文件中声明用户态驱动与服务,例如,针对rk3568服务需要在```vendor/hihope/rk3568/hdf_config/uhdf/device_info.hcs```文件中新增如下配置: - ```text - nnrt :: host { - hostName = "nnrt_host"; - priority = 50; - uid = ""; - gid = ""; - caps = ["DAC_OVERRIDE", "DAC_READ_SEARCH"]; - nnrt_device :: device { - device0 :: deviceNode { - policy = 2; - priority = 100; - moduleName = "libnnrt_driver.z.so"; - serviceName = "nnrt_device_service"; - } - } - } - ``` - > 注意:修改hcs文件需要删除out目录重新编译,才能生效。 +#### 配置host进程用户ID和组ID + 对于新增的nnrt_host进程的场景,需要配置对应进程的用户ID和组ID。 进程的用户ID在文件```base/startup/init/services/etc/passwd```中配置,进程的组ID在文件```base/startup/init/services/etc/group```中配置。 + ```text + # 在base/startup/init/services/etc/passwd新增 + nnrt_host:x:3311:3311:::/bin/false -4. 配置host进程用户和组。 - - 对于新增的nnrt_host进程的场景,需要配置对应进程的用户ID和组ID。 进程的用户ID在文件```base/startup/init/services/etc/passwd```中配置,进程的组ID在文件```base/startup/init/services/etc/group```中配置。 - ```text - # 在base/startup/init/services/etc/passwd新增 - nnrt_host:x:3311:3311:::/bin/false - - # 在base/startup/init/services/etc/group新增 - nnrt_host:x:3311: - ``` + # 在base/startup/init/services/etc/group新增 + nnrt_host:x:3311: + ``` -5. SeLinux配置。 +#### 配置SELinux - OHOS已经开启SELinux特性,需要对新增的进程和服务配置相应的SELinux规则,用于运行host进程启动访问某些资源、发布HDI服务。 +OpenHarmony已经开启SELinux特性,需要对新增的进程和服务配置相应的SELinux规则,用于运行host进程启动访问某些资源、发布HDI服务。 - 1. 在```base/security/selinux/sepolicy/ohos_policy/drivers/adapter/vendor/type.te```文件中配置nnrt_host进程安全上下文,新增配置如下: +1. 在```base/security/selinux/sepolicy/ohos_policy/drivers/adapter/vendor/type.te```文件中配置nnrt_host进程安全上下文,新增配置如下: ```text # 新增配置 type nnrt_host, hdfdomain, domain; ``` > nnrt_host为上文配置的进程名称。 - 2. 由于SeLinux是白名单访问的权限机制,需要根据实际权限需求配置,将服务启动起来之后,通过以下dmesg命令可能查看avc告警, - avc告警会给出缺少的权限,SeLinux的配置也可以参考[OpenHarmony SeLinux子系统的说明](https://gitee.com/openharmony/security_selinux/blob/master/README.md)。 +2. 由于SeLinux是白名单访问的权限机制,需要根据实际权限需求配置。将服务启动之后,可通过以下dmesg命令查看avc告警, +avc告警会给出缺少的权限。SeLinux的配置也可以参考[OpenHarmony SeLinux子系统的说明](https://gitee.com/openharmony/security_selinux/blob/master/README.md)。 ```shell hdc_std shell dmesg | grep nnrt ``` - 3. 新建nnrt_host.te配置文件,将权限配置到nnrt_host.te文件中。 +3. 新建nnrt_host.te配置文件,将权限配置到nnrt_host.te文件中。 ```shell # 创建nnrt文件夹 mkdir base/security/selinux/sepolicy/ohos_policy/drivers/peripheral/nnrt @@ -292,7 +293,7 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 touch base/security/selinux/sepolicy/ohos_policy/drivers/peripheral/nnrt/vendor/nnrt_host.te ``` - 4. 将所需的权限写入nnrt_host.te文件中,比如: +4. 将所需的权限写入nnrt_host.te文件中,比如: ```text allow nnrt_host dev_hdf_kevent:chr_file { ioctl }; allow nnrt_host hilog_param:file { read }; @@ -301,18 +302,32 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 allow sh nnrt_host:fd { use }; ``` -6. 删除out目录编译整个系统。 - ```shell - # 删除out目录 - rm -rf ./out - - # 编译 - ./build.sh --product-name rk3568 –ccache --jobs=4 - ``` +#### 配置部件编译入口 +以RK3568产品为例: +```shell +vim //productdefine/common/inherit/chipset_common.json +``` +在"subsystems", "subsystem":"hdf", "components"中添加: +```shell +{ + "component": "drivers_peripheral_foo", + "features": [] +} +``` + +#### 删除out目录并编译整个系统 +```shell +# 删除out目录 +rm -rf ./out + +# 编译 +./build.sh --product-name rk3568 –ccache --jobs=4 +``` ### 调测验证 服务开发完成后,可以使用XTS用例验证基本功能和兼容性,开发者可通过以下步骤进行验证: + 1. 编译NNRt的hats用例,用例在```test/xts/hats/hdf/nnrt```目录下。 ```shell # 进入hats目录 @@ -341,7 +356,7 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 hdc_std shell "/data/local/tmp/HatsHdfNnrtFunctionTest" ``` - 所有hats用例执行成功,可以看到测试报告通过47个用例,说明服务通过了兼容性测试。 + 所有hats用例执行成功,可以看到测试报告显示已通过47个用例,说明服务通过了兼容性测试。 ```text ... [----------] Global test environment tear-down @@ -352,13 +367,16 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 ### 开发实例 完整Demo代码可以参考[社区实现](https://gitee.com/openharmony/ai_neural_network_runtime/tree/master/example/drivers)。 + 1. 拷贝```example/driver/nnrt```目录到```drivers/peripheral```路径下。 ```shell cp -r example/driver/nnrt drivers/peripheral ``` + 2. 补充bundle.json文件到```drivers/peripheral/nnrt```,bundle.json参考本教程上面的[开发步骤](#开发步骤)章节。 -3. 由于Demo依赖MindSpore-Lite CPU算子,故需要添加MindSpore-Lite依赖文件。 - - 下载MindSpore-Lite的头文件,[mindspore 1.5.0](https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.5.0/MindSpore/lite/release/linux/mindspore-lite-1.5.0-linux-x64.tar.gz)。 + +3. 由于Demo依赖MindSpore Lite CPU算子,故需要添加MindSpore Lite依赖文件。 + - 下载MindSpore Lite的头文件,[MindSpore Lite 1.5.0](https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.5.0/MindSpore/lite/release/linux/mindspore-lite-1.5.0-linux-x64.tar.gz)。 - 在```drivers/peripheral/nnrt```目录下新建mindspore目录,用于存放mindspore依赖库和头文件。 ```shell mkdir drivers/peripheral/nnrt/mindspore @@ -372,7 +390,7 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 # 拷贝mindspore schema文件 cp third_party/mindspore/mindspore/lite/schema/* drivers/peripheral/nnrt/hdi_cpu_service/include/mindspore_schema/ ``` - - 编译MindSpore-Lite的动态库,并将动态库放到mindspore目录下。 + - 编译MindSpore Lite的动态库,并将动态库放到mindspore目录下。 ```shell # 编译mindspore动态库 ./build.sh --product-name rk3568 -ccaache --jobs 4 --build-target mindspore_lib @@ -383,4 +401,4 @@ NNRt通过HDI接口实现与设备芯片的对接,由HDI接口实现跨进程 # 将mindspore动态拷贝到drivers/peripheral/nnrt/mindspore/mindspore。 cp out/rk3568/package/phone/system/lib/libmindspore-lite.huawei.so drivers/peripheral/nnrt/mindspore/mindspore/ ``` - 4. 其他配置请参考本教程上面的[开发步骤](#开发步骤)章节。 \ No newline at end of file +4. 其他配置请参考本教程上面的[开发步骤](#开发步骤)章节。 \ No newline at end of file diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-ability.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-ability.md new file mode 100644 index 0000000000000000000000000000000000000000..cf031c5dc0cac65e5ad23d85e92c470cc50a718b --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-ability.md @@ -0,0 +1,260 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: FOCUS = 2|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|类名:appManager
方法or属性:function getRunningProcessInformation(): Promise\>;|@ohos.app.ability.appManager.d.ts| +|新增|NA|类名:appManager
方法or属性:function getRunningProcessInformation(callback: AsyncCallback\>): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|类名:RestartFlag
方法or属性:RESTART_WHEN_JS_CRASH = 0x0001|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|类名:RestartFlag
方法or属性:RESTART_WHEN_APP_FREEZE = 0x0002|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestInfo|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode
方法 or 属性: RESULT_OK = 0|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode
方法 or 属性: RESULT_CANCEL = 1|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestResult|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestResult
方法 or 属性: result: ResultCode;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestCallback|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestCallback
方法 or 属性: setRequestResult(result: RequestResult): void;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest
方法 or 属性: function getRequestInfo(want: Want): RequestInfo;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest
方法 or 属性: function getRequestCallback(want: Want): RequestCallback;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|类名:Want
方法or属性:parameters?: {[key: string]: Object};|@ohos.app.ability.Want.d.ts| +|新增|NA|类名:CompleteData
方法or属性:extraInfo?: { [key: string]: Object };|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:DLP_PARAMS_SANDBOX = "ohos.dlp.params.sandbox"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:DLP_PARAMS_SANDBOX = "ohos.dlp.params.sandbox"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:DLP_PARAMS_BUNDLE_NAME = "ohos.dlp.params.bundleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:DLP_PARAMS_BUNDLE_NAME = "ohos.dlp.params.bundleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:DLP_PARAMS_MODULE_NAME = "ohos.dlp.params.moduleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:DLP_PARAMS_MODULE_NAME = "ohos.dlp.params.moduleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:DLP_PARAMS_ABILITY_NAME = "ohos.dlp.params.abilityName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:DLP_PARAMS_ABILITY_NAME = "ohos.dlp.params.abilityName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:DLP_PARAMS_INDEX = "ohos.dlp.params.index"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:DLP_PARAMS_INDEX = "ohos.dlp.params.index"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性:ABILITY_BACK_TO_OTHER_MISSION_STACK = "ability.params.backToOtherMissionStack"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:Params
方法or属性:ABILITY_BACK_TO_OTHER_MISSION_STACK = "ability.params.backToOtherMissionStack"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function on(type: "deviceSelected", token: number, callback: Callback\>): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function off(type: "deviceSelected", token: number): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function on(type: "deviceUnselected", token: number, callback: Callback\>): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function off(type: "deviceUnselected", token: number): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityMonitor(monitor: AbilityMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityMonitor(monitor: AbilityMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, timeout: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, timeout?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getAppContext(): Context;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getAbilityState(ability: UIAbility): number;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getCurrentTopAbility(callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getCurrentTopAbility(): Promise\|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: startAbility(want: Want, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: startAbility(want: Want): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityForeground(ability: UIAbility, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityForeground(ability: UIAbility): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityBackground(ability: UIAbility, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityBackground(ability: UIAbility): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: print(msg: string, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: print(msg: string): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: printSync(msg: string): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, timeoutSecs: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, timeoutSecs?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: finishTest(msg: string, code: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: finishTest(msg: string, code: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: abilityName: string;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: moduleName?: string;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityCreate?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityForeground?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityBackground?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityDestroy?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageCreate?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageRestore?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageDestroy?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor|AbilityStageMonitor.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性: moduleName: string;|AbilityStageMonitor.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性: srcEntrance: string;|AbilityStageMonitor.d.ts| +|新增|NA|类名:ApplicationContext
方法or属性:getRunningProcessInformation(): Promise\>;|ApplicationContext.d.ts| +|新增|NA|类名:ApplicationContext
方法or属性:getRunningProcessInformation(callback: AsyncCallback\>): void;|ApplicationContext.d.ts| +|新增|NA|类名:ApplicationContext
方法or属性:killAllProcesses(): Promise\;|ApplicationContext.d.ts| +|新增|NA|类名:ApplicationContext
方法or属性:killAllProcesses(callback: AsyncCallback\);|ApplicationContext.d.ts| +|新增|NA|类名:Context
方法or属性:area: contextConstant.AreaMode;|Context.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: pid: number;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: uid: number;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: processName: string;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: bundleNames: Array\;|ProcessInformation.d.ts| +|新增|NA|类名:ServiceExtensionContext
方法or属性:startRecentAbility(want: Want, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|类名:ServiceExtensionContext
方法or属性:startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|类名:ServiceExtensionContext
方法or属性:startRecentAbility(want: Want, options?: StartOptions): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|类名:UIAbilityContext
方法or属性:startRecentAbility(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|类名:UIAbilityContext
方法or属性:startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|类名:UIAbilityContext
方法or属性:startRecentAbility(want: Want, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|类名:UIAbilityContext
方法or属性:requestDialogService(want: Want, result: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|类名:UIAbilityContext
方法or属性:requestDialogService(want: Want): Promise\;|UIAbilityContext.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:ACTION_APP_ACCOUNT_AUTH = "ohos.appAccount.action.auth"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:ACTION_MARKET_DOWNLOAD = "ohos.want.action.marketDownload"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:ACTION_MARKET_CROWDTEST = "ohos.want.action.marketCrowdTest"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_SANDBOX = "ohos.dlp.params.sandbox"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_BUNDLE_NAME = "ohos.dlp.params.bundleName"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_MODULE_NAME = "ohos.dlp.params.moduleName"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_ABILITY_NAME = "ohos.dlp.params.abilityName"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名: ohos.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_INDEX = "ohos.dlp.params.index"|NA|@ohos.ability.wantConstant.d.ts| +|删除|模块名:ohos.app.ability.appManager
类名:appManager
方法 or 属性:function getProcessRunningInformation(): Promise\>;|NA|@ohos.app.ability.appManager.d.ts| +|删除|模块名:ohos.app.ability.appManager
类名:appManager
方法 or 属性:function getProcessRunningInformation(callback: AsyncCallback\>): void;|NA|@ohos.app.ability.appManager.d.ts| +|删除|模块名:ohos.app.ability.appRecovery
类名:RestartFlag
方法 or 属性:CPP_CRASH_NO_RESTART = 0x0001|NA|@ohos.app.ability.appRecovery.d.ts| +|删除|模块名:ohos.app.ability.appRecovery
类名:RestartFlag
方法 or 属性:JS_CRASH_NO_RESTART = 0x0002|NA|@ohos.app.ability.appRecovery.d.ts| +|删除|模块名:ohos.app.ability.appRecovery
类名:RestartFlag
方法 or 属性:APP_FREEZE_NO_RESTART = 0x0004|NA|@ohos.app.ability.appRecovery.d.ts| +|删除|模块名: ohos.app.ability.common
类名: AreaMode|NA|@ohos.app.ability.common.d.ts| +|删除|模块名: ohos.app.ability.common
类名: AreaMode
方法 or 属性:EL1 = 0|NA|@ohos.app.ability.common.d.ts| +|删除|模块名: ohos.app.ability.common
类名: AreaMode
方法 or 属性:EL2 = 1|NA|@ohos.app.ability.common.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_HOME = "ohos.want.action.home"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_DIAL = "ohos.want.action.dial"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SEARCH = "ohos.want.action.search"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_WIRELESS_SETTINGS = "ohos.settings.wireless"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_MANAGE_APPLICATIONS_SETTINGS = "ohos.settings.manage.applications"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_APPLICATION_DETAILS_SETTINGS = "ohos.settings.application.details"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SET_ALARM = "ohos.want.action.setAlarm"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SHOW_ALARMS = "ohos.want.action.showAlarms"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SNOOZE_ALARM = "ohos.want.action.snoozeAlarm"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_DISMISS_ALARM = "ohos.want.action.dismissAlarm"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_DISMISS_TIMER = "ohos.want.action.dismissTimer"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SEND_SMS = "ohos.want.action.sendSms"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_CHOOSE = "ohos.want.action.choose"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_IMAGE_CAPTURE = "ohos.want.action.imageCapture"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_VIDEO_CAPTURE = "ohos.want.action.videoCapture"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SELECT = "ohos.want.action.select"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SEND_DATA = "ohos.want.action.sendData"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SEND_MULTIPLE_DATA = "ohos.want.action.sendMultipleData"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_SCAN_MEDIA_FILE = "ohos.want.action.scanMediaFile"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_VIEW_DATA = "ohos.want.action.viewData"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_EDIT_DATA = "ohos.want.action.editData"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:INTENT_PARAMS_INTENT = "ability.want.params.INTENT"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:INTENT_PARAMS_TITLE = "ability.want.params.TITLE"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_FILE_SELECT = "ohos.action.fileSelect"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:PARAMS_STREAM = "ability.params.stream"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_APP_ACCOUNT_AUTH = "ohos.appAccount.action.auth"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_MARKET_DOWNLOAD = "ohos.want.action.marketDownload"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:ACTION_MARKET_CROWDTEST = "ohos.want.action.marketCrowdTest"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_SANDBOX = "ohos.dlp.params.sandbox"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_BUNDLE_NAME = "ohos.dlp.params.bundleName"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_MODULE_NAME = "ohos.dlp.params.moduleName"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_ABILITY_NAME = "ohos.dlp.params.abilityName"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Action
方法 or 属性:DLP_PARAMS_INDEX = "ohos.dlp.params.index"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity
方法 or 属性:ENTITY_DEFAULT = "entity.system.default"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity
方法 or 属性:ENTITY_HOME = "entity.system.home"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity
方法 or 属性:ENTITY_VOICE = "entity.system.voice"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity
方法 or 属性:ENTITY_BROWSABLE = "entity.system.browsable"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Entity
方法 or 属性:ENTITY_VIDEO = "entity.system.video"|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_FORWARD_RESULT = 0x00000004|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_CONTINUATION = 0x00000008|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_NOT_OHOS_COMPONENT = 0x00000010|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_FORM_ENABLED = 0x00000020|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_AUTH_PERSISTABLE_URI_PERMISSION = 0x00000040|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_AUTH_PREFIX_URI_PERMISSION = 0x00000080|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITYSLICE_MULTI_DEVICE = 0x00000100|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_START_FOREGROUND_ABILITY = 0x00000200|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_CONTINUATION_REVERSIBLE = 0x00000400|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_INSTALL_WITH_BACKGROUND_MODE = 0x80000000|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_CLEAR_MISSION = 0x00008000|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_NEW_MISSION = 0x10000000|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性:FLAG_ABILITY_MISSION_TOP = 0x20000000|NA|@ohos.app.ability.wantConstant.d.ts| +|删除|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性:relatedBundleName: string;|NA|@ohos.app.form.formInfo.d.ts| +|删除|模块名:ohos.continuation.continuationManager
类名:continuationManager
方法 or 属性:function on(type: "deviceConnect", token: number, callback: Callback\>): void;|NA|@ohos.continuation.continuationManager.d.ts| +|删除|模块名:ohos.continuation.continuationManager
类名:continuationManager
方法 or 属性:function off(type: "deviceConnect", token: number): void;|NA|@ohos.continuation.continuationManager.d.ts| +|删除|模块名:ohos.continuation.continuationManager
类名:continuationManager
方法 or 属性:function on(type: "deviceDisconnect", token: number, callback: Callback\>): void;|NA|@ohos.continuation.continuationManager.d.ts| +|删除|模块名:ohos.continuation.continuationManager
类名:continuationManager
方法 or 属性:function off(type: "deviceDisconnect", token: number): void;|NA|@ohos.continuation.continuationManager.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:addAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:addAbilityMonitor(monitor: AbilityMonitor): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:addAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:addAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:removeAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:removeAbilityMonitor(monitor: AbilityMonitor): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:removeAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:removeAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityMonitor(monitor: AbilityMonitor, timeout: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityMonitor(monitor: AbilityMonitor, timeout?: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout?: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:getAppContext(): Context;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:getAbilityState(ability: UIAbility): number;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:getCurrentTopAbility(callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:getCurrentTopAbility(): Promise\|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:startAbility(want: Want, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:startAbility(want: Want): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:doAbilityForeground(ability: UIAbility, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:doAbilityForeground(ability: UIAbility): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:doAbilityBackground(ability: UIAbility, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:doAbilityBackground(ability: UIAbility): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:print(msg: string, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:print(msg: string): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:printSync(msg: string): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, timeoutSecs: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, timeoutSecs?: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:finishTest(msg: string, code: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:finishTest(msg: string, code: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:abilityName: string;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:moduleName?: string;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onAbilityCreate?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onAbilityForeground?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onAbilityBackground?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onAbilityDestroy?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onWindowStageCreate?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onWindowStageRestore?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityMonitor
类名: AbilityMonitor
方法 or 属性:onWindowStageDestroy?:(ability: UIAbility) => void;|NA|abilityMonitor.d.ts| +|删除|模块名: abilityStageMonitor
类名: AbilityStageMonitor|NA|abilityStageMonitor.d.ts| +|删除|模块名: abilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性:moduleName: string;|NA|abilityStageMonitor.d.ts| +|删除|模块名: abilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性:srcEntrance: string;|NA|abilityStageMonitor.d.ts| +|删除|模块名:ApplicationContext
类名:ApplicationContext
方法 or 属性:getProcessRunningInformation(): Promise\>;|NA|ApplicationContext.d.ts| +|删除|模块名:ApplicationContext
类名:ApplicationContext
方法 or 属性:getProcessRunningInformation(callback: AsyncCallback\>): void;|NA|ApplicationContext.d.ts| +|删除|模块名:ApplicationContext
类名:ApplicationContext
方法 or 属性:killProcessesBySelf(): Promise\;|NA|ApplicationContext.d.ts| +|删除|模块名:ApplicationContext
类名:ApplicationContext
方法 or 属性:killProcessesBySelf(callback: AsyncCallback\);|NA|ApplicationContext.d.ts| +|删除|模块名: Context
类名: AreaMode|NA|Context.d.ts| +|删除|模块名: Context
类名: AreaMode
方法 or 属性:EL1 = 0|NA|Context.d.ts| +|删除|模块名: Context
类名: AreaMode
方法 or 属性:EL2 = 1|NA|Context.d.ts| +|删除|模块名: ProcessRunningInformation
类名: ProcessRunningInformation|NA|ProcessRunningInformation.d.ts| +|删除|模块名: ProcessRunningInformation
类名: ProcessRunningInformation
方法 or 属性:pid: number;|NA|ProcessRunningInformation.d.ts| +|删除|模块名: ProcessRunningInformation
类名: ProcessRunningInformation
方法 or 属性:uid: number;|NA|ProcessRunningInformation.d.ts| +|删除|模块名: ProcessRunningInformation
类名: ProcessRunningInformation
方法 or 属性:processName: string;|NA|ProcessRunningInformation.d.ts| +|删除|模块名: ProcessRunningInformation
类名: ProcessRunningInformation
方法 or 属性:bundleNames: Array\;|NA|ProcessRunningInformation.d.ts| +|访问级别有变化|类名:WindowMode
访问级别:公开API|类名:WindowMode
访问级别:系统API|@ohos.app.ability.AbilityConstant.d.ts| +|访问级别有变化|类名:StartOptions
方法 or 属性:windowMode?: number;
访问级别:公开API|类名:StartOptions
方法 or 属性:windowMode?: number;
访问级别:系统API|@ohos.app.ability.StartOptions.d.ts| +|访问级别有变化|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, callback: AsyncCallback\): void;
访问级别:系统API|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, callback: AsyncCallback\): void;
访问级别:公开API|ServiceExtensionContext.d.ts| +|访问级别有变化|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;
访问级别:系统API|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;
访问级别:公开API|ServiceExtensionContext.d.ts| +|访问级别有变化|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, options?: StartOptions): Promise\;
访问级别:系统API|类名:ServiceExtensionContext
方法 or 属性:startAbility(want: Want, options?: StartOptions): Promise\;
访问级别:公开API|ServiceExtensionContext.d.ts| +|访问级别有变化|类名:ServiceExtensionContext
方法 or 属性:terminateSelf(callback: AsyncCallback\): void;
访问级别:系统API|类名:ServiceExtensionContext
方法 or 属性:terminateSelf(callback: AsyncCallback\): void;
访问级别:公开API|ServiceExtensionContext.d.ts| +|访问级别有变化|类名:ServiceExtensionContext
方法 or 属性:terminateSelf(): Promise\;
访问级别:系统API|类名:ServiceExtensionContext
方法 or 属性:terminateSelf(): Promise\;
访问级别:公开API|ServiceExtensionContext.d.ts| +|访问级别有变化|类名:UIAbilityContext
方法 or 属性:startAbilityByCall(want: Want): Promise\;
访问级别:系统API|类名:UIAbilityContext
方法 or 属性:startAbilityByCall(want: Want): Promise\;
访问级别:公开API|UIAbilityContext.d.ts| +|权限有变化|类名:distributedMissionManager
方法 or 属性:function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback, callback: AsyncCallback\): void;
权限:ohos.permission.MANAGE_MISSIONS|类名:distributedMissionManager
方法 or 属性:function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback, callback: AsyncCallback\): void;
权限:ohos.permission.MANAGE_MISSIONS and ohos.permission.DISTRIBUTED_DATASYNC|@ohos.distributedMissionManager.d.ts| +|权限有变化|类名:distributedMissionManager
方法 or 属性:function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback): Promise\;
权限:ohos.permission.MANAGE_MISSIONS|类名:distributedMissionManager
方法 or 属性:function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback): Promise\;
权限:ohos.permission.MANAGE_MISSIONS and ohos.permission.DISTRIBUTED_DATASYNC|@ohos.distributedMissionManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function registerContinuation(callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function registerContinuation(callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function registerContinuation(options: ContinuationExtraParams, callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function registerContinuation(options: ContinuationExtraParams, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function registerContinuation(options?: ContinuationExtraParams): Promise\;
权限:N/A|类名:continuationManager
方法 or 属性:function registerContinuation(options?: ContinuationExtraParams): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function unregisterContinuation(token: number, callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function unregisterContinuation(token: number, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function unregisterContinuation(token: number): Promise\;
权限:N/A|类名:continuationManager
方法 or 属性:function unregisterContinuation(token: number): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState): Promise\;
权限:N/A|类名:continuationManager
方法 or 属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback\): void;
权限:N/A|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|新增(权限)|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, options?: ContinuationExtraParams): Promise\;
权限:N/A|类名:continuationManager
方法 or 属性:function startContinuationDeviceManager(token: number, options?: ContinuationExtraParams): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.continuation.continuationManager.d.ts| +|函数有变化|类名:CalleeCallback
方法 or 属性:(indata: rpc.MessageParcel): rpc.Sequenceable;
|类名:CalleeCallback
方法 or 属性:(indata: rpc.MessageSequence): rpc.Parcelable;
|@ohos.app.ability.UIAbility.d.ts| +|函数有变化|类名:Caller
方法 or 属性:call(method: string, data: rpc.Sequenceable): Promise\;
|类名:Caller
方法 or 属性:call(method: string, data: rpc.Parcelable): Promise\;
|@ohos.app.ability.UIAbility.d.ts| +|函数有变化|类名:Caller
方法 or 属性:callWithResult(method: string, data: rpc.Sequenceable): Promise\;
|类名:Caller
方法 or 属性:callWithResult(method: string, data: rpc.Parcelable): Promise\;
|@ohos.app.ability.UIAbility.d.ts| +|函数有变化|类名:UIAbility
方法 or 属性:onContinue(wantParam: { [key: string]: any }): AbilityConstant.OnContinueResult;
|类名:UIAbility
方法 or 属性:onContinue(wantParam: { [key: string]: Object }): AbilityConstant.OnContinueResult;
|@ohos.app.ability.UIAbility.d.ts| +|函数有变化|类名:UIAbility
方法 or 属性:onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: any}): AbilityConstant.OnSaveResult;
|类名:UIAbility
方法 or 属性:onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: Object}): AbilityConstant.OnSaveResult;
|@ohos.app.ability.UIAbility.d.ts| +|函数有变化|类名:FormExtensionAbility
方法 or 属性:onShareForm?(formId: string): { [key: string]: any };
|类名:FormExtensionAbility
方法 or 属性:onShareForm?(formId: string): { [key: string]: Object };
|@ohos.app.form.FormExtensionAbility.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-account.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-account.md new file mode 100644 index 0000000000000000000000000000000000000000..1554a18346dd53b275e99792447aac4c481fd1b5 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-account.md @@ -0,0 +1,55 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:Authenticator
方法or属性:checkAccountRemovable(name: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountConstraintEnabled(localId: number, constraint: string, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountConstraintEnabled(localId: number, constraint: string): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalId(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalId(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForUid(uid: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForUid(uid: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForDomain(domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForDomain(domainInfo: DomainAccountInfo): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getActivatedOsAccountLocalIds(callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getActivatedOsAccountLocalIds(): Promise\>;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForSerialNumber(serialNumber: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForSerialNumber(serialNumber: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getSerialNumberForOsAccountLocalId(localId: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getSerialNumberForOsAccountLocalId(localId: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getBundleIdForUid(uid: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getBundleIdForUid(uid: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraintSourceTypes(localId: number, constraint: string, callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraintSourceTypes(localId: number, constraint: string): Promise\>;|@ohos.account.osAccount.d.ts| +|删除|模块名: ohos.account.appAccount
类名: OAuthTokenInfo
方法 or 属性:account?: AppAccountInfo;|NA|@ohos.account.appAccount.d.ts| +|删除|模块名: ohos.account.appAccount
类名: AuthenticatorCallback
方法 or 属性:onRequestContinued?: () => void;|NA|@ohos.account.appAccount.d.ts| +|删除|模块名:ohos.account.appAccount
类名:Authenticator
方法 or 属性:isAccountRemovable(name: string, callback: AuthCallback): void;|NA|@ohos.account.appAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:checkConstraintEnabled(localId: number, constraint: string, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:checkConstraintEnabled(localId: number, constraint: string): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromProcess(callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromProcess(): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromUid(uid: number, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromUid(uid: number): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:getActivatedOsAccountIds(callback: AsyncCallback\>): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:getActivatedOsAccountIds(): Promise\>;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdBySerialNumber(serialNumber: number, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountLocalIdBySerialNumber(serialNumber: number): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:querySerialNumberByOsAccountLocalId(localId: number, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:querySerialNumberByOsAccountLocalId(localId: number): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:getBundleIdFromUid(uid: number, callback: AsyncCallback\): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:getBundleIdFromUid(uid: number): Promise\;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountConstraintSourceTypes(localId: number, constraint: string, callback: AsyncCallback\>): void;|NA|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.osAccount
类名:AccountManager
方法 or 属性:queryOsAccountConstraintSourceTypes(localId: number, constraint: string): Promise\>;|NA|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_NOT_EXIST = 0
起始版本:N/A|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_NOT_EXIST = 0
起始版本:9|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_BASE = 1
起始版本:N/A|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_BASE = 1
起始版本:9|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_DEVICE_OWNER = 2
起始版本:N/A|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_DEVICE_OWNER = 2
起始版本:9|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_PROFILE_OWNER = 3
起始版本:N/A|类名:ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_PROFILE_OWNER = 3
起始版本:9|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceTypeInfo
方法 or 属性:localId: number;
起始版本:N/A|类名:ConstraintSourceTypeInfo
方法 or 属性:localId: number;
起始版本:9|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:ConstraintSourceTypeInfo
方法 or 属性:type: ConstraintSourceType;
起始版本:N/A|类名:ConstraintSourceTypeInfo
方法 or 属性:type: ConstraintSourceType;
起始版本:9|@ohos.account.osAccount.d.ts| +|删除(权限)|类名:AccountManager
方法 or 属性:checkOsAccountVerified(callback: AsyncCallback\): void;
权限:ohos.permission.MANAGE_LOCAL_ACCOUNTS or ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS|类名:AccountManager
方法 or 属性:checkOsAccountVerified(callback: AsyncCallback\): void;
权限:N/A|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:PINAuth
方法 or 属性:unregisterInputer(): void;
错误码内容: 201|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:closeSession(): void;
错误码内容: 201|@ohos.account.osAccount.d.ts| +|函数有变化|类名:AccountManager
方法 or 属性:checkOsAccountVerified(localId?: number): Promise\;
|类名:AccountManager
方法 or 属性:checkOsAccountVerified(): Promise\;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:AccountManager
方法 or 属性:checkOsAccountVerified(localId?: number): Promise\;
|类名:AccountManager
方法 or 属性:checkOsAccountVerified(localId: number): Promise\;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:IInputData
方法 or 属性:onSetData: (pinSubType: AuthSubType, data: Uint8Array) => void;
|类名:IInputData
方法 or 属性:onSetData: (authSubType: AuthSubType, data: Uint8Array) => void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:IInputer
方法 or 属性:onGetData: (pinSubType: AuthSubType, callback: IInputData) => void;
|类名:IInputer
方法 or 属性:onGetData: (authSubType: AuthSubType, callback: IInputData) => void;
|@ohos.account.osAccount.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-application.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-application.md new file mode 100644 index 0000000000000000000000000000000000000000..7a13694e554b8cba70412e6bfb14b1035a907607 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-application.md @@ -0,0 +1,4 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增(错误码)|NA|类名:call
方法 or 属性:function makeCall(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function makeCall(phoneNumber: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-arkui.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-arkui.md new file mode 100644 index 0000000000000000000000000000000000000000..650285b5020b56c0fc8aaf4a992dbc32d5d0389d --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-arkui.md @@ -0,0 +1,1231 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.font
类名: font|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions
方法 or 属性: familyName: string;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions
方法 or 属性: familySrc: string;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: font
方法 or 属性: function registerFont(options: FontOptions):void;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: textContent: string;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontSize?: number \| string \| Resource;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontStyle?: number \| FontStyle;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontWeight?: number \| string \| FontWeight;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontFamily?: string \| Resource;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: letterSpacing?: number \| string;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureText|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureText
方法 or 属性: static measureText(options: MeasureOptions): number;|@ohos.measure.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:ShowToastOptions
方法or属性:message: string;|@ohos.prompt.d.ts| +|新增|NA|类名:Button
方法or属性:text: string;|@ohos.prompt.d.ts| +|新增|NA|类名:Button
方法or属性:color: string;|@ohos.prompt.d.ts| +|新增|NA|类名:ShowDialogOptions
方法or属性:title?: string;|@ohos.prompt.d.ts| +|新增|NA|类名:ShowDialogOptions
方法or属性:message?: string;|@ohos.prompt.d.ts| +|新增|NA|类名:ActionMenuOptions
方法or属性:title?: string;|@ohos.prompt.d.ts| +|新增|NA|类名:router
方法or属性:function showAlertBeforeBackPage(options: EnableAlertOptions):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function hideAlertBeforeBackPage():void;|@ohos.router.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:filter: string;|canvas.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:imageSmoothingQuality: ImageSmoothingQuality;|canvas.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:direction: CanvasDirection;|canvas.d.ts| +|新增|NA|类名:global
方法or属性:declare const Concurrent: MethodDecorator;|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:source?: string \| Resource \| LinearGradient,|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:angle?: number \| string;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:angle?: number \| string;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:direction?: GradientDirection;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:direction?: GradientDirection;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:colors: Array\;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:colors: Array\;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:repeating?: boolean;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:repeating?: boolean;|common.d.ts| +|新增|NA|类名:ImageAttribute
方法or属性:draggable(value: boolean): ImageAttribute;|image.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:onScrollStart(event: () => void): ListAttribute;|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:onScrollFrameBegin(event: (offset: number, state: ScrollState) => { offsetRemain: number }): ListAttribute;|list.d.ts| +|新增|NA|模块名: menu
类名: MenuInterface|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuInterface
方法 or 属性: (): MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuAttribute|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuAttribute
方法 or 属性: fontSize(value: Length): MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu
类名: global
方法 or 属性: declare const Menu: MenuInterface;|menu.d.ts| +|新增|NA|模块名: menu
类名: global
方法 or 属性: declare const MenuInstance: MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: startIcon?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: content?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: endIcon?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: labelInfo?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: builder?: CustomBuilder;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemInterface|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemInterface
方法 or 属性: (value?: MenuItemOptions \| CustomBuilder): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: selected(value: boolean): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: selectIcon(value: boolean): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: onChange(callback: (selected: boolean) => void): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: global
方法 or 属性: declare const MenuItem: MenuItemInterface;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: global
方法 or 属性: declare const MenuItemInstance: MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions
方法 or 属性: header?: ResourceStr \| CustomBuilder;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions
方法 or 属性: footer?: ResourceStr \| CustomBuilder;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupInterface|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupInterface
方法 or 属性: (value?: MenuItemGroupOptions): MenuItemGroupAttribute;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupAttribute|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: global
方法 or 属性: declare const MenuItemGroup: MenuItemGroupInterface;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: global
方法 or 属性: declare const MenuItemGroupInstance: MenuItemGroupAttribute;|menu_item_group.d.ts| +|新增|NA|类名:PluginComponentTemplate
方法or属性:bundleName: string;|plugin_component.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollStart(event: () => void): ScrollAttribute;|scroll.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollStop(event: () => void): ScrollAttribute;|scroll.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollFrameBegin(event: (offset: number, state: ScrollState) => { offsetRemain: number }): ScrollAttribute;|scroll.d.ts| +|新增|NA|类名:ShapeInterface
方法or属性:(value: PixelMap): ShapeAttribute;|shape.d.ts| +|新增|NA|类名:ShapeInterface
方法or属性:(): ShapeAttribute;|shape.d.ts| +|新增|NA|模块名: tab_content
类名: SubTabBarStyle|tab_content.d.ts| +|新增|NA|类名:SubTabBarStyle
方法or属性:|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: SubTabBarStyle
方法 or 属性:constructor(content: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:SubTabBarStyle
方法or属性:constructor(content: string \| Resource);|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: BottomTabBarStyle|tab_content.d.ts| +|新增|NA|类名:BottomTabBarStyle
方法or属性:|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: BottomTabBarStyle
方法 or 属性:constructor(icon: string \| Resource, text: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:BottomTabBarStyle
方法or属性:constructor(icon: string \| Resource, text: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:TabContentAttribute
方法or属性:tabBar(value: SubTabBarStyle \| BottomTabBarStyle): TabContentAttribute;|tab_content.d.ts| +|删除|模块名:ohos.pluginComponent
类名:PushParameterForStage
方法 or 属性:want: Want;|NA|@ohos.pluginComponent.d.ts| +|删除|模块名:ohos.pluginComponent
类名:RequestParameterForStage
方法 or 属性:want: Want;|NA|@ohos.pluginComponent.d.ts| +|删除|模块名:ohos.router
类名:router
方法 or 属性:function enableBackPageAlert(options: EnableAlertOptions):void;|NA|@ohos.router.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:filter(filter: string): void;|NA|canvas.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:imageSmoothingQuality(quality: ImageSmoothingQuality): void;|NA|canvas.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:direction(direction: CanvasDirection): void;|NA|canvas.d.ts| +|删除|模块名:list
类名:ListAttribute
方法 or 属性:onScrollBegin(event: (dx: number, dy: number) => { dxRemain: number, dyRemain: number }): ListAttribute;|NA|list.d.ts| +|删除|模块名:plugin_component
类名:PluginComponentTemplate
方法 or 属性:ability: string;|NA|plugin_component.d.ts| +|删除|模块名:scroll
类名:ScrollAttribute
方法 or 属性:onScrollBegin(event: (dx: number, dy: number) => { dxRemain: number, dyRemain: number }): ScrollAttribute;|NA|scroll.d.ts| +|删除|模块名: web
类名: WebMessagePort|NA|web.d.ts| +|删除|模块名: web
类名: WebMessagePort
方法 or 属性:constructor();|NA|web.d.ts| +|删除|模块名: web
类名: WebMessagePort
方法 or 属性:close(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessagePort
方法 or 属性:postMessageEvent(message: WebMessageEvent): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessagePort
方法 or 属性:onMessageEvent(callback: (result: string) => void): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent
方法 or 属性:constructor();|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent
方法 or 属性:getData(): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent
方法 or 属性:setData(data: string): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent
方法 or 属性:getPorts(): Array\;|NA|web.d.ts| +|删除|模块名: web
类名: WebMessageEvent
方法 or 属性:setPorts(ports: Array\): void;|NA|web.d.ts| +|删除|模块名: web
类名: HitTestValue|NA|web.d.ts| +|删除|模块名: web
类名: HitTestValue
方法 or 属性:constructor();|NA|web.d.ts| +|删除|模块名: web
类名: HitTestValue
方法 or 属性:getType(): HitTestType;|NA|web.d.ts| +|删除|模块名: web
类名: HitTestValue
方法 or 属性:getExtra(): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:isCookieAllowed(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:isThirdPartyCookieAllowed(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:isFileURICookieAllowed(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:putAcceptCookieEnabled(accept: boolean): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:putAcceptThirdPartyCookieEnabled(accept: boolean): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:putAcceptFileURICookieEnabled(accept: boolean): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:setCookie(url: string, value: string): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:saveCookieSync(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:getCookie(url: string): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:existCookie(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:deleteEntireCookie(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:deleteSessionCookie(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebCookie
方法 or 属性:deleteExpiredCookie(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:zoomIn(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:zoomOut(): boolean;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:createWebMessagePorts(): Array\;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:postMessage(options: { message: WebMessageEvent, uri: string}): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getHitTestValue(): HitTestValue;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getWebId(): number;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getDefaultUserAgent(): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getTitle(): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getPageHeight(): number;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:backOrForward(step: number): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:searchAllAsync(searchString: string): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:clearMatches(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:searchNext(forward: boolean): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:clearSslCache(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:clearClientAuthenticationCache(): void;|NA|web.d.ts| +|删除|模块名: web
类名: WebController
方法 or 属性:getUrl(): string;|NA|web.d.ts| +|删除|模块名: web
类名: WebAttribute
方法 or 属性:webDebuggingAccess(webDebuggingAccess: boolean): WebAttribute;|NA|web.d.ts| +|访问级别有变化|类名:curves
方法 or 属性:function springMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;
访问级别:系统API|类名:curves
方法 or 属性:function springMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;
访问级别:公开API|@ohos.curves.d.ts| +|访问级别有变化|类名:curves
方法 or 属性:function responsiveSpringMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;
访问级别:系统API|类名:curves
方法 or 属性:function responsiveSpringMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;
访问级别:公开API|@ohos.curves.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
访问级别:系统API|animator.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
访问级别:系统API|animator.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
访问级别:系统API|calendar.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
访问级别:系统API|calendar.d.ts| +|访问级别有变化|类名:
方法 or 属性:function postCardAction(component: Object, action: Object): void;
访问级别:系统API|类名:
方法 or 属性:function postCardAction(component: Object, action: Object): void;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:BlurStyle
方法 or 属性:Thin
访问级别:系统API|类名:BlurStyle
方法 or 属性:Thin
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:BlurStyle
方法 or 属性:Regular
访问级别:系统API|类名:BlurStyle
方法 or 属性:Regular
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:BlurStyle
方法 or 属性:Thick
访问级别:系统API|类名:BlurStyle
方法 or 属性:Thick
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:CommonMethod
方法 or 属性:backgroundBlurStyle(value: BlurStyle): T;
访问级别:系统API|类名:CommonMethod
方法 or 属性:backgroundBlurStyle(value: BlurStyle): T;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
访问级别:系统API|form_component.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
访问级别:系统API|form_component.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const PluginComponent: PluginComponentInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const PluginComponent: PluginComponentInterface;
访问级别:系统API|plugin_component.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const PluginComponentInstance: PluginComponentAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const PluginComponentInstance: PluginComponentAttribute;
访问级别:系统API|plugin_component.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const RemoteWindow: RemoteWindowInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const RemoteWindow: RemoteWindowInterface;
访问级别:系统API|remote_window.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const RemoteWindowInstance: RemoteWindowAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const RemoteWindowInstance: RemoteWindowAttribute;
访问级别:系统API|remote_window.d.ts| +|废弃版本有变化|类名:router
方法 or 属性:function disableAlertBeforeBackPage():void;
废弃版本:N/A|类名:router
方法 or 属性:function disableAlertBeforeBackPage():void;
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|类名:GridItemAttribute
方法 or 属性:forceRebuild(value: boolean): GridItemAttribute;
废弃版本:N/A|类名:GridItemAttribute
方法 or 属性:forceRebuild(value: boolean): GridItemAttribute;
废弃版本:9
代替接口:N/A|gridItem.d.ts| +|废弃版本有变化|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
废弃版本:N/A|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
废弃版本:9
代替接口:grid_col/|grid_container.d.ts| +|废弃版本有变化|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
废弃版本:N/A|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
废弃版本:9
代替接口:grid_col/|grid_container.d.ts| +|废弃版本有变化|类名:ScrollAttribute
方法 or 属性:onScrollEnd(event: () => void): ScrollAttribute;
废弃版本:N/A|类名:ScrollAttribute
方法 or 属性:onScrollEnd(event: () => void): ScrollAttribute;
废弃版本:9
代替接口:scroll/Scroll|scroll.d.ts| +|起始版本有变化|类名:CanvasPattern
起始版本:8|类名:CanvasPattern
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:CanvasPattern
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:8|类名:CanvasPattern
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
起始版本:8|类名:Matrix2D
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:scaleX?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:scaleX?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:rotateY?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:rotateY?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:rotateX?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:rotateX?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:scaleY?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:scaleY?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:translateX?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:translateX?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:translateY?: number;
起始版本:8|类名:Matrix2D
方法 or 属性:translateY?: number;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:identity(): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:identity(): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:invert(): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:invert(): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:multiply(other?: Matrix2D): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:multiply(other?: Matrix2D): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:rotate(rx?: number, ry?: number): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:rotate(rx?: number, ry?: number): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:translate(tx?: number, ty?: number): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:translate(tx?: number, ty?: number): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:scale(sx?: number, sy?: number): Matrix2D;
起始版本:8|类名:Matrix2D
方法 or 属性:scale(sx?: number, sy?: number): Matrix2D;
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:Matrix2D
方法 or 属性:constructor();
起始版本:8|类名:Matrix2D
方法 or 属性:constructor();
起始版本:9|canvaspattern.d.ts| +|起始版本有变化|类名:console
起始版本:7|类名:console
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AbilityComponent: AbilityComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const AbilityComponent: AbilityComponentInterface;
起始版本:9|ability_component.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AbilityComponentInstance: AbilityComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const AbilityComponentInstance: AbilityComponentAttribute;
起始版本:9|ability_component.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AlphabetIndexer: AlphabetIndexerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const AlphabetIndexer: AlphabetIndexerInterface;
起始版本:7|alphabet_indexer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AlphabetIndexerInstance: AlphabetIndexerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const AlphabetIndexerInstance: AlphabetIndexerAttribute;
起始版本:7|alphabet_indexer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
起始版本:7|animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
起始版本:7|animator.d.ts| +|起始版本有变化|类名:BadgePosition
起始版本:7|类名:BadgePosition
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:RightTop
起始版本:7|类名:BadgePosition
方法 or 属性:RightTop
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:Right
起始版本:7|类名:BadgePosition
方法 or 属性:Right
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:Left
起始版本:7|类名:BadgePosition
方法 or 属性:Left
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
起始版本:7|类名:BadgeStyle
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:color?: ResourceColor;
起始版本:7|类名:BadgeStyle
方法 or 属性:color?: ResourceColor;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:fontSize?: number \| string;
起始版本:7|类名:BadgeStyle
方法 or 属性:fontSize?: number \| string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:badgeSize?: number \| string;
起始版本:7|类名:BadgeStyle
方法 or 属性:badgeSize?: number \| string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:badgeColor?: ResourceColor;
起始版本:7|类名:BadgeStyle
方法 or 属性:badgeColor?: ResourceColor;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
起始版本:7|类名:BadgeParam
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
方法 or 属性:position?: BadgePosition;
起始版本:7|类名:BadgeParam
方法 or 属性:position?: BadgePosition;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
方法 or 属性:style: BadgeStyle;
起始版本:7|类名:BadgeParam
方法 or 属性:style: BadgeStyle;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
起始版本:7|类名:BadgeParamWithNumber
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
方法 or 属性:count: number;
起始版本:7|类名:BadgeParamWithNumber
方法 or 属性:count: number;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
方法 or 属性:maxCount?: number;
起始版本:7|类名:BadgeParamWithNumber
方法 or 属性:maxCount?: number;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithString
起始版本:7|类名:BadgeParamWithString
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithString
方法 or 属性:value: string;
起始版本:7|类名:BadgeParamWithString
方法 or 属性:value: string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
起始版本:7|类名:BadgeInterface
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithNumber): BadgeAttribute;
起始版本:7|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithNumber): BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithString): BadgeAttribute;
起始版本:7|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithString): BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeAttribute
起始版本:7|类名:BadgeAttribute
起始版本:9|badge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Badge: BadgeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Badge: BadgeInterface;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BadgeInstance: BadgeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const BadgeInstance: BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BlankInterface
起始版本:7|类名:BlankInterface
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankInterface
方法 or 属性:(min?: number \| string): BlankAttribute;
起始版本:7|类名:BlankInterface
方法 or 属性:(min?: number \| string): BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankAttribute
起始版本:7|类名:BlankAttribute
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankAttribute
方法 or 属性:color(value: ResourceColor): BlankAttribute;
起始版本:7|类名:BlankAttribute
方法 or 属性:color(value: ResourceColor): BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Blank: BlankInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Blank: BlankInterface;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BlankInstance: BlankAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const BlankInstance: BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:ButtonType
起始版本:7|类名:ButtonType
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Capsule
起始版本:7|类名:ButtonType
方法 or 属性:Capsule
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Circle
起始版本:7|类名:ButtonType
方法 or 属性:Circle
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Normal
起始版本:7|类名:ButtonType
方法 or 属性:Normal
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
起始版本:7|类名:ButtonOptions
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
方法 or 属性:type?: ButtonType;
起始版本:7|类名:ButtonOptions
方法 or 属性:type?: ButtonType;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
方法 or 属性:stateEffect?: boolean;
起始版本:7|类名:ButtonOptions
方法 or 属性:stateEffect?: boolean;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
起始版本:7|类名:ButtonInterface
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(options: ButtonOptions): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(options: ButtonOptions): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(label: ResourceStr, options?: ButtonOptions): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(label: ResourceStr, options?: ButtonOptions): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
起始版本:7|类名:ButtonAttribute
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:type(value: ButtonType): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:type(value: ButtonType): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:stateEffect(value: boolean): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:stateEffect(value: boolean): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontColor(value: ResourceColor): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontColor(value: ResourceColor): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontSize(value: Length): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontSize(value: Length): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontStyle(value: FontStyle): ButtonAttribute;
起始版本:8|类名:ButtonAttribute
方法 or 属性:fontStyle(value: FontStyle): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontFamily(value: string \| Resource): ButtonAttribute;
起始版本:8|类名:ButtonAttribute
方法 or 属性:fontFamily(value: string \| Resource): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Button: ButtonInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Button: ButtonInterface;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ButtonInstance: ButtonAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ButtonInstance: ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
起始版本:7|calendar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
起始版本:7|calendar.d.ts| +|起始版本有变化|类名:CanvasGradient
起始版本:8|类名:CanvasGradient
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasGradient
方法 or 属性:addColorStop(offset: number, color: string): void;
起始版本:8|类名:CanvasGradient
方法 or 属性:addColorStop(offset: number, color: string): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
起始版本:8|类名:CanvasPath
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
起始版本:8|类名:CanvasPath
方法 or 属性:arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:closePath(): void;
起始版本:8|类名:CanvasPath
方法 or 属性:closePath(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:ellipse(
x: number,
y: number,
radiusX: number,
radiusY: number,
rotation: number,
startAngle: number,
endAngle: number,
counterclockwise?: boolean,
): void;
起始版本:8|类名:CanvasPath
方法 or 属性:ellipse(
x: number,
y: number,
radiusX: number,
radiusY: number,
rotation: number,
startAngle: number,
endAngle: number,
counterclockwise?: boolean,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:lineTo(x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:lineTo(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:moveTo(x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:moveTo(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:rect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:rect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
起始版本:8|类名:Path2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:addPath(path: Path2D, transform?: Matrix2D): void;
起始版本:8|类名:Path2D
方法 or 属性:addPath(path: Path2D, transform?: Matrix2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor();
起始版本:8|类名:Path2D
方法 or 属性:constructor();
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor(path: Path2D);
起始版本:8|类名:Path2D
方法 or 属性:constructor(path: Path2D);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor(d: string);
起始版本:8|类名:Path2D
方法 or 属性:constructor(d: string);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
起始版本:8|类名:TextMetrics
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxLeft: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxLeft: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxRight: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxRight: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly alphabeticBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly alphabeticBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly emHeightAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly emHeightAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly emHeightDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly emHeightDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly hangingBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly hangingBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly ideographicBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly ideographicBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly width: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly height: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
起始版本:8|类名:ImageBitmap
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:readonly height: number;
起始版本:8|类名:ImageBitmap
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:readonly width: number;
起始版本:8|类名:ImageBitmap
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:close(): void;
起始版本:8|类名:ImageBitmap
方法 or 属性:close(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:constructor(src: string);
起始版本:8|类名:ImageBitmap
方法 or 属性:constructor(src: string);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
起始版本:8|类名:ImageData
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly data: Uint8ClampedArray;
起始版本:8|类名:ImageData
方法 or 属性:readonly data: Uint8ClampedArray;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly height: number;
起始版本:8|类名:ImageData
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly width: number;
起始版本:8|类名:ImageData
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:constructor(width: number, height: number, data?: Uint8ClampedArray);
起始版本:8|类名:ImageData
方法 or 属性:constructor(width: number, height: number, data?: Uint8ClampedArray);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
起始版本:8|类名:RenderingContextSettings
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
方法 or 属性:antialias?: boolean;
起始版本:8|类名:RenderingContextSettings
方法 or 属性:antialias?: boolean;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
方法 or 属性:constructor(antialias?: boolean);
起始版本:8|类名:RenderingContextSettings
方法 or 属性:constructor(antialias?: boolean);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
起始版本:8|类名:CanvasRenderer
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:globalAlpha: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:globalAlpha: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:globalCompositeOperation: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:globalCompositeOperation: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number, dw: number, dh: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number, dw: number, dh: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(
image: ImageBitmap \| PixelMap,
sx: number,
sy: number,
sw: number,
sh: number,
dx: number,
dy: number,
dw: number,
dh: number,
): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(
image: ImageBitmap \| PixelMap,
sx: number,
sy: number,
sw: number,
sh: number,
dx: number,
dy: number,
dw: number,
dh: number,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:beginPath(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:beginPath(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clip(fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clip(fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clip(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clip(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fill(fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fill(fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fill(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fill(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:stroke(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:stroke(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:stroke(path: Path2D): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:stroke(path: Path2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createPattern(image: ImageBitmap, repetition: string \| null): CanvasPattern \| null;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createPattern(image: ImageBitmap, repetition: string \| null): CanvasPattern \| null;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createImageData(sw: number, sh: number): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createImageData(sw: number, sh: number): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createImageData(imagedata: ImageData): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createImageData(imagedata: ImageData): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:putImageData(imagedata: ImageData, dx: number, dy: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:putImageData(imagedata: ImageData, dx: number, dy: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:putImageData(
imagedata: ImageData,
dx: number,
dy: number,
dirtyX: number,
dirtyY: number,
dirtyWidth: number,
dirtyHeight: number,
): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:putImageData(
imagedata: ImageData,
dx: number,
dy: number,
dirtyX: number,
dirtyY: number,
dirtyWidth: number,
dirtyHeight: number,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:imageSmoothingEnabled: boolean;
起始版本:8|类名:CanvasRenderer
方法 or 属性:imageSmoothingEnabled: boolean;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineCap: CanvasLineCap;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineCap: CanvasLineCap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineDashOffset: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineDashOffset: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineJoin: CanvasLineJoin;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineJoin: CanvasLineJoin;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineWidth: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineWidth: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:miterLimit: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:miterLimit: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getLineDash(): number[];
起始版本:8|类名:CanvasRenderer
方法 or 属性:getLineDash(): number[];
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setLineDash(segments: number[]): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setLineDash(segments: number[]): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clearRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clearRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowBlur: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowBlur: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowColor: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowColor: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowOffsetX: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowOffsetX: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowOffsetY: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowOffsetY: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:restore(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:restore(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:save(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:save(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:measureText(text: string): TextMetrics;
起始版本:8|类名:CanvasRenderer
方法 or 属性:measureText(text: string): TextMetrics;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:font: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:font: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:textAlign: CanvasTextAlign;
起始版本:8|类名:CanvasRenderer
方法 or 属性:textAlign: CanvasTextAlign;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:textBaseline: CanvasTextBaseline;
起始版本:8|类名:CanvasRenderer
方法 or 属性:textBaseline: CanvasTextBaseline;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getTransform(): Matrix2D;
起始版本:8|类名:CanvasRenderer
方法 or 属性:getTransform(): Matrix2D;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:resetTransform(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:resetTransform(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:rotate(angle: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:rotate(angle: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:scale(x: number, y: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:scale(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:transform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:transform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:translate(x: number, y: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:translate(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:transferFromImageBitmap(bitmap: ImageBitmap): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:transferFromImageBitmap(bitmap: ImageBitmap): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
起始版本:8|类名:CanvasRenderingContext2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:readonly height: number;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:readonly width: number;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:constructor(settings?: RenderingContextSettings);
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:constructor(settings?: RenderingContextSettings);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
起始版本:8|类名:OffscreenCanvasRenderingContext2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:constructor(width: number, height: number, settings?: RenderingContextSettings);
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:constructor(width: number, height: number, settings?: RenderingContextSettings);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
起始版本:8|类名:OffscreenCanvas
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:height: number;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:width: number;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:constructor(width: number, height: number);
起始版本:8|类名:OffscreenCanvas
方法 or 属性:constructor(width: number, height: number);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasInterface
起始版本:8|类名:CanvasInterface
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasInterface
方法 or 属性:(context?: CanvasRenderingContext2D): CanvasAttribute;
起始版本:8|类名:CanvasInterface
方法 or 属性:(context?: CanvasRenderingContext2D): CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasAttribute
方法 or 属性:onReady(event: () => void): CanvasAttribute;
起始版本:8|类名:CanvasAttribute
方法 or 属性:onReady(event: () => void): CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Canvas: CanvasInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Canvas: CanvasInterface;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CanvasInstance: CanvasAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CanvasInstance: CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CheckboxOptions
起始版本:8|类名:CheckboxOptions
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxOptions
方法 or 属性:name?: string;
起始版本:8|类名:CheckboxOptions
方法 or 属性:name?: string;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxOptions
方法 or 属性:group?: string;
起始版本:8|类名:CheckboxOptions
方法 or 属性:group?: string;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxInterface
起始版本:8|类名:CheckboxInterface
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxInterface
方法 or 属性:(options?: CheckboxOptions): CheckboxAttribute;
起始版本:8|类名:CheckboxInterface
方法 or 属性:(options?: CheckboxOptions): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
起始版本:8|类名:CheckboxAttribute
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:select(value: boolean): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:select(value: boolean): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:onChange(callback: (value: boolean) => void): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:onChange(callback: (value: boolean) => void): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Checkbox: CheckboxInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Checkbox: CheckboxInterface;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxInstance: CheckboxAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxInstance: CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:SelectStatus
起始版本:8|类名:SelectStatus
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:All
起始版本:8|类名:SelectStatus
方法 or 属性:All
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:Part
起始版本:8|类名:SelectStatus
方法 or 属性:Part
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:None
起始版本:8|类名:SelectStatus
方法 or 属性:None
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupOptions
起始版本:8|类名:CheckboxGroupOptions
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupOptions
方法 or 属性:group?: string;
起始版本:8|类名:CheckboxGroupOptions
方法 or 属性:group?: string;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
起始版本:8|类名:CheckboxGroupResult
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
方法 or 属性:name: Array\;
起始版本:8|类名:CheckboxGroupResult
方法 or 属性:name: Array\;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
方法 or 属性:status: SelectStatus;
起始版本:8|类名:CheckboxGroupResult
方法 or 属性:status: SelectStatus;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupInterface
起始版本:8|类名:CheckboxGroupInterface
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupInterface
方法 or 属性:(options?: CheckboxGroupOptions): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupInterface
方法 or 属性:(options?: CheckboxGroupOptions): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
起始版本:8|类名:CheckboxGroupAttribute
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:selectAll(value: boolean): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:selectAll(value: boolean): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:onChange(callback: (event: CheckboxGroupResult) => void): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:onChange(callback: (event: CheckboxGroupResult) => void): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxGroup: CheckboxGroupInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxGroup: CheckboxGroupInterface;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxGroupInstance: CheckboxGroupAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxGroupInstance: CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CircleOptions
起始版本:7|类名:CircleOptions
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleOptions
方法 or 属性:width?: string \| number;
起始版本:7|类名:CircleOptions
方法 or 属性:width?: string \| number;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleOptions
方法 or 属性:height?: string \| number;
起始版本:7|类名:CircleOptions
方法 or 属性:height?: string \| number;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
起始版本:7|类名:CircleInterface
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
方法 or 属性:new (value?: CircleOptions): CircleAttribute;
起始版本:7|类名:CircleInterface
方法 or 属性:new (value?: CircleOptions): CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
方法 or 属性:(value?: CircleOptions): CircleAttribute;
起始版本:7|类名:CircleInterface
方法 or 属性:(value?: CircleOptions): CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleAttribute
起始版本:7|类名:CircleAttribute
起始版本:9|circle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Circle: CircleInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Circle: CircleInterface;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CircleInstance: CircleAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CircleInstance: CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:ColumnInterface
起始版本:7|类名:ColumnInterface
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnInterface
方法 or 属性:(value?: { space?: string \| number }): ColumnAttribute;
起始版本:7|类名:ColumnInterface
方法 or 属性:(value?: { space?: string \| number }): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
起始版本:7|类名:ColumnAttribute
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
方法 or 属性:alignItems(value: HorizontalAlign): ColumnAttribute;
起始版本:7|类名:ColumnAttribute
方法 or 属性:alignItems(value: HorizontalAlign): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
方法 or 属性:justifyContent(value: FlexAlign): ColumnAttribute;
起始版本:8|类名:ColumnAttribute
方法 or 属性:justifyContent(value: FlexAlign): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Column: ColumnInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Column: ColumnInterface;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnInstance: ColumnAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnInstance: ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnSplitInstance: ColumnSplitAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnSplitInstance: ColumnSplitAttribute;
起始版本:7|column_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnSplit: ColumnSplitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnSplit: ColumnSplitInterface;
起始版本:7|column_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Component: ClassDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Component: ClassDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Observed: ClassDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Observed: ClassDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Preview: ClassDecorator & ((value: PreviewParams) => ClassDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Preview: ClassDecorator & ((value: PreviewParams) => ClassDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BuilderParam: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const BuilderParam: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const State: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const State: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Prop: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Prop: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Link: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Link: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ObjectLink: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const ObjectLink: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Provide: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Provide: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Watch: (value: string) => PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Watch: (value: string) => PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Builder: MethodDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Builder: MethodDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Styles: MethodDecorator;
起始版本:8|类名:global
方法 or 属性:declare const Styles: MethodDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Extend: MethodDecorator & ((value: any) => MethodDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Extend: MethodDecorator & ((value: any) => MethodDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
起始版本:7|类名:Configuration
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:readonly colorMode: string;
起始版本:7|类名:Configuration
方法 or 属性:readonly colorMode: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:readonly fontScale: number;
起始版本:7|类名:Configuration
方法 or 属性:readonly fontScale: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
起始版本:8|类名:Rectangle
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:x?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:x?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:y?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:y?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:width?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:width?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:height?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:height?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function $r(value: string, ...params: any[]): Resource;
起始版本:7|类名:
方法 or 属性:function $r(value: string, ...params: any[]): Resource;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function $rawfile(value: string): Resource;
起始版本:7|类名:
方法 or 属性:function $rawfile(value: string): Resource;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
起始版本:7|类名:AnimateParam
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:duration?: number;
起始版本:7|类名:AnimateParam
方法 or 属性:duration?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:playMode?: PlayMode;
起始版本:7|类名:AnimateParam
方法 or 属性:playMode?: PlayMode;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:onFinish?: () => void;
起始版本:7|类名:AnimateParam
方法 or 属性:onFinish?: () => void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
起始版本:7|类名:TranslateOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:x?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:x?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:y?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:y?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:z?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:z?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
起始版本:7|类名:ScaleOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:z?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:z?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:centerX?: number \| string;
起始版本:7|类名:ScaleOptions
方法 or 属性:centerX?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:centerY?: number \| string;
起始版本:7|类名:ScaleOptions
方法 or 属性:centerY?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:centerX?: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:centerX?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:centerY?: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:centerY?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:angle: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:angle: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
起始版本:7|类名:TransitionOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:type?: TransitionType;
起始版本:7|类名:TransitionOptions
方法 or 属性:type?: TransitionType;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:opacity?: number;
起始版本:7|类名:TransitionOptions
方法 or 属性:opacity?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:translate?: TranslateOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:translate?: TranslateOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:scale?: ScaleOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:scale?: ScaleOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:rotate?: RotateOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:rotate?: RotateOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function animateTo(value: AnimateParam, event: () => void): void;
起始版本:7|类名:
方法 or 属性:function animateTo(value: AnimateParam, event: () => void): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function vp2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function vp2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2vp(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2vp(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function fp2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function fp2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2fp(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2fp(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function lpx2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function lpx2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2lpx(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2lpx(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:EventTarget
起始版本:8|类名:EventTarget
起始版本:9|common.d.ts| +|起始版本有变化|类名:EventTarget
方法 or 属性:area: Area;
起始版本:8|类名:EventTarget
方法 or 属性:area: Area;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
起始版本:8|类名:BaseEvent
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:target: EventTarget;
起始版本:8|类名:BaseEvent
方法 or 属性:target: EventTarget;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:timestamp: number;
起始版本:8|类名:BaseEvent
方法 or 属性:timestamp: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:source: SourceType;
起始版本:8|类名:BaseEvent
方法 or 属性:source: SourceType;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
起始版本:7|类名:ClickEvent
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:screenX: number;
起始版本:7|类名:ClickEvent
方法 or 属性:screenX: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:screenY: number;
起始版本:7|类名:ClickEvent
方法 or 属性:screenY: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:x: number;
起始版本:7|类名:ClickEvent
方法 or 属性:x: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:y: number;
起始版本:7|类名:ClickEvent
方法 or 属性:y: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
起始版本:8|类名:StateStyles
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:normal?: any;
起始版本:8|类名:StateStyles
方法 or 属性:normal?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:pressed?: any;
起始版本:8|类名:StateStyles
方法 or 属性:pressed?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:disabled?: any;
起始版本:8|类名:StateStyles
方法 or 属性:disabled?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:focused?: any;
起始版本:8|类名:StateStyles
方法 or 属性:focused?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:clicked?: any;
起始版本:8|类名:StateStyles
方法 or 属性:clicked?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
起始版本:7|类名:CommonMethod
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:constructor();
起始版本:7|类名:CommonMethod
方法 or 属性:constructor();
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:width(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:width(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:height(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:height(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:responseRegion(value: Array\ \| Rectangle): T;
起始版本:8|类名:CommonMethod
方法 or 属性:responseRegion(value: Array\ \| Rectangle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:size(value: SizeOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:size(value: SizeOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:constraintSize(value: ConstraintSizeOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:constraintSize(value: ConstraintSizeOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:layoutWeight(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:layoutWeight(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:padding(value: Padding \| Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:padding(value: Padding \| Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:margin(value: Margin \| Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:margin(value: Margin \| Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundColor(value: ResourceColor): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundColor(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImage(src: ResourceStr, repeat?: ImageRepeat): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImage(src: ResourceStr, repeat?: ImageRepeat): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImageSize(value: SizeOptions \| ImageSize): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImageSize(value: SizeOptions \| ImageSize): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImagePosition(value: Position \| Alignment): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImagePosition(value: Position \| Alignment): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:opacity(value: number \| Resource): T;
起始版本:7|类名:CommonMethod
方法 or 属性:opacity(value: number \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:border(value: BorderOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:border(value: BorderOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderStyle(value: BorderStyle): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderStyle(value: BorderStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderWidth(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderWidth(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderColor(value: ResourceColor): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderColor(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderRadius(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderRadius(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onClick(event: (event?: ClickEvent) => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onClick(event: (event?: ClickEvent) => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:animation(value: AnimateParam): T;
起始版本:7|类名:CommonMethod
方法 or 属性:animation(value: AnimateParam): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:transition(value: TransitionOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:transition(value: TransitionOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:blur(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:blur(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:brightness(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:brightness(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:contrast(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:contrast(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:grayscale(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:grayscale(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:colorBlend(value: Color \| string \| Resource): T;
起始版本:7|类名:CommonMethod
方法 or 属性:colorBlend(value: Color \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:saturate(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:saturate(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:sepia(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:sepia(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:invert(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:invert(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:hueRotate(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:hueRotate(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backdropBlur(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backdropBlur(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:translate(value: TranslateOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:translate(value: TranslateOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:scale(value: ScaleOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:scale(value: ScaleOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:rotate(value: RotateOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:rotate(value: RotateOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onAppear(event: () => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onAppear(event: () => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onDisAppear(event: () => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onDisAppear(event: () => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:visibility(value: Visibility): T;
起始版本:7|类名:CommonMethod
方法 or 属性:visibility(value: Visibility): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexGrow(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexGrow(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexShrink(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexShrink(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexBasis(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexBasis(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:alignSelf(value: ItemAlign): T;
起始版本:7|类名:CommonMethod
方法 or 属性:alignSelf(value: ItemAlign): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:displayPriority(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:displayPriority(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:zIndex(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:zIndex(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:direction(value: Direction): T;
起始版本:7|类名:CommonMethod
方法 or 属性:direction(value: Direction): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:align(value: Alignment): T;
起始版本:7|类名:CommonMethod
方法 or 属性:align(value: Alignment): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:position(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:position(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:markAnchor(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:markAnchor(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:offset(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:offset(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:enabled(value: boolean): T;
起始版本:7|类名:CommonMethod
方法 or 属性:enabled(value: boolean): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:aspectRatio(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:aspectRatio(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:overlay(value: string, options?: { align?: Alignment; offset?: { x?: number; y?: number } }): T;
起始版本:7|类名:CommonMethod
方法 or 属性:overlay(value: string, options?: { align?: Alignment; offset?: { x?: number; y?: number } }): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:linearGradient(value: {
angle?: number \| string;
direction?: GradientDirection;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:linearGradient(value: {
angle?: number \| string;
direction?: GradientDirection;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:sweepGradient(value: {
center: Array\;
start?: number \| string;
end?: number \| string;
rotation?: number \| string;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:sweepGradient(value: {
center: Array\;
start?: number \| string;
end?: number \| string;
rotation?: number \| string;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:radialGradient(value: { center: Array\; radius: number \| string; colors: Array\; repeating?: boolean }): T;
起始版本:7|类名:CommonMethod
方法 or 属性:radialGradient(value: { center: Array\; radius: number \| string; colors: Array\; repeating?: boolean }): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:shadow(value: {
radius: number \| Resource;
color?: Color \| string \| Resource;
offsetX?: number \| Resource;
offsetY?: number \| Resource;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:shadow(value: {
radius: number \| Resource;
color?: Color \| string \| Resource;
offsetX?: number \| Resource;
offsetY?: number \| Resource;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:clip(value: boolean \| CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:7|类名:CommonMethod
方法 or 属性:clip(value: boolean \| CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:mask(value: CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:7|类名:CommonMethod
方法 or 属性:mask(value: CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:id(value: string): T;
起始版本:8|类名:CommonMethod
方法 or 属性:id(value: string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:stateStyles(value: StateStyles): T;
起始版本:8|类名:CommonMethod
方法 or 属性:stateStyles(value: StateStyles): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonAttribute
起始版本:7|类名:CommonAttribute
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonInterface
起始版本:7|类名:CommonInterface
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CommonInstance: CommonAttribute;
起始版本:7|类名:global
方法 or 属性:declare const CommonInstance: CommonAttribute;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Common: CommonInterface;
起始版本:7|类名:global
方法 or 属性:declare const Common: CommonInterface;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
起始版本:7|类名:CommonShapeMethod
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:constructor();
起始版本:7|类名:CommonShapeMethod
方法 or 属性:constructor();
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:stroke(value: ResourceColor): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:stroke(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:fill(value: ResourceColor): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:fill(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeDashOffset(value: number \| string): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeDashOffset(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeLineCap(value: LineCapStyle): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeLineCap(value: LineCapStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeLineJoin(value: LineJoinStyle): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeLineJoin(value: LineJoinStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeMiterLimit(value: number \| string): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeMiterLimit(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeOpacity(value: number \| string \| Resource): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeOpacity(value: number \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:fillOpacity(value: number \| string \| Resource): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:fillOpacity(value: number \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeWidth(value: Length): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeWidth(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:antiAlias(value: boolean): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:antiAlias(value: boolean): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeDashArray(value: Array\): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeDashArray(value: Array\): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:build(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:build(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:aboutToAppear?(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:aboutToAppear?(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:aboutToDisappear?(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:aboutToDisappear?(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:View
起始版本:7|类名:View
起始版本:9|common.d.ts| +|起始版本有变化|类名:CounterInterface
起始版本:7|类名:CounterInterface
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterInterface
方法 or 属性:(): CounterAttribute;
起始版本:7|类名:CounterInterface
方法 or 属性:(): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
起始版本:7|类名:CounterAttribute
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
方法 or 属性:onInc(event: () => void): CounterAttribute;
起始版本:7|类名:CounterAttribute
方法 or 属性:onInc(event: () => void): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
方法 or 属性:onDec(event: () => void): CounterAttribute;
起始版本:7|类名:CounterAttribute
方法 or 属性:onDec(event: () => void): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CounterInstance: CounterAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CounterInstance: CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Counter: CounterInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Counter: CounterInterface;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:DataPanelType
起始版本:8|类名:DataPanelType
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelType
方法 or 属性:Line
起始版本:8|类名:DataPanelType
方法 or 属性:Line
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelType
方法 or 属性:Circle
起始版本:8|类名:DataPanelType
方法 or 属性:Circle
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
起始版本:7|类名:DataPanelOptions
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:values: number[];
起始版本:7|类名:DataPanelOptions
方法 or 属性:values: number[];
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:max?: number;
起始版本:7|类名:DataPanelOptions
方法 or 属性:max?: number;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:type?: DataPanelType;
起始版本:8|类名:DataPanelOptions
方法 or 属性:type?: DataPanelType;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelInterface
起始版本:7|类名:DataPanelInterface
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelInterface
方法 or 属性:(options: DataPanelOptions): DataPanelAttribute;
起始版本:7|类名:DataPanelInterface
方法 or 属性:(options: DataPanelOptions): DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelAttribute
起始版本:7|类名:DataPanelAttribute
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelAttribute
方法 or 属性:closeEffect(value: boolean): DataPanelAttribute;
起始版本:7|类名:DataPanelAttribute
方法 or 属性:closeEffect(value: boolean): DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DataPanel: DataPanelInterface
起始版本:N/A|类名:global
方法 or 属性:declare const DataPanel: DataPanelInterface
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DataPanelInstance: DataPanelAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DataPanelInstance: DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DatePicker: DatePickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const DatePicker: DatePickerInterface;
起始版本:8|date_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DatePickerInstance: DatePickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DatePickerInstance: DatePickerAttribute;
起始版本:8|date_picker.d.ts| +|起始版本有变化|类名:DividerInterface
起始版本:7|类名:DividerInterface
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerInterface
方法 or 属性:(): DividerAttribute;
起始版本:7|类名:DividerInterface
方法 or 属性:(): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
起始版本:7|类名:DividerAttribute
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:vertical(value: boolean): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:vertical(value: boolean): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:color(value: ResourceColor): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:color(value: ResourceColor): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:strokeWidth(value: number \| string): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:strokeWidth(value: number \| string): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:lineCap(value: LineCapStyle): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:lineCap(value: LineCapStyle): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Divider: DividerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Divider: DividerInterface;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DividerInstance: DividerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DividerInstance: DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:EllipseInterface
起始版本:7|类名:EllipseInterface
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:7|类名:EllipseInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:7|类名:EllipseInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseAttribute
起始版本:7|类名:EllipseAttribute
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Ellipse: EllipseInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Ellipse: EllipseInterface;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const EllipseInstance: EllipseAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const EllipseInstance: EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:Color
起始版本:7|类名:Color
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:White
起始版本:7|类名:Color
方法 or 属性:White
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Black
起始版本:7|类名:Color
方法 or 属性:Black
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Blue
起始版本:7|类名:Color
方法 or 属性:Blue
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Brown
起始版本:7|类名:Color
方法 or 属性:Brown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Gray
起始版本:7|类名:Color
方法 or 属性:Gray
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Green
起始版本:7|类名:Color
方法 or 属性:Green
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Grey
起始版本:7|类名:Color
方法 or 属性:Grey
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Orange
起始版本:7|类名:Color
方法 or 属性:Orange
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Pink
起始版本:7|类名:Color
方法 or 属性:Pink
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Red
起始版本:7|类名:Color
方法 or 属性:Red
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Yellow
起始版本:7|类名:Color
方法 or 属性:Yellow
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
起始版本:7|类名:ImageFit
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Contain
起始版本:7|类名:ImageFit
方法 or 属性:Contain
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Cover
起始版本:7|类名:ImageFit
方法 or 属性:Cover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Auto
起始版本:7|类名:ImageFit
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Fill
起始版本:7|类名:ImageFit
方法 or 属性:Fill
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:ScaleDown
起始版本:7|类名:ImageFit
方法 or 属性:ScaleDown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:None
起始版本:7|类名:ImageFit
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
起始版本:7|类名:BorderStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Dotted
起始版本:7|类名:BorderStyle
方法 or 属性:Dotted
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Dashed
起始版本:7|类名:BorderStyle
方法 or 属性:Dashed
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Solid
起始版本:7|类名:BorderStyle
方法 or 属性:Solid
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
起始版本:7|类名:LineJoinStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Miter
起始版本:7|类名:LineJoinStyle
方法 or 属性:Miter
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Round
起始版本:7|类名:LineJoinStyle
方法 or 属性:Round
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Bevel
起始版本:7|类名:LineJoinStyle
方法 or 属性:Bevel
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
起始版本:7|类名:TouchType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Down
起始版本:7|类名:TouchType
方法 or 属性:Down
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Up
起始版本:7|类名:TouchType
方法 or 属性:Up
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Move
起始版本:7|类名:TouchType
方法 or 属性:Move
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Cancel
起始版本:7|类名:TouchType
方法 or 属性:Cancel
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
起始版本:8|类名:MouseButton
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Left
起始版本:8|类名:MouseButton
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Right
起始版本:8|类名:MouseButton
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Middle
起始版本:8|类名:MouseButton
方法 or 属性:Middle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Back
起始版本:8|类名:MouseButton
方法 or 属性:Back
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Forward
起始版本:8|类名:MouseButton
方法 or 属性:Forward
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:None
起始版本:8|类名:MouseButton
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
起始版本:8|类名:MouseAction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Press
起始版本:8|类名:MouseAction
方法 or 属性:Press
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Release
起始版本:8|类名:MouseAction
方法 or 属性:Release
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Move
起始版本:8|类名:MouseAction
方法 or 属性:Move
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Hover
起始版本:8|类名:MouseAction
方法 or 属性:Hover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
起始版本:7|类名:AnimationStatus
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Initial
起始版本:7|类名:AnimationStatus
方法 or 属性:Initial
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Running
起始版本:7|类名:AnimationStatus
方法 or 属性:Running
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Paused
起始版本:7|类名:AnimationStatus
方法 or 属性:Paused
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Stopped
起始版本:7|类名:AnimationStatus
方法 or 属性:Stopped
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
起始版本:7|类名:Curve
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Linear
起始版本:7|类名:Curve
方法 or 属性:Linear
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Ease
起始版本:7|类名:Curve
方法 or 属性:Ease
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseIn
起始版本:7|类名:Curve
方法 or 属性:EaseIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseOut
起始版本:7|类名:Curve
方法 or 属性:EaseOut
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseInOut
起始版本:7|类名:Curve
方法 or 属性:EaseInOut
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:FastOutSlowIn
起始版本:7|类名:Curve
方法 or 属性:FastOutSlowIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:LinearOutSlowIn
起始版本:7|类名:Curve
方法 or 属性:LinearOutSlowIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:FastOutLinearIn
起始版本:7|类名:Curve
方法 or 属性:FastOutLinearIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:ExtremeDeceleration
起始版本:7|类名:Curve
方法 or 属性:ExtremeDeceleration
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Sharp
起始版本:7|类名:Curve
方法 or 属性:Sharp
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Rhythm
起始版本:7|类名:Curve
方法 or 属性:Rhythm
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Smooth
起始版本:7|类名:Curve
方法 or 属性:Smooth
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Friction
起始版本:7|类名:Curve
方法 or 属性:Friction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
起始版本:7|类名:FillMode
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:None
起始版本:7|类名:FillMode
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Forwards
起始版本:7|类名:FillMode
方法 or 属性:Forwards
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Backwards
起始版本:7|类名:FillMode
方法 or 属性:Backwards
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Both
起始版本:7|类名:FillMode
方法 or 属性:Both
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
起始版本:7|类名:PlayMode
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Normal
起始版本:7|类名:PlayMode
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Reverse
起始版本:7|类名:PlayMode
方法 or 属性:Reverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Alternate
起始版本:7|类名:PlayMode
方法 or 属性:Alternate
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:AlternateReverse
起始版本:7|类名:PlayMode
方法 or 属性:AlternateReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
起始版本:7|类名:KeyType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
方法 or 属性:Down
起始版本:7|类名:KeyType
方法 or 属性:Down
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
方法 or 属性:Up
起始版本:7|类名:KeyType
方法 or 属性:Up
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
起始版本:7|类名:KeySource
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
方法 or 属性:Unknown
起始版本:7|类名:KeySource
方法 or 属性:Unknown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
方法 or 属性:Keyboard
起始版本:7|类名:KeySource
方法 or 属性:Keyboard
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
起始版本:7|类名:Edge
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Top
起始版本:7|类名:Edge
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Bottom
起始版本:7|类名:Edge
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Start
起始版本:7|类名:Edge
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:End
起始版本:7|类名:Edge
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
起始版本:7|类名:Week
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Mon
起始版本:7|类名:Week
方法 or 属性:Mon
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Tue
起始版本:7|类名:Week
方法 or 属性:Tue
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Wed
起始版本:7|类名:Week
方法 or 属性:Wed
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Thur
起始版本:7|类名:Week
方法 or 属性:Thur
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Fri
起始版本:7|类名:Week
方法 or 属性:Fri
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Sat
起始版本:7|类名:Week
方法 or 属性:Sat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Sun
起始版本:7|类名:Week
方法 or 属性:Sun
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
起始版本:7|类名:Direction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Ltr
起始版本:7|类名:Direction
方法 or 属性:Ltr
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Rtl
起始版本:7|类名:Direction
方法 or 属性:Rtl
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Auto
起始版本:7|类名:Direction
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
起始版本:7|类名:BarState
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:Off
起始版本:7|类名:BarState
方法 or 属性:Off
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:Auto
起始版本:7|类名:BarState
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:On
起始版本:7|类名:BarState
方法 or 属性:On
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
起始版本:7|类名:EdgeEffect
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:Spring
起始版本:7|类名:EdgeEffect
方法 or 属性:Spring
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:Fade
起始版本:7|类名:EdgeEffect
方法 or 属性:Fade
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:None
起始版本:7|类名:EdgeEffect
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
起始版本:7|类名:Alignment
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:TopStart
起始版本:7|类名:Alignment
方法 or 属性:TopStart
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Top
起始版本:7|类名:Alignment
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:TopEnd
起始版本:7|类名:Alignment
方法 or 属性:TopEnd
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Start
起始版本:7|类名:Alignment
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Center
起始版本:7|类名:Alignment
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:End
起始版本:7|类名:Alignment
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:BottomStart
起始版本:7|类名:Alignment
方法 or 属性:BottomStart
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Bottom
起始版本:7|类名:Alignment
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:BottomEnd
起始版本:7|类名:Alignment
方法 or 属性:BottomEnd
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
起始版本:7|类名:TransitionType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:All
起始版本:7|类名:TransitionType
方法 or 属性:All
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:Insert
起始版本:7|类名:TransitionType
方法 or 属性:Insert
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:Delete
起始版本:7|类名:TransitionType
方法 or 属性:Delete
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
起始版本:7|类名:RelateType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
方法 or 属性:FILL
起始版本:7|类名:RelateType
方法 or 属性:FILL
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
方法 or 属性:FIT
起始版本:7|类名:RelateType
方法 or 属性:FIT
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
起始版本:7|类名:Visibility
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:Visible
起始版本:7|类名:Visibility
方法 or 属性:Visible
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:Hidden
起始版本:7|类名:Visibility
方法 or 属性:Hidden
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:None
起始版本:7|类名:Visibility
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
起始版本:7|类名:LineCapStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Butt
起始版本:7|类名:LineCapStyle
方法 or 属性:Butt
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Round
起始版本:7|类名:LineCapStyle
方法 or 属性:Round
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Square
起始版本:7|类名:LineCapStyle
方法 or 属性:Square
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
起始版本:7|类名:Axis
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
方法 or 属性:Vertical
起始版本:7|类名:Axis
方法 or 属性:Vertical
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
方法 or 属性:Horizontal
起始版本:7|类名:Axis
方法 or 属性:Horizontal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
起始版本:7|类名:HorizontalAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:Start
起始版本:7|类名:HorizontalAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:Center
起始版本:7|类名:HorizontalAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:End
起始版本:7|类名:HorizontalAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
起始版本:7|类名:FlexAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:Start
起始版本:7|类名:FlexAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:Center
起始版本:7|类名:FlexAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:End
起始版本:7|类名:FlexAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceBetween
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceBetween
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceAround
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceAround
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceEvenly
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceEvenly
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
起始版本:7|类名:ItemAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Auto
起始版本:7|类名:ItemAlign
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Start
起始版本:7|类名:ItemAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Center
起始版本:7|类名:ItemAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:End
起始版本:7|类名:ItemAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Baseline
起始版本:7|类名:ItemAlign
方法 or 属性:Baseline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Stretch
起始版本:7|类名:ItemAlign
方法 or 属性:Stretch
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
起始版本:7|类名:FlexDirection
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:Row
起始版本:7|类名:FlexDirection
方法 or 属性:Row
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:Column
起始版本:7|类名:FlexDirection
方法 or 属性:Column
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:RowReverse
起始版本:7|类名:FlexDirection
方法 or 属性:RowReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:ColumnReverse
起始版本:7|类名:FlexDirection
方法 or 属性:ColumnReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
起始版本:7|类名:FlexWrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:NoWrap
起始版本:7|类名:FlexWrap
方法 or 属性:NoWrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:Wrap
起始版本:7|类名:FlexWrap
方法 or 属性:Wrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:WrapReverse
起始版本:7|类名:FlexWrap
方法 or 属性:WrapReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
起始版本:7|类名:VerticalAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Top
起始版本:7|类名:VerticalAlign
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Center
起始版本:7|类名:VerticalAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Bottom
起始版本:7|类名:VerticalAlign
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
起始版本:7|类名:ImageRepeat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:NoRepeat
起始版本:7|类名:ImageRepeat
方法 or 属性:NoRepeat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:X
起始版本:7|类名:ImageRepeat
方法 or 属性:X
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:Y
起始版本:7|类名:ImageRepeat
方法 or 属性:Y
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:XY
起始版本:7|类名:ImageRepeat
方法 or 属性:XY
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
起始版本:7|类名:ImageSize
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Auto
起始版本:7|类名:ImageSize
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Cover
起始版本:7|类名:ImageSize
方法 or 属性:Cover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Contain
起始版本:7|类名:ImageSize
方法 or 属性:Contain
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
起始版本:7|类名:GradientDirection
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Left
起始版本:7|类名:GradientDirection
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Top
起始版本:7|类名:GradientDirection
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Right
起始版本:7|类名:GradientDirection
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Bottom
起始版本:7|类名:GradientDirection
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:LeftTop
起始版本:7|类名:GradientDirection
方法 or 属性:LeftTop
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:LeftBottom
起始版本:7|类名:GradientDirection
方法 or 属性:LeftBottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:RightTop
起始版本:7|类名:GradientDirection
方法 or 属性:RightTop
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:RightBottom
起始版本:7|类名:GradientDirection
方法 or 属性:RightBottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:None
起始版本:7|类名:GradientDirection
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
起始版本:7|类名:SharedTransitionEffectType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
方法 or 属性:Static
起始版本:7|类名:SharedTransitionEffectType
方法 or 属性:Static
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
方法 or 属性:Exchange
起始版本:7|类名:SharedTransitionEffectType
方法 or 属性:Exchange
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
起始版本:7|类名:FontStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
方法 or 属性:Normal
起始版本:7|类名:FontStyle
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
方法 or 属性:Italic
起始版本:7|类名:FontStyle
方法 or 属性:Italic
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
起始版本:7|类名:FontWeight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Lighter
起始版本:7|类名:FontWeight
方法 or 属性:Lighter
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Normal
起始版本:7|类名:FontWeight
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Regular
起始版本:7|类名:FontWeight
方法 or 属性:Regular
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Medium
起始版本:7|类名:FontWeight
方法 or 属性:Medium
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Bold
起始版本:7|类名:FontWeight
方法 or 属性:Bold
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Bolder
起始版本:7|类名:FontWeight
方法 or 属性:Bolder
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
起始版本:7|类名:TextAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:Center
起始版本:7|类名:TextAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:Start
起始版本:7|类名:TextAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:End
起始版本:7|类名:TextAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
起始版本:7|类名:TextOverflow
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:Clip
起始版本:7|类名:TextOverflow
方法 or 属性:Clip
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:Ellipsis
起始版本:7|类名:TextOverflow
方法 or 属性:Ellipsis
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:None
起始版本:7|类名:TextOverflow
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
起始版本:7|类名:TextDecorationType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:None
起始版本:7|类名:TextDecorationType
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:Underline
起始版本:7|类名:TextDecorationType
方法 or 属性:Underline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:Overline
起始版本:7|类名:TextDecorationType
方法 or 属性:Overline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:LineThrough
起始版本:7|类名:TextDecorationType
方法 or 属性:LineThrough
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
起始版本:7|类名:TextCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:Normal
起始版本:7|类名:TextCase
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:LowerCase
起始版本:7|类名:TextCase
方法 or 属性:LowerCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:UpperCase
起始版本:7|类名:TextCase
方法 or 属性:UpperCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
起始版本:8|类名:ResponseType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
方法 or 属性:RightClick
起始版本:8|类名:ResponseType
方法 or 属性:RightClick
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
方法 or 属性:LongPress
起始版本:8|类名:ResponseType
方法 or 属性:LongPress
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
起始版本:8|类名:HoverEffect
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Auto
起始版本:8|类名:HoverEffect
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Scale
起始版本:8|类名:HoverEffect
方法 or 属性:Scale
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Highlight
起始版本:8|类名:HoverEffect
方法 or 属性:Highlight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:None
起始版本:8|类名:HoverEffect
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
起始版本:8|类名:Placement
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Left
起始版本:8|类名:Placement
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Right
起始版本:8|类名:Placement
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Top
起始版本:8|类名:Placement
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Bottom
起始版本:8|类名:Placement
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:TopLeft
起始版本:8|类名:Placement
方法 or 属性:TopLeft
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:TopRight
起始版本:8|类名:Placement
方法 or 属性:TopRight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:BottomLeft
起始版本:8|类名:Placement
方法 or 属性:BottomLeft
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:BottomRight
起始版本:8|类名:Placement
方法 or 属性:BottomRight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexOptions
起始版本:7|类名:FlexOptions
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:direction?: FlexDirection;
起始版本:7|类名:FlexOptions
方法 or 属性:direction?: FlexDirection;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:wrap?: FlexWrap;
起始版本:7|类名:FlexOptions
方法 or 属性:wrap?: FlexWrap;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:justifyContent?: FlexAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:justifyContent?: FlexAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:alignItems?: ItemAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:alignItems?: ItemAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:alignContent?: FlexAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:alignContent?: FlexAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexInterface
起始版本:7|类名:FlexInterface
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexInterface
方法 or 属性:(value?: FlexOptions): FlexAttribute;
起始版本:7|类名:FlexInterface
方法 or 属性:(value?: FlexOptions): FlexAttribute;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexAttribute
起始版本:7|类名:FlexAttribute
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Flex: FlexInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Flex: FlexInterface;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FlexInstance: FlexAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const FlexInstance: FlexAttribute;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FlowItem: FlowItemInterface
起始版本:N/A|类名:global
方法 or 属性:declare const FlowItem: FlowItemInterface
起始版本:9|flow_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FlowItemInstance: FlowItemAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const FlowItemInstance: FlowItemAttribute;
起始版本:9|flow_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
起始版本:7|form_component.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
起始版本:7|form_component.d.ts| +|起始版本有变化|类名:ForEachInterface
起始版本:7|类名:ForEachInterface
起始版本:9|for_each.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ForEach: ForEachInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ForEach: ForEachInterface;
起始版本:9|for_each.d.ts| +|起始版本有变化|类名:GaugeInterface
起始版本:8|类名:GaugeInterface
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeInterface
方法 or 属性:(options: { value: number; min?: number; max?: number }): GaugeAttribute;
起始版本:8|类名:GaugeInterface
方法 or 属性:(options: { value: number; min?: number; max?: number }): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
起始版本:8|类名:GaugeAttribute
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:value(value: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:value(value: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:startAngle(angle: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:startAngle(angle: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:endAngle(angle: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:endAngle(angle: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:colors(colors: Array\): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:colors(colors: Array\): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:strokeWidth(length: Length): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:strokeWidth(length: Length): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Gauge: GaugeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Gauge: GaugeInterface;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GaugeInstance: GaugeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GaugeInstance: GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TapGesture: TapGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TapGesture: TapGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LongPressGesture: LongPressGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const LongPressGesture: LongPressGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PanGesture: PanGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PanGesture: PanGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SwipeGesture: SwipeGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const SwipeGesture: SwipeGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PinchGesture: PinchGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PinchGesture: PinchGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RotationGesture: RotationGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RotationGesture: RotationGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GestureGroup: GestureGroupInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const GestureGroup: GestureGroupInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Grid: GridInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Grid: GridInterface;
起始版本:7|grid.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridInstance: GridAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridInstance: GridAttribute;
起始版本:7|grid.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridItem: GridItemInterface
起始版本:N/A|类名:global
方法 or 属性:declare const GridItem: GridItemInterface
起始版本:7|gridItem.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridItemInstance: GridItemAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridItemInstance: GridItemAttribute;
起始版本:7|gridItem.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridCol: GridColInterface
起始版本:N/A|类名:global
方法 or 属性:declare const GridCol: GridColInterface
起始版本:9|grid_col.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridColInstance: GridColAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridColInstance: GridColAttribute;
起始版本:9|grid_col.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
起始版本:N/A|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
起始版本:7|grid_container.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
起始版本:7|grid_container.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridRow: GridRowInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const GridRow: GridRowInterface;
起始版本:9|grid_row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridRowInstance: GridRowAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridRowInstance: GridRowAttribute;
起始版本:9|grid_row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Hyperlink: HyperlinkInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Hyperlink: HyperlinkInterface;
起始版本:7|hyperlink.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const HyperlinkInterface: HyperlinkAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const HyperlinkInterface: HyperlinkAttribute;
起始版本:7|hyperlink.d.ts| +|起始版本有变化|类名:ImageRenderMode
起始版本:7|类名:ImageRenderMode
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageRenderMode
方法 or 属性:Original
起始版本:7|类名:ImageRenderMode
方法 or 属性:Original
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageRenderMode
方法 or 属性:Template
起始版本:7|类名:ImageRenderMode
方法 or 属性:Template
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
起始版本:7|类名:ImageInterpolation
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:None
起始版本:7|类名:ImageInterpolation
方法 or 属性:None
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:Low
起始版本:7|类名:ImageInterpolation
方法 or 属性:Low
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:Medium
起始版本:7|类名:ImageInterpolation
方法 or 属性:Medium
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:High
起始版本:7|类名:ImageInterpolation
方法 or 属性:High
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterface
起始版本:7|类名:ImageInterface
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterface
方法 or 属性:(src: string \| PixelMap \| Resource): ImageAttribute;
起始版本:7|类名:ImageInterface
方法 or 属性:(src: string \| PixelMap \| Resource): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
起始版本:7|类名:ImageAttribute
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:alt(value: string \| Resource): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:alt(value: string \| Resource): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:matchTextDirection(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:matchTextDirection(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:fitOriginalSize(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:fitOriginalSize(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:fillColor(value: ResourceColor): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:fillColor(value: ResourceColor): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:objectFit(value: ImageFit): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:objectFit(value: ImageFit): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:objectRepeat(value: ImageRepeat): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:objectRepeat(value: ImageRepeat): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:autoResize(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:autoResize(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:renderMode(value: ImageRenderMode): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:renderMode(value: ImageRenderMode): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:interpolation(value: ImageInterpolation): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:interpolation(value: ImageInterpolation): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:sourceSize(value: { width: number; height: number }): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:sourceSize(value: { width: number; height: number }): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:syncLoad(value: boolean): ImageAttribute;
起始版本:8|类名:ImageAttribute
方法 or 属性:syncLoad(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onComplete(
callback: (event?: {
width: number;
height: number;
componentWidth: number;
componentHeight: number;
loadingStatus: number;
}) => void,
): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onComplete(
callback: (event?: {
width: number;
height: number;
componentWidth: number;
componentHeight: number;
loadingStatus: number;
}) => void,
): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onError(callback: (event?: { componentWidth: number; componentHeight: number }) => void): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onError(callback: (event?: { componentWidth: number; componentHeight: number }) => void): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onFinish(event: () => void): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onFinish(event: () => void): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Image: ImageInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Image: ImageInterface;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageInstance: ImageAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageInstance: ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageAnimator: ImageAnimatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageAnimator: ImageAnimatorInterface;
起始版本:7|image_animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageAnimatorInstance: ImageAnimatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageAnimatorInstance: ImageAnimatorAttribute;
起始版本:7|image_animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LazyForEach: LazyForEachInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const LazyForEach: LazyForEachInterface;
起始版本:7|lazy_for_each.d.ts| +|起始版本有变化|类名:LineInterface
起始版本:7|类名:LineInterface
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:7|类名:LineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:7|类名:LineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
起始版本:7|类名:LineAttribute
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
方法 or 属性:startPoint(value: Array\): LineAttribute;
起始版本:7|类名:LineAttribute
方法 or 属性:startPoint(value: Array\): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
方法 or 属性:endPoint(value: Array\): LineAttribute;
起始版本:7|类名:LineAttribute
方法 or 属性:endPoint(value: Array\): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Line: LineInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Line: LineInterface;
起始版本:9|line.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LineInstance: LineAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const LineInstance: LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:ScrollState
起始版本:7|类名:ScrollState
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Idle
起始版本:7|类名:ScrollState
方法 or 属性:Idle
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Scroll
起始版本:7|类名:ScrollState
方法 or 属性:Scroll
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Fling
起始版本:7|类名:ScrollState
方法 or 属性:Fling
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListInterface
起始版本:7|类名:ListInterface
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListInterface
方法 or 属性:(value?: { initialIndex?: number; space?: number \| string; scroller?: Scroller }): ListAttribute;
起始版本:7|类名:ListInterface
方法 or 属性:(value?: { initialIndex?: number; space?: number \| string; scroller?: Scroller }): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
起始版本:7|类名:ListAttribute
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:listDirection(value: Axis): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:listDirection(value: Axis): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:scrollBar(value: BarState): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:scrollBar(value: BarState): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:edgeEffect(value: EdgeEffect): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:edgeEffect(value: EdgeEffect): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:divider(
value: {
strokeWidth: Length;
color?: ResourceColor;
startMargin?: Length;
endMargin?: Length;
} \| null,
): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:divider(
value: {
strokeWidth: Length;
color?: ResourceColor;
startMargin?: Length;
endMargin?: Length;
} \| null,
): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:multiSelectable(value: boolean): ListAttribute;
起始版本:8|类名:ListAttribute
方法 or 属性:multiSelectable(value: boolean): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:cachedCount(value: number): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:cachedCount(value: number): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:chainAnimation(value: boolean): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:chainAnimation(value: boolean): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScroll(event: (scrollOffset: number, scrollState: ScrollState) => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScroll(event: (scrollOffset: number, scrollState: ScrollState) => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScrollIndex(event: (start: number, end: number) => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScrollIndex(event: (start: number, end: number) => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onReachStart(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onReachStart(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onReachEnd(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onReachEnd(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScrollStop(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScrollStop(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const List: ListInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const List: ListInterface;
起始版本:9|list.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListInstance: ListAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ListInstance: ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListItemInterface
起始版本:7|类名:ListItemInterface
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemInterface
方法 or 属性:(value?: string): ListItemAttribute;
起始版本:7|类名:ListItemInterface
方法 or 属性:(value?: string): ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemAttribute
起始版本:7|类名:ListItemAttribute
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemAttribute
方法 or 属性:onSelect(event: (isSelected: boolean) => void): ListItemAttribute;
起始版本:8|类名:ListItemAttribute
方法 or 属性:onSelect(event: (isSelected: boolean) => void): ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListItemInstance: ListItemAttribute;
起始版本:7|类名:global
方法 or 属性:declare const ListItemInstance: ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListItem: ListItemInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ListItem: ListItemInterface;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListItemGroup: ListItemGroupInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ListItemGroup: ListItemGroupInterface;
起始版本:9|list_item_group.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
起始版本:8|类名:LoadingProgressStyle
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Default
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Default
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Circular
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Circular
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Orbital
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Orbital
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressInterface
起始版本:8|类名:LoadingProgressInterface
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressInterface
方法 or 属性:(): LoadingProgressAttribute;
起始版本:8|类名:LoadingProgressInterface
方法 or 属性:(): LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressAttribute
起始版本:8|类名:LoadingProgressAttribute
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressAttribute
方法 or 属性:color(value: ResourceColor): LoadingProgressAttribute;
起始版本:8|类名:LoadingProgressAttribute
方法 or 属性:color(value: ResourceColor): LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LoadingProgress: LoadingProgressInterface;
起始版本:8|类名:global
方法 or 属性:declare const LoadingProgress: LoadingProgressInterface;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LoadingProgressInstance: LoadingProgressAttribute;
起始版本:8|类名:global
方法 or 属性:declare const LoadingProgressInstance: LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:MarqueeInterface
起始版本:8|类名:MarqueeInterface
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeInterface
方法 or 属性:(value: { start: boolean; step?: number; loop?: number; fromStart?: boolean; src: string }): MarqueeAttribute;
起始版本:8|类名:MarqueeInterface
方法 or 属性:(value: { start: boolean; step?: number; loop?: number; fromStart?: boolean; src: string }): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
起始版本:8|类名:MarqueeAttribute
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontColor(value: ResourceColor): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontColor(value: ResourceColor): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontSize(value: Length): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontSize(value: Length): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:allowScale(value: boolean): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:allowScale(value: boolean): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontFamily(value: string \| Resource): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontFamily(value: string \| Resource): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onStart(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onStart(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onBounce(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onBounce(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onFinish(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onFinish(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Marquee: MarqueeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Marquee: MarqueeInterface;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const MarqueeInstance: MarqueeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const MarqueeInstance: MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Navigation: NavigationInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Navigation: NavigationInterface;
起始版本:8|navigation.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavigationInstance: NavigationAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavigationInstance: NavigationAttribute;
起始版本:8|navigation.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Navigator: NavigatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Navigator: NavigatorInterface;
起始版本:7|navigator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavigatorInstance: NavigatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavigatorInstance: NavigatorAttribute;
起始版本:7|navigator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavDestination: NavDestinationInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const NavDestination: NavDestinationInterface;
起始版本:9|nav_destination.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavDestinationInstance: NavDestinationAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavDestinationInstance: NavDestinationAttribute;
起始版本:9|nav_destination.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavRouter: NavRouterInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const NavRouter: NavRouterInterface;
起始版本:9|nav_router.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavRouterInstance: NavRouterAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavRouterInstance: NavRouterAttribute;
起始版本:9|nav_router.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PageTransitionEnter: PageTransitionEnterInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PageTransitionEnter: PageTransitionEnterInterface;
起始版本:7|page_transition.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PageTransitionExit: PageTransitionExitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PageTransitionExit: PageTransitionExitInterface;
起始版本:7|page_transition.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Panel: PanelInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Panel: PanelInterface;
起始版本:7|panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PanelInstance: PanelAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PanelInstance: PanelAttribute;
起始版本:7|panel.d.ts| +|起始版本有变化|类名:PathInterface
起始版本:7|类名:PathInterface
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathInterface
方法 or 属性:new (value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:7|类名:PathInterface
方法 or 属性:new (value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathInterface
方法 or 属性:(value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:7|类名:PathInterface
方法 or 属性:(value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathAttribute
起始版本:7|类名:PathAttribute
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathAttribute
方法 or 属性:commands(value: string): PathAttribute;
起始版本:7|类名:PathAttribute
方法 or 属性:commands(value: string): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Path: PathInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Path: PathInterface;
起始版本:9|path.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PathInstance: PathAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PathInstance: PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PatternLock: PatternLockInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PatternLock: PatternLockInterface;
起始版本:9|pattern_lock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PatternLockInstance: PatternLockAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PatternLockInstance: PatternLockAttribute;
起始版本:9|pattern_lock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PluginComponent: PluginComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PluginComponent: PluginComponentInterface;
起始版本:9|plugin_component.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PluginComponentInstance: PluginComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PluginComponentInstance: PluginComponentAttribute;
起始版本:9|plugin_component.d.ts| +|起始版本有变化|类名:PolygonInterface
起始版本:7|类名:PolygonInterface
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:7|类名:PolygonInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:7|类名:PolygonInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonAttribute
方法 or 属性:points(value: Array\): PolygonAttribute;
起始版本:7|类名:PolygonAttribute
方法 or 属性:points(value: Array\): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Polygon: PolygonInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Polygon: PolygonInterface;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PolygonInstance: PolygonAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PolygonInstance: PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolylineInterface
起始版本:7|类名:PolylineInterface
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:7|类名:PolylineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:7|类名:PolylineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineAttribute
起始版本:7|类名:PolylineAttribute
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineAttribute
方法 or 属性:points(value: Array\): PolylineAttribute;
起始版本:7|类名:PolylineAttribute
方法 or 属性:points(value: Array\): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Polyline: PolylineInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Polyline: PolylineInterface;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PolylineInstance: PolylineAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PolylineInstance: PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:ProgressOptions
起始版本:7|类名:ProgressOptions
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:value: number;
起始版本:7|类名:ProgressOptions
方法 or 属性:value: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:total?: number;
起始版本:7|类名:ProgressOptions
方法 or 属性:total?: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:type?: ProgressType
起始版本:8|类名:ProgressOptions
方法 or 属性:type?: ProgressType
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
起始版本:8|类名:ProgressType
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Linear
起始版本:8|类名:ProgressType
方法 or 属性:Linear
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Ring
起始版本:8|类名:ProgressType
方法 or 属性:Ring
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Eclipse
起始版本:8|类名:ProgressType
方法 or 属性:Eclipse
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:ScaleRing
起始版本:8|类名:ProgressType
方法 or 属性:ScaleRing
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Capsule
起始版本:8|类名:ProgressType
方法 or 属性:Capsule
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
起始版本:8|类名:ProgressStyleOptions
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:strokeWidth?: Length;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:strokeWidth?: Length;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:scaleCount?: number;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:scaleCount?: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:scaleWidth?: Length;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:scaleWidth?: Length;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
起始版本:7|类名:ProgressStyle
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Linear
起始版本:7|类名:ProgressStyle
方法 or 属性:Linear
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Ring
起始版本:8|类名:ProgressStyle
方法 or 属性:Ring
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Eclipse
起始版本:7|类名:ProgressStyle
方法 or 属性:Eclipse
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:ScaleRing
起始版本:8|类名:ProgressStyle
方法 or 属性:ScaleRing
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Capsule
起始版本:8|类名:ProgressStyle
方法 or 属性:Capsule
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressInterface
起始版本:7|类名:ProgressInterface
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressInterface
方法 or 属性:(options: ProgressOptions): ProgressAttribute;
起始版本:7|类名:ProgressInterface
方法 or 属性:(options: ProgressOptions): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
起始版本:7|类名:ProgressAttribute
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:value(value: number): ProgressAttribute;
起始版本:7|类名:ProgressAttribute
方法 or 属性:value(value: number): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:color(value: ResourceColor): ProgressAttribute;
起始版本:7|类名:ProgressAttribute
方法 or 属性:color(value: ResourceColor): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:style(value: ProgressStyleOptions): ProgressAttribute;
起始版本:8|类名:ProgressAttribute
方法 or 属性:style(value: ProgressStyleOptions): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Progress: ProgressInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Progress: ProgressInterface;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ProgressInstance: ProgressAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ProgressInstance: ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:QRCodeInterface
起始版本:7|类名:QRCodeInterface
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeInterface
方法 or 属性:(value: string): QRCodeAttribute;
起始版本:7|类名:QRCodeInterface
方法 or 属性:(value: string): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
起始版本:7|类名:QRCodeAttribute
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
方法 or 属性:color(value: ResourceColor): QRCodeAttribute;
起始版本:7|类名:QRCodeAttribute
方法 or 属性:color(value: ResourceColor): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
方法 or 属性:backgroundColor(value: ResourceColor): QRCodeAttribute;
起始版本:7|类名:QRCodeAttribute
方法 or 属性:backgroundColor(value: ResourceColor): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const QRCode: QRCodeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const QRCode: QRCodeInterface;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const QRCodeInstance: QRCodeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const QRCodeInstance: QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:RadioOptions
起始版本:8|类名:RadioOptions
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioOptions
方法 or 属性:group: string;
起始版本:8|类名:RadioOptions
方法 or 属性:group: string;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioOptions
方法 or 属性:value: string;
起始版本:8|类名:RadioOptions
方法 or 属性:value: string;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioInterface
起始版本:8|类名:RadioInterface
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioInterface
方法 or 属性:(options: RadioOptions): RadioAttribute;
起始版本:8|类名:RadioInterface
方法 or 属性:(options: RadioOptions): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
起始版本:8|类名:RadioAttribute
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
方法 or 属性:checked(value: boolean): RadioAttribute;
起始版本:8|类名:RadioAttribute
方法 or 属性:checked(value: boolean): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
方法 or 属性:onChange(callback: (isChecked: boolean) => void): RadioAttribute;
起始版本:8|类名:RadioAttribute
方法 or 属性:onChange(callback: (isChecked: boolean) => void): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Radio: RadioInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Radio: RadioInterface;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RadioInstance: RadioAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RadioInstance: RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RatingInterface
起始版本:7|类名:RatingInterface
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingInterface
方法 or 属性:(options?: { rating: number; indicator?: boolean }): RatingAttribute;
起始版本:7|类名:RatingInterface
方法 or 属性:(options?: { rating: number; indicator?: boolean }): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
起始版本:7|类名:RatingAttribute
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:stars(value: number): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:stars(value: number): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:stepSize(value: number): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:stepSize(value: number): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:starStyle(value: { backgroundUri: string; foregroundUri: string; secondaryUri?: string }): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:starStyle(value: { backgroundUri: string; foregroundUri: string; secondaryUri?: string }): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:onChange(callback: (value: number) => void): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:onChange(callback: (value: number) => void): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Rating: RatingInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Rating: RatingInterface;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RatingInstance: RatingAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RatingInstance: RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RectInterface
起始版本:7|类名:RectInterface
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectInterface
方法 or 属性:new (
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:7|类名:RectInterface
方法 or 属性:new (
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectInterface
方法 or 属性:(
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:7|类名:RectInterface
方法 or 属性:(
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
起始版本:7|类名:RectAttribute
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radiusWidth(value: number \| string): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radiusWidth(value: number \| string): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radiusHeight(value: number \| string): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radiusHeight(value: number \| string): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radius(value: number \| string \| Array\): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radius(value: number \| string \| Array\): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Rect: RectInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Rect: RectInterface;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Refresh: RefreshInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Refresh: RefreshInterface;
起始版本:8|refresh.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RefreshInstance: RefreshAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RefreshInstance: RefreshAttribute;
起始版本:8|refresh.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RemoteWindow: RemoteWindowInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RemoteWindow: RemoteWindowInterface;
起始版本:9|remote_window.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RemoteWindowInstance: RemoteWindowAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RemoteWindowInstance: RemoteWindowAttribute;
起始版本:9|remote_window.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RichText: RichTextInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RichText: RichTextInterface;
起始版本:8|rich_text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RichTextInstance: RichTextAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RichTextInstance: RichTextAttribute;
起始版本:8|rich_text.d.ts| +|起始版本有变化|类名:RowInterface
起始版本:7|类名:RowInterface
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowInterface
方法 or 属性:(value?: { space?: string \| number }): RowAttribute;
起始版本:7|类名:RowInterface
方法 or 属性:(value?: { space?: string \| number }): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
起始版本:7|类名:RowAttribute
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
方法 or 属性:alignItems(value: VerticalAlign): RowAttribute;
起始版本:7|类名:RowAttribute
方法 or 属性:alignItems(value: VerticalAlign): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
方法 or 属性:justifyContent(value: FlexAlign): RowAttribute;
起始版本:8|类名:RowAttribute
方法 or 属性:justifyContent(value: FlexAlign): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Row: RowInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Row: RowInterface;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowInstance: RowAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RowInstance: RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowSplit: RowSplitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RowSplit: RowSplitInterface;
起始版本:7|row_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowSplitInstance: RowSplitAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RowSplitInstance: RowSplitAttribute;
起始版本:7|row_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Scroll: ScrollInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Scroll: ScrollInterface;
起始版本:7|scroll.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollInstance: ScrollAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollInstance: ScrollAttribute;
起始版本:7|scroll.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollBar: ScrollBarInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollBar: ScrollBarInterface;
起始版本:8|scroll_bar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollBarInstance: ScrollBarAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollBarInstance: ScrollBarAttribute;
起始版本:8|scroll_bar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Search: SearchInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Search: SearchInterface;
起始版本:8|search.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SearchInstance: SearchAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SearchInstance: SearchAttribute;
起始版本:8|search.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Select: SelectInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Select: SelectInterface;
起始版本:8|select.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SelectInstance: SelectAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SelectInstance: SelectAttribute;
起始版本:8|select.d.ts| +|起始版本有变化|类名:ShapeInterface
起始版本:7|类名:ShapeInterface
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
起始版本:7|类名:ShapeAttribute
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:viewPort(value: { x?: number \| string; y?: number \| string; width?: number \| string; height?: number \| string }): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:viewPort(value: { x?: number \| string; y?: number \| string; width?: number \| string; height?: number \| string }): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:stroke(value: ResourceColor): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:stroke(value: ResourceColor): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:fill(value: ResourceColor): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:fill(value: ResourceColor): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeDashOffset(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeDashOffset(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeDashArray(value: Array\): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeDashArray(value: Array\): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeLineCap(value: LineCapStyle): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeLineCap(value: LineCapStyle): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeLineJoin(value: LineJoinStyle): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeLineJoin(value: LineJoinStyle): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeMiterLimit(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeMiterLimit(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:fillOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:fillOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeWidth(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeWidth(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:antiAlias(value: boolean): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:antiAlias(value: boolean): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:mesh(value: Array\, column: number, row: number): ShapeAttribute;
起始版本:8|类名:ShapeAttribute
方法 or 属性:mesh(value: Array\, column: number, row: number): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Shape: ShapeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Shape: ShapeInterface;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ShapeInstance: ShapeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ShapeInstance: ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SideBarContainer: SideBarContainerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const SideBarContainer: SideBarContainerInterface;
起始版本:8|sidebar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SideBarContainerInstance: SideBarContainerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SideBarContainerInstance: SideBarContainerAttribute;
起始版本:8|sidebar.d.ts| +|起始版本有变化|类名:SliderStyle
起始版本:7|类名:SliderStyle
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderStyle
方法 or 属性:OutSet
起始版本:7|类名:SliderStyle
方法 or 属性:OutSet
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderStyle
方法 or 属性:InSet
起始版本:7|类名:SliderStyle
方法 or 属性:InSet
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
起始版本:7|类名:SliderChangeMode
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Begin
起始版本:7|类名:SliderChangeMode
方法 or 属性:Begin
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Moving
起始版本:7|类名:SliderChangeMode
方法 or 属性:Moving
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:End
起始版本:7|类名:SliderChangeMode
方法 or 属性:End
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Click
起始版本:8|类名:SliderChangeMode
方法 or 属性:Click
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
起始版本:7|类名:SliderOptions
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:value?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:value?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:min?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:min?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:max?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:max?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:step?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:step?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:style?: SliderStyle;
起始版本:7|类名:SliderOptions
方法 or 属性:style?: SliderStyle;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:direction?: Axis;
起始版本:8|类名:SliderOptions
方法 or 属性:direction?: Axis;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:reverse?: boolean;
起始版本:8|类名:SliderOptions
方法 or 属性:reverse?: boolean;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderInterface
起始版本:7|类名:SliderInterface
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderInterface
方法 or 属性:(options?: SliderOptions): SliderAttribute;
起始版本:7|类名:SliderInterface
方法 or 属性:(options?: SliderOptions): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
起始版本:7|类名:SliderAttribute
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:blockColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:blockColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:trackColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:trackColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:selectedColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:selectedColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:showSteps(value: boolean): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:showSteps(value: boolean): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:showTips(value: boolean): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:showTips(value: boolean): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:trackThickness(value: Length): SliderAttribute;
起始版本:8|类名:SliderAttribute
方法 or 属性:trackThickness(value: Length): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:onChange(callback: (value: number, mode: SliderChangeMode) => void): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:onChange(callback: (value: number, mode: SliderChangeMode) => void): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Slider: SliderInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Slider: SliderInterface;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SliderInstance: SliderAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SliderInstance: SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SpanInterface
起始版本:7|类名:SpanInterface
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanInterface
方法 or 属性:(value: string \| Resource): SpanAttribute;
起始版本:7|类名:SpanInterface
方法 or 属性:(value: string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
起始版本:7|类名:SpanAttribute
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontColor(value: ResourceColor): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontColor(value: ResourceColor): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontStyle(value: FontStyle): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontStyle(value: FontStyle): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontFamily(value: string \| Resource): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontFamily(value: string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:letterSpacing(value: number \| string): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:letterSpacing(value: number \| string): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:textCase(value: TextCase): SpanAttribute;
起始版本:N/A|类名:SpanAttribute
方法 or 属性:textCase(value: TextCase): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Span: SpanInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Span: SpanInterface;
起始版本:9|span.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SpanInstance: SpanAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SpanInstance: SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:StackInterface
起始版本:7|类名:StackInterface
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackInterface
方法 or 属性:(value?: { alignContent?: Alignment }): StackAttribute;
起始版本:7|类名:StackInterface
方法 or 属性:(value?: { alignContent?: Alignment }): StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackAttribute
起始版本:7|类名:StackAttribute
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackAttribute
方法 or 属性:alignContent(value: Alignment): StackAttribute;
起始版本:7|类名:StackAttribute
方法 or 属性:alignContent(value: Alignment): StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Stack: StackInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Stack: StackInterface;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StackInstance: StackAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StackInstance: StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Stepper: StepperInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Stepper: StepperInterface;
起始版本:8|stepper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperInstance: StepperAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperInstance: StepperAttribute;
起始版本:8|stepper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperItemInstance: StepperItemAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperItemInstance: StepperItemAttribute;
起始版本:8|stepper_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperItem: StepperItemInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperItem: StepperItemInterface;
起始版本:8|stepper_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Swiper: SwiperInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Swiper: SwiperInterface;
起始版本:7|swiper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SwiperInstance: SwiperAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SwiperInstance: SwiperAttribute;
起始版本:7|swiper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Tabs: TabsInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Tabs: TabsInterface;
起始版本:7|tabs.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabsInstance: TabsAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TabsInstance: TabsAttribute;
起始版本:7|tabs.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
起始版本:7|tab_content.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
起始版本:7|tab_content.d.ts| +|起始版本有变化|类名:TextInterface
起始版本:7|类名:TextInterface
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextInterface
方法 or 属性:(content?: string \| Resource): TextAttribute;
起始版本:7|类名:TextInterface
方法 or 属性:(content?: string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
起始版本:7|类名:TextAttribute
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontColor(value: ResourceColor): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontColor(value: ResourceColor): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:minFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:minFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:maxFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:maxFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontStyle(value: FontStyle): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontStyle(value: FontStyle): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textAlign(value: TextAlign): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textAlign(value: TextAlign): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:lineHeight(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:lineHeight(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textOverflow(value: { overflow: TextOverflow }): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textOverflow(value: { overflow: TextOverflow }): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontFamily(value: string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontFamily(value: string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:maxLines(value: number): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:maxLines(value: number): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:letterSpacing(value: number \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:letterSpacing(value: number \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textCase(value: TextCase): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textCase(value: TextCase): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:baselineOffset(value: number \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:baselineOffset(value: number \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInstance: TextAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInstance: TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Text: TextInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Text: TextInterface;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextArea: TextAreaInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextArea: TextAreaInterface;
起始版本:7|text_area.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextAreaInstance: TextAreaAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextAreaInstance: TextAreaAttribute;
起始版本:7|text_area.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextClock: TextClockInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextClock: TextClockInterface;
起始版本:8|text_clock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextClockInstance: TextClockAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextClockInstance: TextClockAttribute;
起始版本:8|text_clock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInput: TextInputInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInput: TextInputInterface;
起始版本:7|text_input.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInputInstance: TextInputAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInputInstance: TextInputAttribute;
起始版本:7|text_input.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextPicker: TextPickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextPicker: TextPickerInterface;
起始版本:8|text_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextPickerInstance: TextPickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextPickerInstance: TextPickerAttribute;
起始版本:8|text_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextTimer: TextTimerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextTimer: TextTimerInterface;
起始版本:8|text_timer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextTimerInstance: TextTimerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextTimerInstance: TextTimerAttribute;
起始版本:8|text_timer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TimePicker: TimePickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TimePicker: TimePickerInterface;
起始版本:8|time_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TimePickerInstance: TimePickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TimePickerInstance: TimePickerAttribute;
起始版本:8|time_picker.d.ts| +|起始版本有变化|类名:ToggleType
起始版本:8|类名:ToggleType
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Checkbox
起始版本:8|类名:ToggleType
方法 or 属性:Checkbox
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Switch
起始版本:8|类名:ToggleType
方法 or 属性:Switch
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Button
起始版本:8|类名:ToggleType
方法 or 属性:Button
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleInterface
起始版本:8|类名:ToggleInterface
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleInterface
方法 or 属性:(options: { type: ToggleType; isOn?: boolean }): ToggleAttribute;
起始版本:8|类名:ToggleInterface
方法 or 属性:(options: { type: ToggleType; isOn?: boolean }): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
起始版本:8|类名:ToggleAttribute
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:onChange(callback: (isOn: boolean) => void): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:onChange(callback: (isOn: boolean) => void): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:selectedColor(value: ResourceColor): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:selectedColor(value: ResourceColor): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:switchPointColor(color: ResourceColor): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:switchPointColor(color: ResourceColor): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Toggle: ToggleInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Toggle: ToggleInterface;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ToggleInstance: ToggleAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ToggleInstance: ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Video: VideoInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Video: VideoInterface;
起始版本:7|video.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const VideoInstance: VideoAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const VideoInstance: VideoAttribute;
起始版本:7|video.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const WaterFlow: WaterFlowInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const WaterFlow: WaterFlowInterface;
起始版本:9|water_flow.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const WaterFlowInstance: WaterFlowAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const WaterFlowInstance: WaterFlowAttribute;
起始版本:9|water_flow.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Web: WebInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Web: WebInterface;
起始版本:8|web.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const WebInstance: WebAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const WebInstance: WebAttribute;
起始版本:8|web.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const XComponent: XComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const XComponent: XComponentInterface;
起始版本:8|xcomponent.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const XComponentInstance: XComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const XComponentInstance: XComponentAttribute;
起始版本:8|xcomponent.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:TabContentInterface
SysCap:N/A|类名:TabContentInterface
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentInterface
方法 or 属性:(): TabContentAttribute;
SysCap:N/A|类名:TabContentInterface
方法 or 属性:(): TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentAttribute
SysCap:N/A|类名:TabContentAttribute
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentAttribute
方法 or 属性:tabBar(value: string \| Resource \| CustomBuilder \|
{ icon?: string \| Resource; text?: string \| Resource }): TabContentAttribute;
SysCap:N/A|类名:TabContentAttribute
方法 or 属性:tabBar(value: string \| Resource \| CustomBuilder \|
{ icon?: string \| Resource; text?: string \| Resource }): TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
SysCap:N/A|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
SysCap:N/A|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|函数有变化|类名:
方法 or 属性: function getInspectorTree(): string;
|类名:
方法 or 属性: function getInspectorTree(): Object;
|global.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:get\(propName: string): T;
|类名:LocalStorage
方法 or 属性:get\(propName: string): T \| undefined;
|common_ts_ets_api.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:setOrCreate\(propName: string, newValue?: T): boolean;
|类名:LocalStorage
方法 or 属性:setOrCreate\(propName: string, newValue: T): boolean;
|common_ts_ets_api.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:link\(propName: string, linkUser?: T, subscribersName?: string): T;
|类名:LocalStorage
方法 or 属性:link\(propName: string): SubscribedAbstractProperty\;
|common_ts_ets_api.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:setAndLink\(propName: string, defaultValue: T, linkUser?: T, subscribersName?: string): T;
|类名:LocalStorage
方法 or 属性:setAndLink\(propName: string, defaultValue: T): SubscribedAbstractProperty\;
|common_ts_ets_api.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:prop\(propName: string, propUser?: T, subscribersName?: string): T;
|类名:LocalStorage
方法 or 属性:prop\(propName: string): SubscribedAbstractProperty\;
|common_ts_ets_api.d.ts| +|函数有变化|类名:LocalStorage
方法 or 属性:setAndProp\(propName: string, defaultValue: T, propUser?: T, subscribersName?: string): T;
|类名:LocalStorage
方法 or 属性:setAndProp\(propName: string, defaultValue: S): SubscribedAbstractProperty\;
|common_ts_ets_api.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-battery.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-battery.md new file mode 100644 index 0000000000000000000000000000000000000000..8ea014b7b3c716bcf205c3ef49f426a64d1544d0 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-battery.md @@ -0,0 +1,38 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:BatteryCapacityLevel
方法or属性:LEVEL_WARNING|@ohos.batteryInfo.d.ts| +|新增|NA|类名:BatteryCapacityLevel
方法or属性:LEVEL_SHUTDOWN|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_SOC = "soc"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_SOC = "soc"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_CHARGE_STATE = "chargeState"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_CHARGE_STATE = "chargeState"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_HEALTH_STATE = "healthState"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_HEALTH_STATE = "healthState"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_PLUGGED_TYPE = "pluggedType"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_PLUGGED_TYPE = "pluggedType"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_VOLTAGE = "voltage"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_VOLTAGE = "voltage"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_TECHNOLOGY = "technology"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_TECHNOLOGY = "technology"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_TEMPERATURE = "temperature"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_TEMPERATURE = "temperature"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_PRESENT = "present"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_PRESENT = "present"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性:EXTRA_CAPACITY_LEVEL = "capacityLevel"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:CommonEventBatteryChangedKey
方法or属性:EXTRA_CAPACITY_LEVEL = "capacityLevel"|@ohos.batteryInfo.d.ts| +|删除|模块名:ohos.batteryInfo
类名:BatteryCapacityLevel
方法 or 属性:LEVEL_NONE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_SOC = 0|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_VOLTAGE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_TEMPERATURE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_HEALTH_STATE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_PLUGGED_TYPE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_MAX_CURRENT|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_MAX_VOLTAGE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_CHARGE_STATE|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_CHARGE_COUNTER|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_PRESENT|NA|@ohos.batteryInfo.d.ts| +|删除|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedCode
方法 or 属性:EXTRA_TECHNOLOGY|NA|@ohos.batteryInfo.d.ts| +|访问级别有变化|类名:batteryInfo
方法 or 属性:const estimatedRemainingChargeTime: number;
访问级别:公开API|类名:batteryInfo
方法 or 属性:const estimatedRemainingChargeTime: number;
访问级别:系统API|@ohos.batteryInfo.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-bundle.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-bundle.md new file mode 100644 index 0000000000000000000000000000000000000000..80e6361ca7b6a55649b3dd5b05cca56d26449fa6 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-bundle.md @@ -0,0 +1,351 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:LaunchType
方法or属性:MULTITON = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:ModuleType
方法or属性:|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性:ENTRY = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:ModuleType
方法or属性:ENTRY = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性:FEATURE = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:ModuleType
方法or属性:FEATURE = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性:SHARED = 3|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:ModuleType
方法or属性:SHARED = 3|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:BundleType
方法or属性:|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType
方法 or 属性:APP = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:BundleType
方法or属性:APP = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType
方法 or 属性:ATOMIC_SERVICE = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:BundleType
方法or属性:ATOMIC_SERVICE = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|类名:BundleInstaller
方法or属性:install(hapFilePaths: Array\, callback: AsyncCallback\) : void;|@ohos.bundle.installer.d.ts| +|新增|NA|类名:BundleInstaller
方法or属性:recover(bundleName: string, callback: AsyncCallback\): void;|@ohos.bundle.installer.d.ts| +|新增|NA|类名:InstallParam
方法or属性:userId?: number;|@ohos.bundle.installer.d.ts| +|新增|NA|类名:InstallParam
方法or属性:installFlag?: number;|@ohos.bundle.installer.d.ts| +|新增|NA|类名:InstallParam
方法or属性:isKeepData?: boolean;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly bundleName: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly moduleName: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly name: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly label: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly labelId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly description: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly descriptionId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly icon: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly iconId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly process: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly exported: boolean;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly type: bundleManager.AbilityType;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly orientation: bundleManager.DisplayOrientation;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly launchType: bundleManager.LaunchType;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly permissions: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly readPermission: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly writePermission: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly uri: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly deviceTypes: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly metadata: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly enabled: boolean;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly supportWindowModes: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly windowSize: WindowSize;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowRatio: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowRatio: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowWidth: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowWidth: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowHeight: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowHeight: number;|AbilityInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly name: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly description: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly descriptionId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly enabled: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly label: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly labelId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly icon: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly iconId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly process: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly permissions: Array\;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly codePath: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly metadata: Map\>;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly removable: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly accessTokenId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly uid: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly iconResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly labelResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly descriptionResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly appDistributionType: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly appProvisionType: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly systemApp: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly bundleType: bundleManager.BundleType;|ApplicationInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly name: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly vendor: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly versionCode: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly versionName: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly minCompatibleVersionCode: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly targetVersion: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly appInfo: ApplicationInfo;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly hapModulesInfo: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly reqPermissionDetails: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly permissionGrantStates: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly signatureInfo: SignatureInfo;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly installTime: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly updateTime: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: name: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: reason: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: reasonId: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: usedScene: UsedScene;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene
方法 or 属性: abilities: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene
方法 or 属性: when: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo
方法 or 属性: readonly appId: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo
方法 or 属性: readonly fingerprint: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo
方法 or 属性: readonly packages: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo
方法 or 属性: readonly summary: PackageSummary;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly deviceTypes: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly moduleType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly deliveryWithInstall: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary
方法 or 属性: readonly app: BundleConfigInfo;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary
方法 or 属性: readonly modules: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo
方法 or 属性: readonly bundleName: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo
方法 or 属性: readonly version: Version;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility
方法 or 属性: readonly forms: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly mainAbility: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly apiVersion: ApiVersion;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly deviceTypes: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly distro: ModuleDistroInfo;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly abilities: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly extensionAbilities: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly deliveryWithInstall: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly installationFree: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly moduleName: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly moduleType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly label: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly exported: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly forms: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly type: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly updateEnabled: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly scheduledUpdateTime: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly updateDuration: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly supportDimensions: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly defaultDimension: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly minCompatibleVersionCode: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly code: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly releaseType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly compatible: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly target: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo|DispatchInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo
方法 or 属性: readonly version: string;|DispatchInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo
方法 or 属性: readonly dispatchAPIVersion: string;|DispatchInfo.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: deviceId?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: bundleName: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: moduleName?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: abilityName: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: uri?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: shortName?: string;|ElementName.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly bundleName: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly moduleName: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly name: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly labelId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly descriptionId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly iconId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly exported: boolean;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly extensionAbilityType: bundleManager.ExtensionAbilityType;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly permissions: Array\;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly metadata: Array\;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly enabled: boolean;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly readPermission: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly writePermission: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly name: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly icon: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly iconId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly label: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly labelId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly description: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly descriptionId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly mainElementName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly abilitiesInfo: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly extensionAbilitiesInfo: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly metadata: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly deviceTypes: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly installationFree: boolean;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly hashValue: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly type: bundleManager.ModuleType;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly dependencies: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly preloads: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: Dependency|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: Dependency
方法 or 属性: readonly moduleName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: PreloadItem|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: PreloadItem
方法 or 属性: readonly moduleName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly elementName : ElementName;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly labelId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly iconId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly userId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly installTime : number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: name: string;|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: value: string;|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: resource: string;|Metadata.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly permissionName: string;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly grantMode: number;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly labelId: number;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly descriptionId: number;|PermissionDef.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly elementName: ElementName;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly label: string;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly icon: string;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly id: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly bundleName: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly moduleName: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly hostAbility: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly icon: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly iconId: number;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly label: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly labelId: number;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly wants: Array\;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetBundle: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetModule: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetAbility: string;|ShortcutInfo.d.ts| +|删除|模块名:ohos.bundle.bundleManager
类名:LaunchType
方法 or 属性:STANDARD = 1|NA|@ohos.bundle.bundleManager.d.ts| +|删除|模块名:ohos.bundle.bundleManager
类名:bundleManager
方法 or 属性:function getAbilityIcon(bundleName: string, moduleName: string, abilityName: string, callback: AsyncCallback\): void;|NA|@ohos.bundle.bundleManager.d.ts| +|删除|模块名:ohos.bundle.bundleManager
类名:bundleManager
方法 or 属性:function getAbilityIcon(bundleName: string, moduleName: string, abilityName: string): Promise\;|NA|@ohos.bundle.bundleManager.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly type: bundleManager.AbilityType;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly orientation: bundleManager.DisplayOrientation;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly launchType: bundleManager.LaunchType;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly metadata: Array\;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly supportWindowModes: Array\;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: AbilityInfo
方法 or 属性:readonly windowSize: WindowSize;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly maxWindowRatio: number;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly minWindowRatio: number;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly maxWindowWidth: number;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly minWindowWidth: number;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly maxWindowHeight: number;|NA|abilityInfo.d.ts| +|删除|模块名: abilityInfo
类名: WindowSize
方法 or 属性:readonly minWindowHeight: number;|NA|abilityInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly labelId: number;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly iconId: number;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly metadata: Map\>;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly iconResource: Resource;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly labelResource: Resource;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly descriptionResource: Resource;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly appDistributionType: string;|NA|applicationInfo.d.ts| +|删除|模块名: applicationInfo
类名: ApplicationInfo
方法 or 属性:readonly appProvisionType: string;|NA|applicationInfo.d.ts| +|删除|模块名: bundleInfo
类名: BundleInfo
方法 or 属性:readonly hapModulesInfo: Array\;|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: BundleInfo
方法 or 属性:readonly permissionGrantStates: Array\;|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: BundleInfo
方法 or 属性:readonly signatureInfo: SignatureInfo;|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: ReqPermissionDetail
方法 or 属性:reasonId: number;|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: SignatureInfo|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: SignatureInfo
方法 or 属性:readonly appId: string;|NA|bundleInfo.d.ts| +|删除|模块名: bundleInfo
类名: SignatureInfo
方法 or 属性:readonly fingerprint: string;|NA|bundleInfo.d.ts| +|删除|模块名: dispatchInfo
类名: DispatchInfo|NA|dispatchInfo.d.ts| +|删除|模块名: dispatchInfo
类名: DispatchInfo
方法 or 属性:readonly version: string;|NA|dispatchInfo.d.ts| +|删除|模块名: dispatchInfo
类名: DispatchInfo
方法 or 属性:readonly dispatchAPIVersion: string;|NA|dispatchInfo.d.ts| +|删除|模块名: elementName
类名: ElementName
方法 or 属性:moduleName?: string;|NA|elementName.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly bundleName: string;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly moduleName: string;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly name: string;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly labelId: number;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly descriptionId: number;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly iconId: number;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly isVisible: boolean;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly extensionAbilityType: bundleManager.ExtensionAbilityType;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly permissions: Array\;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly applicationInfo: ApplicationInfo;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly metadata: Array\;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly enabled: boolean;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly readPermission: string;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: extensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性:readonly writePermission: string;|NA|extensionAbilityInfo.d.ts| +|删除|模块名: hapModuleInfo
类名: HapModuleInfo
方法 or 属性:readonly mainElementName: string;|NA|hapModuleInfo.d.ts| +|删除|模块名: hapModuleInfo
类名: HapModuleInfo
方法 or 属性:readonly abilitiesInfo: Array\;|NA|hapModuleInfo.d.ts| +|删除|模块名: hapModuleInfo
类名: HapModuleInfo
方法 or 属性:readonly extensionAbilitiesInfo: Array\;|NA|hapModuleInfo.d.ts| +|删除|模块名: hapModuleInfo
类名: HapModuleInfo
方法 or 属性:readonly metadata: Array\;|NA|hapModuleInfo.d.ts| +|删除|模块名: hapModuleInfo
类名: HapModuleInfo
方法 or 属性:readonly hashValue: string;|NA|hapModuleInfo.d.ts| +|删除|模块名: metadata
类名: Metadata|NA|metadata.d.ts| +|删除|模块名: metadata
类名: Metadata
方法 or 属性:name: string;|NA|metadata.d.ts| +|删除|模块名: metadata
类名: Metadata
方法 or 属性:value: string;|NA|metadata.d.ts| +|删除|模块名: metadata
类名: Metadata
方法 or 属性:resource: string;|NA|metadata.d.ts| +|删除|模块名: packInfo
类名: BundlePackInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackInfo
方法 or 属性:readonly packages: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackInfo
方法 or 属性:readonly summary: PackageSummary;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageConfig|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageConfig
方法 or 属性:readonly deviceTypes: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageConfig
方法 or 属性:readonly name: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageConfig
方法 or 属性:readonly moduleType: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageConfig
方法 or 属性:readonly deliveryWithInstall: boolean;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageSummary|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageSummary
方法 or 属性:readonly app: BundleConfigInfo;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: PackageSummary
方法 or 属性:readonly modules: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: BundleConfigInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: BundleConfigInfo
方法 or 属性:readonly bundleName: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: BundleConfigInfo
方法 or 属性:readonly version: Version;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbility|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbility
方法 or 属性:readonly name: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbility
方法 or 属性:readonly forms: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly mainAbility: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly apiVersion: ApiVersion;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly deviceTypes: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly distro: ModuleDistroInfo;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly abilities: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleConfigInfo
方法 or 属性:readonly extensionAbilities: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleDistroInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleDistroInfo
方法 or 属性:readonly deliveryWithInstall: boolean;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleDistroInfo
方法 or 属性:readonly installationFree: boolean;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleDistroInfo
方法 or 属性:readonly moduleName: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleDistroInfo
方法 or 属性:readonly moduleType: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleAbilityInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleAbilityInfo
方法 or 属性:readonly name: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleAbilityInfo
方法 or 属性:readonly label: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleAbilityInfo
方法 or 属性:readonly visible: boolean;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ModuleAbilityInfo
方法 or 属性:readonly forms: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly name: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly type: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly updateEnabled: boolean;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly scheduledUpdateTime: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly updateDuration: number;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly supportDimensions: Array\;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: AbilityFormInfo
方法 or 属性:readonly defaultDimension: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: Version|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: Version
方法 or 属性:readonly minCompatibleVersionCode: number;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: Version
方法 or 属性:readonly name: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: Version
方法 or 属性:readonly code: number;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ApiVersion|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ApiVersion
方法 or 属性:readonly releaseType: string;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ApiVersion
方法 or 属性:readonly compatible: number;|NA|packInfo.d.ts| +|删除|模块名: packInfo
类名: ApiVersion
方法 or 属性:readonly target: number;|NA|packInfo.d.ts| +|删除|模块名: permissionDef
类名: PermissionDef|NA|permissionDef.d.ts| +|删除|模块名: permissionDef
类名: PermissionDef
方法 or 属性:readonly permissionName: string;|NA|permissionDef.d.ts| +|删除|模块名: permissionDef
类名: PermissionDef
方法 or 属性:readonly grantMode: number;|NA|permissionDef.d.ts| +|删除|模块名: permissionDef
类名: PermissionDef
方法 or 属性:readonly labelId: number;|NA|permissionDef.d.ts| +|删除|模块名: permissionDef
类名: PermissionDef
方法 or 属性:readonly descriptionId: number;|NA|permissionDef.d.ts| +|删除|模块名: shortcutInfo
类名: ShortcutInfo
方法 or 属性:readonly moduleName: string;|NA|shortcutInfo.d.ts| +|删除|模块名: shortcutInfo
类名: ShortcutWant
方法 or 属性:readonly targetModule: string;|NA|shortcutInfo.d.ts| +|删除|模块名: shortcutInfo
类名: ShortcutWant
方法 or 属性:readonly targetAbility: string;|NA|shortcutInfo.d.ts| +|函数有变化|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, installParam: InstallParam, callback : AsyncCallback\) : void;
|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, installParam: InstallParam, callback : AsyncCallback\) : void;
|@ohos.bundle.installer.d.ts| +|函数有变化|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, installParam: InstallParam, callback : AsyncCallback\) : void;
|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, callback : AsyncCallback\) : void;
|@ohos.bundle.installer.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-communication.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-communication.md new file mode 100644 index 0000000000000000000000000000000000000000..05cd6614d396215fe85d02cb50ffd6cd367dc71b --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-communication.md @@ -0,0 +1,641 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getState(): BluetoothState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getBtConnectionState(): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function pairDevice(deviceId: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function cancelPairedDevice(deviceId: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getRemoteDeviceName(deviceId: string): string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getRemoteDeviceClass(deviceId: string): DeviceClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function enableBluetooth(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function disableBluetooth(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getLocalName(): string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getPairedDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getProfileConnectionState(profileId: ProfileId): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setDevicePairingConfirmation(device: string, accept: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setLocalName(name: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setBluetoothScanMode(mode: ScanMode, duration: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getBluetoothScanMode(): ScanMode;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function startBluetoothDiscovery(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function stopBluetoothDiscovery(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "bluetoothDeviceFind", callback: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "bondStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "bondStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "pinRequired", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "pinRequired", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "stateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "stateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppAccept(serverSocket: number, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppCloseServerSocket(socket: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppCloseClientSocket(socket: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppWrite(clientSocket: number, data: ArrayBuffer): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "sppRead", clientSocket: number, callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getProfileInstance(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile \| HidHostProfile \| PanProfile;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile
方法 or 属性: getConnectionDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile
方法 or 属性: getDeviceState(device: string): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: getPlayingState(device: string): PlayingState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: setTethering(enable: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: isTetheringOn(): boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function createGattServer(): GattServer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function createGattClientDevice(deviceId: string): GattClientDevice;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function getConnectedBLEDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function startBLEScan(filters: Array\, options?: ScanOptions): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function stopBLEScan(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function on(type: "BLEDeviceFind", callback: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function off(type: "BLEDeviceFind", callback?: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: stopAdvertising(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: addService(service: GattService): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: removeService(serviceUuid: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: close(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: sendResponse(serverResponse: ServerResponse): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "characteristicRead", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "characteristicRead", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "characteristicWrite", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "characteristicWrite", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "descriptorRead", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "descriptorRead", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "descriptorWrite", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "descriptorWrite", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "connectStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "connectStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: connect(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: disconnect(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: close(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getDeviceName(callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getDeviceName(): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getServices(callback: AsyncCallback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getServices(): Promise\>;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readCharacteristicValue(characteristic: BLECharacteristic): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readDescriptorValue(descriptor: BLEDescriptor): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: writeCharacteristicValue(characteristic: BLECharacteristic): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: writeDescriptorValue(descriptor: BLEDescriptor): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getRssiValue(callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getRssiValue(): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: setBLEMtuSize(mtu: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: on(type: "BLECharacteristicChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: off(type: "BLECharacteristicChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: on(type: "BLEConnectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: off(type: "BLEConnectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: isPrimary: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: characteristics: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: includeServices?: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: characteristicValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: descriptors: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: descriptorValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: characteristicValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: confirm: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: isPrep: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: needRsp: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: isPrep: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: needRsp: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: status: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState
方法 or 属性: state: ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: rssi: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: data: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: interval?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: txPower?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: connectable?: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: serviceUuids: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: manufactureData: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: serviceData: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData
方法 or 属性: manufactureId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData
方法 or 属性: manufactureValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData
方法 or 属性: serviceValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: deviceId?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: name?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceUuid?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceUuidMask?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceSolicitationUuid?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceSolicitationUuidMask?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceData?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceDataMask?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureId?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureData?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureDataMask?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: interval?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: dutyMode?: ScanDuty;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: matchMode?: MatchMode;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: uuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: secure: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: type: SppType;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam
方法 or 属性: pinCode: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: majorClass: MajorClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: majorMinorClass: MajorMinorClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: classOfDevice: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam
方法 or 属性: state: BondState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam
方法 or 属性: state: ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_LOW_POWER = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_BALANCED = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_LOW_LATENCY = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode
方法 or 属性: MATCH_MODE_AGGRESSIVE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode
方法 or 属性: MATCH_MODE_STICKY = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_DISCONNECTED = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_CONNECTING = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_CONNECTED = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_DISCONNECTING = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_OFF = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_TURNING_ON = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_ON = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_TURNING_OFF = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_TURNING_ON = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_ON = 5|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_TURNING_OFF = 6|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppType|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppType
方法 or 属性: SPP_RFCOMM|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_NONE = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_GENERAL_DISCOVERABLE = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_LIMITED_DISCOVERABLE = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE = 5|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_INVALID = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_BONDING = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_BONDED = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_MISC = 0x0000|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_COMPUTER = 0x0100|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_PHONE = 0x0200|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_NETWORKING = 0x0300|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_AUDIO_VIDEO = 0x0400|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_PERIPHERAL = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_IMAGING = 0x0600|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_WEARABLE = 0x0700|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_TOY = 0x0800|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_HEALTH = 0x0900|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_UNCATEGORIZED = 0x1F00|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_UNCATEGORIZED = 0x0100|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_DESKTOP = 0x0104|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_SERVER = 0x0108|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_LAPTOP = 0x010C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_HANDHELD_PC_PDA = 0x0110|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_PALM_SIZE_PC_PDA = 0x0114|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_WEARABLE = 0x0118|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_TABLET = 0x011C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_UNCATEGORIZED = 0x0200|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_CELLULAR = 0x0204|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_CORDLESS = 0x0208|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_SMART = 0x020C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_MODEM_OR_GATEWAY = 0x0210|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_ISDN = 0x0214|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_FULLY_AVAILABLE = 0x0300|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_1_TO_17_UTILIZED = 0x0320|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_17_TO_33_UTILIZED = 0x0340|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_33_TO_50_UTILIZED = 0x0360|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_60_TO_67_UTILIZED = 0x0380|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_67_TO_83_UTILIZED = 0x03A0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_83_TO_99_UTILIZED = 0x03C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_NO_SERVICE = 0x03E0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_UNCATEGORIZED = 0x0400|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_WEARABLE_HEADSET = 0x0404|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HANDSFREE = 0x0408|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_MICROPHONE = 0x0410|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_LOUDSPEAKER = 0x0414|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HEADPHONES = 0x0418|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_PORTABLE_AUDIO = 0x041C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_CAR_AUDIO = 0x0420|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_SET_TOP_BOX = 0x0424|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HIFI_AUDIO = 0x0428|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VCR = 0x042C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_CAMERA = 0x0430|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_CAMCORDER = 0x0434|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_MONITOR = 0x0438|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER = 0x043C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_CONFERENCING = 0x0440|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_GAMING_TOY = 0x0448|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_NON_KEYBOARD_NON_POINTING = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_KEYBOARD = 0x0540|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_POINTING_DEVICE = 0x0580|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_KEYBOARD_POINTING = 0x05C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_UNCATEGORIZED = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_JOYSTICK = 0x0504|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_GAMEPAD = 0x0508|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_REMOTE_CONTROL = 0x05C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_SENSING_DEVICE = 0x0510|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_DIGITIZER_TABLET = 0x0514|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_CARD_READER = 0x0518|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_DIGITAL_PEN = 0x051C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_SCANNER_RFID = 0x0520|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_GESTURAL_INPUT = 0x0522|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_UNCATEGORIZED = 0x0600|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_DISPLAY = 0x0610|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_CAMERA = 0x0620|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_SCANNER = 0x0640|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_PRINTER = 0x0680|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_UNCATEGORIZED = 0x0700|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_WRIST_WATCH = 0x0704|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_PAGER = 0x0708|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_JACKET = 0x070C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_HELMET = 0x0710|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_GLASSES = 0x0714|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_UNCATEGORIZED = 0x0800|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_ROBOT = 0x0804|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_VEHICLE = 0x0808|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_DOLL_ACTION_FIGURE = 0x080C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_CONTROLLER = 0x0810|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_GAME = 0x0814|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_UNCATEGORIZED = 0x0900|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_BLOOD_PRESSURE = 0x0904|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_THERMOMETER = 0x0908|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_WEIGHING = 0x090C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_GLUCOSE = 0x0910|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PULSE_OXIMETER = 0x0914|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PULSE_RATE = 0x0918|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_DATA_DISPLAY = 0x091C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_STEP_COUNTER = 0x0920|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_BODY_COMPOSITION_ANALYZER = 0x0924|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PEAK_FLOW_MONITOR = 0x0928|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_MEDICATION_MONITOR = 0x092C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_KNEE_PROSTHESIS = 0x0930|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_ANKLE_PROSTHESIS = 0x0934|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_GENERIC_HEALTH_MANAGER = 0x0938|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PERSONAL_MOBILITY_DEVICE = 0x093C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState
方法 or 属性: STATE_NOT_PLAYING|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState
方法 or 属性: STATE_PLAYING|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_A2DP_SOURCE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_HID_HOST = 6|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_PAN_NETWORK = 7|@ohos.bluetoothManager.d.ts| +|新增|NA|类名:connection
方法or属性:function getAppNet(callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function getAppNet(): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function setAppNet(netHandle: NetHandle, callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function setAppNet(netHandle: NetHandle): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:password?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性:certEntry: Uint8Array;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiEapConfig
方法or属性:certEntry: Uint8Array;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性:certPassword: string;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiEapConfig
方法or属性:certPassword: string;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:bssid?: string;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:isHiddenSsid?: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:creatorUid?: number;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:disableReason?: number;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:netId?: number;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:randomMacType?: number;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:randomMacAddr?: string;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:ipType?: IpType;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:staticIp?: IpConfig;|@ohos.wifiManager.d.ts| +|新增|NA|类名:WifiDeviceConfig
方法or属性:eapConfig?: WifiEapConfig;|@ohos.wifiManager.d.ts| +|删除|模块名:ohos.bluetooth
类名:bluetooth
方法 or 属性:function getProfileInst(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile \| HidHostProfile \| PanProfile;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: HidHostProfile|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: HidHostProfile
方法 or 属性:connect(device: string): boolean;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: HidHostProfile
方法 or 属性:disconnect(device: string): boolean;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: HidHostProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: HidHostProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile
方法 or 属性:disconnect(device: string): boolean;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile
方法 or 属性:setTethering(enable: boolean): void;|NA|@ohos.bluetooth.d.ts| +|删除|模块名: ohos.bluetooth
类名: PanProfile
方法 or 属性:isTetheringOn(): boolean;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:serviceUuidMask?: string;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:serviceSolicitationUuid?: string;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:serviceSolicitationUuidMask?: string;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:serviceData?: ArrayBuffer;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:serviceDataMask?: ArrayBuffer;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:manufactureId?: number;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:manufactureData?: ArrayBuffer;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ScanFilter
方法 or 属性:manufactureDataMask?: ArrayBuffer;|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ProfileId
方法 or 属性:PROFILE_HID_HOST = 6|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.bluetooth
类名:ProfileId
方法 or 属性:PROFILE_PAN_NETWORK = 7|NA|@ohos.bluetooth.d.ts| +|删除|模块名:ohos.net.socket
类名:TLSSecureOptions
方法 or 属性:passwd?: string;|NA|@ohos.net.socket.d.ts| +|废弃版本有变化|类名:bluetooth
废弃版本:N/A|类名:bluetooth
废弃版本:9
代替接口:ohos.bluetoothManager |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getState(): BluetoothState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getState(): BluetoothState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getBtConnectionState(): ProfileConnectionState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getBtConnectionState(): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getBtConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function pairDevice(deviceId: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function pairDevice(deviceId: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.pairDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function cancelPairedDevice(deviceId: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function cancelPairedDevice(deviceId: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.cancelPairedDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getRemoteDeviceName(deviceId: string): string;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getRemoteDeviceName(deviceId: string): string;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getRemoteDeviceName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getRemoteDeviceClass(deviceId: string): DeviceClass;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getRemoteDeviceClass(deviceId: string): DeviceClass;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getRemoteDeviceClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function enableBluetooth(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function enableBluetooth(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.enableBluetooth |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function disableBluetooth(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function disableBluetooth(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.disableBluetooth |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getLocalName(): string;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getLocalName(): string;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getLocalName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getPairedDevices(): Array\;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getPairedDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getPairedDevices |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getProfileConnState(profileId: ProfileId): ProfileConnectionState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getProfileConnState(profileId: ProfileId): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getProfileConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setDevicePairingConfirmation(device: string, accept: boolean): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setDevicePairingConfirmation(device: string, accept: boolean): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setDevicePairingConfirmation |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setLocalName(name: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setLocalName(name: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setLocalName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setBluetoothScanMode(mode: ScanMode, duration: number): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setBluetoothScanMode(mode: ScanMode, duration: number): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setBluetoothScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getBluetoothScanMode(): ScanMode;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getBluetoothScanMode(): ScanMode;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getBluetoothScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.startBluetoothDiscovery |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function stopBluetoothDiscovery(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function stopBluetoothDiscovery(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.stopBluetoothDiscovery |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "bluetoothDeviceFind", callback: Callback\>): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "bluetoothDeviceFind", callback: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "bondStateChange", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "bondStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "bondStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "bondStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "pinRequired", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "pinRequired", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "pinRequired", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "pinRequired", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "stateChange", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "stateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "stateChange", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "stateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppListen |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppAccept(serverSocket: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppAccept(serverSocket: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppAccept |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppConnect |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppCloseServerSocket(socket: number): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppCloseServerSocket(socket: number): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppCloseServerSocket |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppCloseClientSocket(socket: number): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppCloseClientSocket(socket: number): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppCloseClientSocket |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppWrite(clientSocket: number, data: ArrayBuffer): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppWrite(clientSocket: number, data: ArrayBuffer): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppWrite |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "sppRead", clientSocket: number, callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "sppRead", clientSocket: number, callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getProfile(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getProfile(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getProfileInstance |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
废弃版本:N/A|类名:BaseProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
方法 or 属性:getConnectionDevices(): Array\;
废弃版本:N/A|类名:BaseProfile
方法 or 属性:getConnectionDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
方法 or 属性:getDeviceState(device: string): ProfileConnectionState;
废弃版本:N/A|类名:BaseProfile
方法 or 属性:getDeviceState(device: string): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
废弃版本:N/A|类名:A2dpSourceProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function createGattServer(): GattServer;
废弃版本:N/A|类名:BLE
方法 or 属性:function createGattServer(): GattServer;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.createGattServer |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function createGattClientDevice(deviceId: string): GattClientDevice;
废弃版本:N/A|类名:BLE
方法 or 属性:function createGattClientDevice(deviceId: string): GattClientDevice;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.createGattClientDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function getConnectedBLEDevices(): Array\;
废弃版本:N/A|类名:BLE
方法 or 属性:function getConnectedBLEDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.getConnectedBLEDevices |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.startBLEScan |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function stopBLEScan(): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function stopBLEScan(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.stopBLEScan |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function on(type: "BLEDeviceFind", callback: Callback\>): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function on(type: "BLEDeviceFind", callback: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function off(type: "BLEDeviceFind", callback?: Callback\>): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function off(type: "BLEDeviceFind", callback?: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
废弃版本:N/A|类名:GattServer
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:stopAdvertising(): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:stopAdvertising(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:addService(service: GattService): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:addService(service: GattService): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:removeService(serviceUuid: string): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:removeService(serviceUuid: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:close(): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:sendResponse(serverResponse: ServerResponse): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:sendResponse(serverResponse: ServerResponse): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "characteristicRead", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "characteristicRead", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "characteristicRead", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "characteristicRead", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "characteristicWrite", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "characteristicWrite", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "characteristicWrite", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "characteristicWrite", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "descriptorRead", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "descriptorRead", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "descriptorRead", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "descriptorRead", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "descriptorWrite", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "descriptorWrite", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "descriptorWrite", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "descriptorWrite", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "connectStateChange", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "connectStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "connectStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "connectStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
废弃版本:N/A|类名:GattClientDevice
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:connect(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:connect(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:disconnect(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:disconnect(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:close(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:close(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getDeviceName(callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getDeviceName(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getDeviceName(): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getDeviceName(): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getServices(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getServices(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getServices(): Promise\>;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getServices(): Promise\>;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:writeCharacteristicValue(characteristic: BLECharacteristic): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:writeCharacteristicValue(characteristic: BLECharacteristic): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:writeDescriptorValue(descriptor: BLEDescriptor): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:writeDescriptorValue(descriptor: BLEDescriptor): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getRssiValue(callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getRssiValue(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getRssiValue(): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getRssiValue(): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:setBLEMtuSize(mtu: number): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:setBLEMtuSize(mtu: number): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:on(type: "BLECharacteristicChange", callback: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:on(type: "BLECharacteristicChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:off(type: "BLECharacteristicChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:off(type: "BLECharacteristicChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:on(type: "BLEConnectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:on(type: "BLEConnectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:off(type: "BLEConnectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:off(type: "BLEConnectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattService
废弃版本:N/A|类名:GattService
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattService |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLECharacteristic
废弃版本:N/A|类名:BLECharacteristic
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLECharacteristic |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLEDescriptor
废弃版本:N/A|类名:BLEDescriptor
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLEDescriptor |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:NotifyCharacteristic
废弃版本:N/A|类名:NotifyCharacteristic
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.NotifyCharacteristic |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:CharacteristicReadReq
废弃版本:N/A|类名:CharacteristicReadReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.CharacteristicReadRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:CharacteristicWriteReq
废弃版本:N/A|类名:CharacteristicWriteReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.CharacteristicWriteRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DescriptorReadReq
废弃版本:N/A|类名:DescriptorReadReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DescriptorReadRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DescriptorWriteReq
废弃版本:N/A|类名:DescriptorWriteReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DescriptorWriteRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ServerResponse
废弃版本:N/A|类名:ServerResponse
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ServerResponse |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLEConnectChangedState
废弃版本:N/A|类名:BLEConnectChangedState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLEConnectChangedState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanResult
废弃版本:N/A|类名:ScanResult
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanResult |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:AdvertiseSetting
废弃版本:N/A|类名:AdvertiseSetting
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.AdvertiseSetting |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:AdvertiseData
废弃版本:N/A|类名:AdvertiseData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.AdvertiseData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ManufactureData
废弃版本:N/A|类名:ManufactureData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ManufactureData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ServiceData
废弃版本:N/A|类名:ServiceData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ServiceData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanFilter
废弃版本:N/A|类名:ScanFilter
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanFilter |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanOptions
废弃版本:N/A|类名:ScanOptions
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanOptions |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:SppOption
废弃版本:N/A|类名:SppOption
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.SppOption |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:PinRequiredParam
废弃版本:N/A|类名:PinRequiredParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.PinRequiredParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DeviceClass
废弃版本:N/A|类名:DeviceClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DeviceClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BondStateParam
废弃版本:N/A|类名:BondStateParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BondStateParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanDuty
废弃版本:N/A|类名:ScanDuty
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanDuty |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MatchMode
废弃版本:N/A|类名:MatchMode
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MatchMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ProfileConnectionState
废弃版本:N/A|类名:ProfileConnectionState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ProfileConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BluetoothState
废弃版本:N/A|类名:BluetoothState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BluetoothState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:SppType
废弃版本:N/A|类名:SppType
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.SppType |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanMode
废弃版本:N/A|类名:ScanMode
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BondState
废弃版本:N/A|类名:BondState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BondState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MajorClass
废弃版本:N/A|类名:MajorClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MajorClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MajorMinorClass
废弃版本:N/A|类名:MajorMinorClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MajorMinorClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:StateChangeParam
废弃版本:N/A|类名:StateChangeParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.StateChangeParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:PlayingState
废弃版本:N/A|类名:PlayingState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.PlayingState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ProfileId
废弃版本:N/A|类名:ProfileId
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ProfileId |@ohos.bluetooth.d.ts| +|权限有变化|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
权限:ohos.permission.GET_NETWORK_INFO|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getDefaultNet(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getDefaultNet(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAllNets(callback: AsyncCallback\>): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAllNets(): Promise\>;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getConnectionProperties(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getConnectionProperties(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getNetCapabilities(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getNetCapabilities(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function hasDefaultNet(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function hasDefaultNet(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetConnected(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetConnected(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetDisconnected(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetDisconnected(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetConnection
方法 or 属性:register(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003, 2101008, 2101022|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetConnection
方法 or 属性:unregister(callback: AsyncCallback\): void;
错误码内容: 2100002, 2100003, 2101007|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:bindSocket(socketParam: TCPSocket \| UDPSocket, callback: AsyncCallback\): void;
错误码内容: 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:bindSocket(socketParam: TCPSocket \| UDPSocket): Promise\;
错误码内容: 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function getIfaceConfig(iface: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201005|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function getIfaceConfig(iface: string): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201005|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function setIfaceConfig(iface: string, ic: InterfaceConfiguration, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201004, 2201005, 2201006, 2201007|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function setIfaceConfig(iface: string, ic: InterfaceConfiguration): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201004, 2201005, 2201006, 2201007|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function isIfaceActive(iface: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201005|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function isIfaceActive(iface: string): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2201005|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function getAllActiveIfaces(callback: AsyncCallback\>): void;
错误码内容: 201, 2200002, 2200003|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:ethernet
方法 or 属性:function getAllActiveIfaces(): Promise\>;
错误码内容: 201, 2200002, 2200003|@ohos.net.ethernet.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, callback: AsyncCallback\): void;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, options: HttpRequestOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, options?: HttpRequestOptions): Promise\;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function isSharingSupported(callback: AsyncCallback\): void;
错误码内容: 201, 2200002, 2200003, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function isSharingSupported(): Promise\;
错误码内容: 201, 2200002, 2200003, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function isSharing(callback: AsyncCallback\): void;
错误码内容: 201, 2200002, 2200003, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function isSharing(): Promise\;
错误码内容: 201, 2200002, 2200003, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function startSharing(type: SharingIfaceType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2202004, 2202005, 2202006, 2202009, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function startSharing(type: SharingIfaceType): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2202004, 2202005, 2202006, 2202009, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function stopSharing(type: SharingIfaceType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2202004, 2202005, 2202006, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function stopSharing(type: SharingIfaceType): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003, 2202004, 2202005, 2202006, 2202011|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsRxBytes(callback: AsyncCallback\): void;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsRxBytes(): Promise\;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsTxBytes(callback: AsyncCallback\): void;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsTxBytes(): Promise\;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsTotalBytes(callback: AsyncCallback\): void;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getStatsTotalBytes(): Promise\;
错误码内容: 201, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharingIfaces(state: SharingIfaceState, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharingIfaces(state: SharingIfaceState): Promise\>;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharingState(type: SharingIfaceType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharingState(type: SharingIfaceType): Promise\;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharableRegexes(type: SharingIfaceType, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function getSharableRegexes(type: SharingIfaceType): Promise\>;
错误码内容: 201, 401, 2200001, 2200002, 2200003|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function on(type: 'sharingStateChange', callback: Callback\): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function off(type: 'sharingStateChange', callback?: Callback\): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function on(type: 'interfaceSharingStateChange', callback: Callback\<{ type: SharingIfaceType, iface: string, state: SharingIfaceState }>): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function off(type: 'interfaceSharingStateChange', callback?: Callback\<{ type: SharingIfaceType, iface: string, state: SharingIfaceState }>): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function on(type: 'sharingUpstreamChange', callback: Callback\): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:sharing
方法 or 属性:function off(type: 'sharingUpstreamChange', callback?: Callback\): void;
错误码内容: 201, 401|@ohos.net.sharing.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:bind(address: NetAddress, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:bind(address: NetAddress): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:send(options: UDPSendOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:send(options: UDPSendOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:close(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:getState(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:getState(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:setExtraOptions(options: UDPExtraOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:setExtraOptions(options: UDPExtraOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:bind(address: NetAddress, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:bind(address: NetAddress): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:connect(options: TCPConnectOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:connect(options: TCPConnectOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:send(options: TCPSendOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:send(options: TCPSendOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:close(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getRemoteAddress(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getRemoteAddress(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getState(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getState(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, options: WebSocketRequestOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, options?: WebSocketRequestOptions): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:send(data: string \| ArrayBuffer, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:send(data: string \| ArrayBuffer): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(options: WebSocketCloseOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(options?: WebSocketCloseOptions): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
权限:N/A|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
权限:N/A|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
权限:N/A|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
权限:N/A|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|函数有变化|类名:RemoteProxy
方法 or 属性:unregisterDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
|类名:RemoteProxy
方法 or 属性:unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void;
|@ohos.rpc.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-compiler-and-runtime.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-compiler-and-runtime.md new file mode 100644 index 0000000000000000000000000000000000000000..cc204e2d9a8d902aec842fe5e7074e77e155818d --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-compiler-and-runtime.md @@ -0,0 +1,7 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:util
方法or属性:function generateRandomUUID(entropyCache?: boolean): string;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function generateRandomBinaryUUID(entropyCache?: boolean): Uint8Array;|@ohos.util.d.ts| +|删除|模块名:ohos.util
类名:util
方法 or 属性:function randomUUID(entropyCache?: boolean): string;|NA|@ohos.util.d.ts| +|删除|模块名:ohos.util
类名:util
方法 or 属性:function randomBinaryUUID(entropyCache?: boolean): Uint8Array;|NA|@ohos.util.d.ts| +|函数有变化|类名:LRUCache
方法 or 属性:contains(key: object): boolean;
|类名:LRUCache
方法 or 属性:contains(key: K): boolean;
|@ohos.util.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-dfx.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-dfx.md new file mode 100644 index 0000000000000000000000000000000000000000..129a0e0594cabec6c01fca13c3a518b5a184cc00 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-dfx.md @@ -0,0 +1,26 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:event
方法or属性:|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性:const USER_LOGIN: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:event
方法or属性:const USER_LOGIN: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性:const USER_LOGOUT: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:event
方法or属性:const USER_LOGOUT: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性:const DISTRIBUTED_SERVICE_START: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:event
方法or属性:const DISTRIBUTED_SERVICE_START: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:param
方法or属性:|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性:const USER_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:param
方法or属性:const USER_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性:const DISTRIBUTED_SERVICE_NAME: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:param
方法or属性:const DISTRIBUTED_SERVICE_NAME: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性:const DISTRIBUTED_SERVICE_INSTANCE_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|类名:param
方法or属性:const DISTRIBUTED_SERVICE_INSTANCE_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Event|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法 or 属性:const USER_LOGIN: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法 or 属性:const USER_LOGOUT: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法 or 属性:const DISTRIBUTED_SERVICE_START: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Param|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法 or 属性:const USER_ID: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法 or 属性:const DISTRIBUTED_SERVICE_NAME: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法 or 属性:const DISTRIBUTED_SERVICE_INSTANCE_ID: string;|NA|@ohos.hiviewdfx.hiAppEvent.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-distributed-data.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-distributed-data.md new file mode 100644 index 0000000000000000000000000000000000000000..7fec4a15c3a55b150170e2aa65d3280a7fa209fe --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-distributed-data.md @@ -0,0 +1,162 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(sessionId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(sessionId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(sessionId?: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(sessionId?: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:on(type: 'status',

callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:on(type: 'status',

callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:off(type: 'status',

callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:off(type: 'status',

callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:save(deviceId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:save(deviceId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:save(deviceId: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:save(deviceId: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:revokeSave(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:revokeSave(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:revokeSave(): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:revokeSave(): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_KEY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_VALUE_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_KEY_LENGTH_DEVICE: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_STORE_ID_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_QUERY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|类名:Constants
方法or属性:readonly MAX_BATCH_SIZE: number;|@ohos.data.distributedKVStore.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:setSessionId(sessionId: string, callback: AsyncCallback\): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:setSessionId(callback: AsyncCallback\): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:setSessionId(sessionId?: string): Promise\;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:on(type: 'status',

callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:off(type: 'status',

callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:save(deviceId: string, callback: AsyncCallback\): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:save(deviceId: string): Promise\;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:revokeSave(callback: AsyncCallback\): void;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法 or 属性:revokeSave(): Promise\;|NA|@ohos.data.distributedDataObject.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_KEY_LENGTH = 1024;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_VALUE_LENGTH = 4194303;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_KEY_LENGTH_DEVICE = 896;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_STORE_ID_LENGTH = 128;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_QUERY_LENGTH = 512000;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.distributedKVStore
类名:Constants
方法 or 属性:const MAX_BATCH_SIZE = 128;|NA|@ohos.data.distributedKVStore.d.ts| +|删除|模块名:ohos.data.rdb
类名:rdb
方法 or 属性:function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:rdb
方法 or 属性:function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:rdb
方法 or 属性:function deleteRdbStoreV9(context: Context, name: string, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:rdb
方法 or 属性:function deleteRdbStoreV9(context: Context, name: string): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: SecurityLevel|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: SecurityLevel
方法 or 属性:S1 = 1|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: SecurityLevel
方法 or 属性:S2 = 2|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: SecurityLevel
方法 or 属性:S3 = 3|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: SecurityLevel
方法 or 属性:S4 = 4|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:insert(table: string, values: ValuesBucket, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:insert(table: string, values: ValuesBucket): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:batchInsert(table: string, values: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:batchInsert(table: string, values: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:update(values: ValuesBucket, predicates: RdbPredicatesV9, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:update(values: ValuesBucket, predicates: RdbPredicatesV9): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:delete(predicates: RdbPredicatesV9, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:delete(predicates: RdbPredicatesV9): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:delete(table: string, predicates: dataSharePredicates.DataSharePredicates): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:query(predicates: RdbPredicatesV9, columns: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:query(predicates: RdbPredicatesV9, columns ?: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns ?: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:querySql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:querySql(sql: string, bindArgs ?: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:executeSql(sql: string, bindArgs ?: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:beginTransaction(): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:commit(): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:rollBack(): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:backup(destName: string, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:backup(destName: string): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:restore(srcName: string, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:restore(srcName: string): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:setDistributedTables(tables: Array\, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:setDistributedTables(tables: Array\): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:obtainDistributedTableName(device: string, table: string): Promise\;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:sync(mode: SyncMode, predicates: RdbPredicatesV9, callback: AsyncCallback\>): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:sync(mode: SyncMode, predicates: RdbPredicatesV9): Promise\>;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbStoreV9
方法 or 属性:off(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: StoreConfigV9|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: StoreConfigV9
方法 or 属性:name: string;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: StoreConfigV9
方法 or 属性:securityLevel: SecurityLevel;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: StoreConfigV9
方法 or 属性:encrypt ?: boolean;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:constructor(name: string)|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:inDevices(devices: Array\): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:inAllDevices(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:equalTo(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:notEqualTo(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:beginWrap(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:endWrap(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:or(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:and(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:contains(field: string, value: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:beginsWith(field: string, value: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:endsWith(field: string, value: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:isNull(field: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:isNotNull(field: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:like(field: string, value: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:glob(field: string, value: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:between(field: string, low: ValueType, high: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:notBetween(field: string, low: ValueType, high: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:greaterThan(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:lessThan(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:lessThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:orderByAsc(field: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:orderByDesc(field: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:distinct(): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:limitAs(value: number): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:offsetAs(rowOffset: number): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:groupBy(fields: Array\): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:indexedBy(field: string): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:in(field: string, value: Array\): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法 or 属性:notIn(field: string, value: Array\): RdbPredicatesV9;|NA|@ohos.data.rdb.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:columnNames: Array\;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:columnCount: number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:rowCount: number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:rowIndex: number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isAtFirstRow: boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isAtLastRow: boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isEnded: boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isStarted: boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isClosed: boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getColumnIndex(columnName: string): number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getColumnName(columnIndex: number): string;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goTo(offset: number): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goToRow(position: number): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goToFirstRow(): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goToLastRow(): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goToNextRow(): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:goToPreviousRow(): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getBlob(columnIndex: number): Uint8Array;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getString(columnIndex: number): string;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getLong(columnIndex: number): number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:getDouble(columnIndex: number): number;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:isColumnNull(columnIndex: number): boolean;|NA|resultSet.d.ts| +|删除|模块名: resultSet
类名: ResultSetV9
方法 or 属性:close(): void;|NA|resultSet.d.ts| +|废弃版本有变化|类名:rdb
废弃版本:N/A|类名:rdb
废弃版本:9
代替接口:ohos.data.relationalStore |@ohos.data.rdb.d.ts| +|新增(权限)|类名:SubscribeType
权限:N/A|类名:SubscribeType
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|新增(权限)|类名:SubscribeType
权限:N/A|类名:SubscribeType
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.relationalStore.d.ts| +|函数有变化|类名:distributedDataObject
方法 or 属性:function create(context: Context, source: object): DistributedObjectV9;
|类名:distributedDataObject
方法 or 属性:function create(context: Context, source: object): DataObject;
|@ohos.data.distributedDataObject.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-file-management.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-file-management.md new file mode 100644 index 0000000000000000000000000000000000000000..5a3dcf0f48f88d531c5953284fe283065b5c2e63 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-file-management.md @@ -0,0 +1,225 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, options?: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, options: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFileSync(path: string, options?: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}): string[];|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, mode?: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, mode: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFileSync(src: string, dest: string, mode?: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(exclusive?: boolean): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(exclusive: boolean, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: tryLock(exclusive?: boolean): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: unlock(): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash|@ohos.file.hash.d.ts| +|新增|NA|类名:hash
方法or属性:|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash
方法 or 属性:function hash(path: string, algorithm: string): Promise\;|@ohos.file.hash.d.ts| +|新增|NA|类名:hash
方法or属性:function hash(path: string, algorithm: string): Promise\;|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash
方法 or 属性:function hash(path: string, algorithm: string, callback: AsyncCallback\): void;|@ohos.file.hash.d.ts| +|新增|NA|类名:hash
方法or属性:function hash(path: string, algorithm: string, callback: AsyncCallback\): void;|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: picker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: IMAGE_TYPE = "image/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: VIDEO_TYPE = "video/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: IMAGE_VIDEO_TYPE = "*/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions
方法 or 属性: MIMEType?: PhotoViewMIMETypes;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions
方法 or 属性: maxSelectNumber?: number;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult
方法 or 属性: photoUris: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult
方法 or 属性: isOriginalPhoto: boolean;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(option?: PhotoSelectOptions) : Promise\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(option: PhotoSelectOptions, callback: AsyncCallback\) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(callback: AsyncCallback\) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(option?: PhotoSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(option: PhotoSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(option?: DocumentSelectOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(option: DocumentSelectOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(option?: DocumentSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(option: DocumentSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(option?: AudioSelectOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(option: AudioSelectOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(option?: AudioSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(option: AudioSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|类名:DataLevel
方法or属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|类名:DataLevel
方法or属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|类名:DataLevel
方法or属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|类名:DataLevel
方法or属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|类名:DataLevel
方法or属性:type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs|@ohos.file.statvfs.d.ts| +|新增|NA|类名:statfs
方法or属性:|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性:function getFreeSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|类名:statfs
方法or属性:function getFreeSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性:function getFreeSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|类名:statfs
方法or属性:function getFreeSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性:function getTotalSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|类名:statfs
方法or属性:function getTotalSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性:function getTotalSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|类名:statfs
方法or属性:function getTotalSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSizeOfVolume(volumeUuid: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSizeOfVolume(volumeUuid: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: appSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: cacheSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: dataSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getBundleStats(packageName: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getBundleStats(packageName: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getCurrentBundleStats(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getCurrentBundleStats(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getSystemSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getSystemSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: total: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: audio: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: video: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: image: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: file: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: app: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(userId: number): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(userId: number, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: id: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: uuid: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: diskId: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: description: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: removable: boolean;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: state: number;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: path: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getAllVolumes(callback: AsyncCallback\>): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getAllVolumes(): Promise\>;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function mount(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function mount(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function unmount(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function unmount(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeByUuid(uuid: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeByUuid(uuid: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeById(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeById(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function setVolumeDescription(uuid: string, description: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function setVolumeDescription(uuid: string, description: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function format(volumeId: string, fsType: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function format(volumeId: string, fsType: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function partition(diskId: string, type: number, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function partition(diskId: string, type: number): Promise\;|@ohos.file.volumeManager.d.ts| +|删除|模块名: ohos.file.hash
类名: Hash|NA|@ohos.file.hash.d.ts| +|删除|模块名: ohos.file.hash
类名: Hash
方法 or 属性:function hash(path: string, algorithm: string): Promise\;|NA|@ohos.file.hash.d.ts| +|删除|模块名: ohos.file.hash
类名: Hash
方法 or 属性:function hash(path: string, algorithm: string, callback: AsyncCallback\): void;|NA|@ohos.file.hash.d.ts| +|删除|模块名: ohos.file.securityLabel
类名: dataLevel
方法 or 属性:type dataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|NA|@ohos.file.securityLabel.d.ts| +|删除|模块名: ohos.file.securityLabel
类名: dataLevel
方法 or 属性:type dataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|NA|@ohos.file.securityLabel.d.ts| +|删除|模块名: ohos.file.securityLabel
类名: dataLevel
方法 or 属性:type dataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|NA|@ohos.file.securityLabel.d.ts| +|删除|模块名: ohos.file.securityLabel
类名: dataLevel
方法 or 属性:type dataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|NA|@ohos.file.securityLabel.d.ts| +|删除|模块名: ohos.file.securityLabel
类名: dataLevel
方法 or 属性:type dataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|NA|@ohos.file.securityLabel.d.ts| +|删除|模块名: ohos.file.statvfs
类名: Statfs|NA|@ohos.file.statvfs.d.ts| +|删除|模块名: ohos.file.statvfs
类名: Statfs
方法 or 属性:function getFreeSize(path: string): Promise\;|NA|@ohos.file.statvfs.d.ts| +|删除|模块名: ohos.file.statvfs
类名: Statfs
方法 or 属性:function getFreeSize(path: string, callback: AsyncCallback\): void;|NA|@ohos.file.statvfs.d.ts| +|删除|模块名: ohos.file.statvfs
类名: Statfs
方法 or 属性:function getTotalSize(path: string): Promise\;|NA|@ohos.file.statvfs.d.ts| +|删除|模块名: ohos.file.statvfs
类名: Statfs
方法 or 属性:function getTotalSize(path: string, callback: AsyncCallback\): void;|NA|@ohos.file.statvfs.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSizeOfVolume(volumeUuid: string): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSizeOfVolume(volumeUuid: string): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: BundleStats|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: BundleStats
方法 or 属性:appSize: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: BundleStats
方法 or 属性:cacheSize: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: BundleStats
方法 or 属性:dataSize: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getBundleStats(packageName: string, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getBundleStats(packageName: string): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getCurrentBundleStats(callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getCurrentBundleStats(): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getSystemSize(callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getSystemSize(): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:total: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:audio: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:video: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:image: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:file: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: StorageStats
方法 or 属性:app: number;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getUserStorageStats(userId?: number): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getUserStorageStats(callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getUserStorageStats(userId: number, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSize(callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSize(): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSize(callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSize(): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:id: string;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:uuid: string;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:diskId: string;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:description: string;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:removable: boolean;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:state: number;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: Volume
方法 or 属性:path: string;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getAllVolumes(callback: AsyncCallback\>): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getAllVolumes(): Promise\>;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function mount(volumeId: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function mount(volumeId: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function unmount(volumeId: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function unmount(volumeId: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getVolumeByUuid(uuid: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getVolumeByUuid(uuid: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getVolumeById(volumeId: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function getVolumeById(volumeId: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function setVolumeDescription(uuid: string, description: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function setVolumeDescription(uuid: string, description: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function format(volumeId: string, fsType: string, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function format(volumeId: string, fsType: string): Promise\;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function partition(diskId: string, type: number, callback: AsyncCallback\): void;|NA|@ohos.volumeManager.d.ts| +|删除|模块名: ohos.volumeManager
类名: volumeManager
方法 or 属性:function partition(diskId: string, type: number): Promise\;|NA|@ohos.volumeManager.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendir(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendir(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendir(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendir(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:read(): Promise\;
废弃版本:N/A|类名:Dir
方法 or 属性:read(): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:read(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Dir
方法 or 属性:read(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:readSync(): Dirent;
废弃版本:N/A|类名:Dir
方法 or 属性:readSync(): Dirent;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:close(): Promise\;
废弃版本:N/A|类名:Dir
方法 or 属性:close(): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:close(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Dir
方法 or 属性:close(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:closeSync(): void;
废弃版本:N/A|类名:Dir
方法 or 属性:closeSync(): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
废弃版本:N/A|类名:Dirent
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:readonly name: string;
废弃版本:N/A|类名:Dirent
方法 or 属性:readonly name: string;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isBlockDevice(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isBlockDevice(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isCharacterDevice(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isCharacterDevice(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isDirectory(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isDirectory(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isFIFO(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isFIFO(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isFile(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isFile(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isSocket(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isSocket(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isSymbolicLink(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isSymbolicLink(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|起始版本有变化|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
起始版本:N/A|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
起始版本:6|@ohos.fileio.d.ts| +|函数有变化|类名:securityLabel
方法 or 属性:function setSecurityLabel(path: string, type: dataLevel): Promise\;
|类名:securityLabel
方法 or 属性:function setSecurityLabel(path: string, type: DataLevel): Promise\;
|@ohos.file.securityLabel.d.ts| +|函数有变化|类名:securityLabel
方法 or 属性:function setSecurityLabel(path: string, type: dataLevel, callback: AsyncCallback\): void;
|类名:securityLabel
方法 or 属性:function setSecurityLabel(path: string, type: DataLevel, callback: AsyncCallback\): void;
|@ohos.file.securityLabel.d.ts| +|函数有变化|类名:securityLabel
方法 or 属性:function setSecurityLabelSync(path: string, type: dataLevel): void;
|类名:securityLabel
方法 or 属性:function setSecurityLabelSync(path: string, type: DataLevel): void;
|@ohos.file.securityLabel.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-misc.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-misc.md new file mode 100644 index 0000000000000000000000000000000000000000..f800f29ef555e468856cb6dcae704821a78de79e --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-misc.md @@ -0,0 +1,73 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:ShareOption
方法or属性:INAPP|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:LOCALDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:CROSSDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteDataRecord
方法or属性:toPlainText(): string;|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:ShareOption
方法 or 属性:InApp|NA|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:ShareOption
方法 or 属性:LocalDevice|NA|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:ShareOption
方法 or 属性:CrossDevice|NA|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:PasteDataRecord
方法 or 属性:convertToTextV9(callback: AsyncCallback\): void;|NA|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:PasteDataRecord
方法 or 属性:convertToTextV9(): Promise\;|NA|@ohos.pasteboard.d.ts| +|删除|模块名:ohos.request
类名:request
方法 or 属性:function download(context: BaseContext, config: DownloadConfig, callback: AsyncCallback\): void;|NA|@ohos.request.d.ts| +|删除|模块名:ohos.request
类名:request
方法 or 属性:function download(context: BaseContext, config: DownloadConfig): Promise\;|NA|@ohos.request.d.ts| +|删除|模块名:ohos.request
类名:request
方法 or 属性:function upload(context: BaseContext, config: UploadConfig, callback: AsyncCallback\): void;|NA|@ohos.request.d.ts| +|删除|模块名:ohos.request
类名:request
方法 or 属性:function upload(context: BaseContext, config: UploadConfig): Promise\;|NA|@ohos.request.d.ts| +|删除|模块名:ohos.screenLock
类名:screenLock
方法 or 属性:function isSecure(): boolean;|NA|@ohos.screenLock.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function getIdSync(wallpaperType: WallpaperType): number;|NA|@ohos.wallpaper.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function getFileSync(wallpaperType: WallpaperType): number;|NA|@ohos.wallpaper.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function isChangeAllowed(): boolean;|NA|@ohos.wallpaper.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function isUserChangeAllowed(): boolean;|NA|@ohos.wallpaper.d.ts| +|model有变化|类名:InputMethodExtensionAbility
model:N/A|类名:InputMethodExtensionAbility
model:@StageModelOnly|@ohos.InputMethodExtensionAbility.d.ts| +|model有变化|类名:InputMethodExtensionAbility
方法 or 属性:context: InputMethodExtensionContext;
model:N/A|类名:InputMethodExtensionAbility
方法 or 属性:context: InputMethodExtensionContext;
model:@StageModelOnly|@ohos.InputMethodExtensionAbility.d.ts| +|model有变化|类名:InputMethodExtensionAbility
方法 or 属性:onCreate(want: Want): void;
model:N/A|类名:InputMethodExtensionAbility
方法 or 属性:onCreate(want: Want): void;
model:@StageModelOnly|@ohos.InputMethodExtensionAbility.d.ts| +|model有变化|类名:InputMethodExtensionAbility
方法 or 属性:onDestroy(): void;
model:N/A|类名:InputMethodExtensionAbility
方法 or 属性:onDestroy(): void;
model:@StageModelOnly|@ohos.InputMethodExtensionAbility.d.ts| +|model有变化|类名:InputMethodExtensionContext
model:N/A|类名:InputMethodExtensionContext
model:@StageModelOnly|@ohos.InputMethodExtensionContext.d.ts| +|model有变化|类名:InputMethodExtensionContext
方法 or 属性:destroy(callback: AsyncCallback\): void;
model:N/A|类名:InputMethodExtensionContext
方法 or 属性:destroy(callback: AsyncCallback\): void;
model:@StageModelOnly|@ohos.InputMethodExtensionContext.d.ts| +|model有变化|类名:InputMethodExtensionContext
方法 or 属性:destroy(): Promise\;
model:N/A|类名:InputMethodExtensionContext
方法 or 属性:destroy(): Promise\;
model:@StageModelOnly|@ohos.InputMethodExtensionContext.d.ts| +|访问级别有变化|类名:screenLock
方法 or 属性:function isLocked(): boolean;
访问级别:公开API|类名:screenLock
方法 or 属性:function isLocked(): boolean;
访问级别:系统API|@ohos.screenLock.d.ts| +|访问级别有变化|类名:screenLock
方法 or 属性:function unlock(callback: AsyncCallback\): void;
访问级别:公开API|类名:screenLock
方法 or 属性:function unlock(callback: AsyncCallback\): void;
访问级别:系统API|@ohos.screenLock.d.ts| +|访问级别有变化|类名:screenLock
方法 or 属性:function unlock():Promise\;
访问级别:公开API|类名:screenLock
方法 or 属性:function unlock():Promise\;
访问级别:系统API|@ohos.screenLock.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function getColorsSync(wallpaperType: WallpaperType): Array\;
访问级别:公开API|类名:wallpaper
方法 or 属性:function getColorsSync(wallpaperType: WallpaperType): Array\;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function getMinHeightSync(): number;
访问级别:公开API|类名:wallpaper
方法 or 属性:function getMinHeightSync(): number;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function getMinWidthSync(): number;
访问级别:公开API|类名:wallpaper
方法 or 属性:function getMinWidthSync(): number;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function restore(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
访问级别:公开API|类名:wallpaper
方法 or 属性:function restore(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function restore(wallpaperType: WallpaperType): Promise\;
访问级别:公开API|类名:wallpaper
方法 or 属性:function restore(wallpaperType: WallpaperType): Promise\;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
访问级别:公开API|类名:wallpaper
方法 or 属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.wallpaper.d.ts| +|访问级别有变化|类名:wallpaper
方法 or 属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
访问级别:公开API|类名:wallpaper
方法 or 属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
访问级别:系统API|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:RgbaColor
废弃版本:N/A|类名:RgbaColor
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:RgbaColor
起始版本:N/A|类名:RgbaColor
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:WallpaperType
起始版本:N/A|类名:WallpaperType
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:9|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:9|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
起始版本:3|@system.request.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
起始版本:3|@system.request.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
起始版本:3|@system.request.d.ts| +|删除(权限)|类名:InputMethodSetting
方法 or 属性:showOptionalInputMethods(callback: AsyncCallback\): void;
权限:ohos.permission.CONNECT_IME_ABILITY|类名:InputMethodSetting
方法 or 属性:showOptionalInputMethods(callback: AsyncCallback\): void;
权限:N/A|@ohos.inputMethod.d.ts| +|删除(权限)|类名:InputMethodSetting
方法 or 属性:showOptionalInputMethods(): Promise\;
权限:ohos.permission.CONNECT_IME_ABILITY|类名:InputMethodSetting
方法 or 属性:showOptionalInputMethods(): Promise\;
权限:N/A|@ohos.inputMethod.d.ts| +|新增(错误码)|NA|类名:screenLock
方法 or 属性:function isLocked(): boolean;
错误码内容: 202|@ohos.screenLock.d.ts| +|新增(错误码)|NA|类名:wallpaper
方法 or 属性:function getMinHeightSync(): number;
错误码内容: 202|@ohos.wallpaper.d.ts| +|新增(错误码)|NA|类名:wallpaper
方法 or 属性:function getMinWidthSync(): number;
错误码内容: 202|@ohos.wallpaper.d.ts| +|新增(权限)|类名:request
方法 or 属性:function uploadFile(context: BaseContext, config: UploadConfig, callback: AsyncCallback\): void;
权限:N/A|类名:request
方法 or 属性:function uploadFile(context: BaseContext, config: UploadConfig, callback: AsyncCallback\): void;
权限:ohos.permission.INTERNET|@ohos.request.d.ts| +|SysCap有变化|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
SysCap:N/A|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
SysCap:SystemCapability.MiscServices.Wallpaper|@ohos.wallpaper.d.ts| +|SysCap有变化|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
SysCap:N/A|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
SysCap:SystemCapability.MiscServices.Wallpaper|@ohos.wallpaper.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-multimedia.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-multimedia.md new file mode 100644 index 0000000000000000000000000000000000000000..03c224360c9de1a457596b69569adcaa8ee8c689 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-multimedia.md @@ -0,0 +1,245 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|访问级别有变化|类名:VolumeEvent
访问级别:系统API|类名:VolumeEvent
访问级别:公开API|@ohos.multimedia.audio.d.ts| +|访问级别有变化|类名:VolumeEvent
方法 or 属性:volumeGroupId: number;
访问级别:公开API|类名:VolumeEvent
方法 or 属性:volumeGroupId: number;
访问级别:系统API|@ohos.multimedia.audio.d.ts| +|访问级别有变化|类名:VolumeEvent
方法 or 属性:networkId: string;
访问级别:公开API|类名:VolumeEvent
方法 or 属性:networkId: string;
访问级别:系统API|@ohos.multimedia.audio.d.ts| +|访问级别有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:公开API|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:公开API|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:公开API|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:avSession
方法 or 属性:function off(type: 'sessionServiceDie', callback?: () => void): void;
访问级别:公开API|类名:avSession
方法 or 属性:function off(type: 'sessionServiceDie', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'seek', callback?: (time: number) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'seek', callback?: (time: number) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'setSpeed', callback?: (speed: number) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'setSpeed', callback?: (speed: number) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSession
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
访问级别:公开API|类名:AVSession
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'metadataChange', callback?: (data: AVMetadata) => void);
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'metadataChange', callback?: (data: AVMetadata) => void);
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'sessionDestroy', callback?: () => void);
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'sessionDestroy', callback?: () => void);
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'activeStateChange', callback?: (isActive: boolean) => void);
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'activeStateChange', callback?: (isActive: boolean) => void);
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'validCommandChange', callback?: (commands: Array\) => void);
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'validCommandChange', callback?: (commands: Array\) => void);
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|访问级别有变化|类名:AVSessionController
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
访问级别:公开API|类名:AVSessionController
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
访问级别:系统API|@ohos.multimedia.avsession.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
废弃版本:9|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
废弃版本:N/A
代替接口:ohos.multimedia.audio.AudioVolumeManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:mediaLibrary
废弃版本:N/A|类名:mediaLibrary
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(): MediaLibrary;
废弃版本:N/A|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(): MediaLibrary;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(context: Context): MediaLibrary;
废弃版本:N/A|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(context: Context): MediaLibrary;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
废弃版本:N/A|类名:MediaType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:FILE = 0
废弃版本:N/A|类名:MediaType
方法 or 属性:FILE = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:IMAGE
废弃版本:N/A|类名:MediaType
方法 or 属性:IMAGE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:VIDEO
废弃版本:N/A|类名:MediaType
方法 or 属性:VIDEO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:AUDIO
废弃版本:N/A|类名:MediaType
方法 or 属性:AUDIO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
废弃版本:N/A|类名:FileAsset
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly id: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly id: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly uri: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly uri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly mimeType: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly mimeType: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly mediaType: MediaType;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly mediaType: MediaType;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:displayName: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:displayName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:title: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:title: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:relativePath: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:relativePath: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly parent: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly parent: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly size: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly size: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateAdded: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateAdded: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateModified: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateModified: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateTaken: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateTaken: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly artist: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly artist: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly audioAlbum: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly audioAlbum: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly width: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly width: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly height: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly height: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:orientation: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:orientation: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly duration: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly duration: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumId: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumId: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumUri: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumName: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isDirectory(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isDirectory(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isDirectory():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isDirectory():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:commitModify(): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:commitModify(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:open(mode: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:open(mode: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:open(mode: string): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:open(mode: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:close(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:close(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:close(fd: number): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:close(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(size: Size, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(size: Size, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(size?: Size): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(size?: Size): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isFavorite(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isFavorite(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isFavorite():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isFavorite():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:trash(isTrash: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:trash(isTrash: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:trash(isTrash: boolean): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:trash(isTrash: boolean): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isTrash(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isTrash(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isTrash():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isTrash():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
废弃版本:N/A|类名:FileKey
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ID = "file_id"
废弃版本:N/A|类名:FileKey
方法 or 属性:ID = "file_id"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:RELATIVE_PATH = "relative_path"
废弃版本:N/A|类名:FileKey
方法 or 属性:RELATIVE_PATH = "relative_path"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DISPLAY_NAME = "display_name"
废弃版本:N/A|类名:FileKey
方法 or 属性:DISPLAY_NAME = "display_name"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:PARENT = "parent"
废弃版本:N/A|类名:FileKey
方法 or 属性:PARENT = "parent"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:MIME_TYPE = "mime_type"
废弃版本:N/A|类名:FileKey
方法 or 属性:MIME_TYPE = "mime_type"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:MEDIA_TYPE = "media_type"
废弃版本:N/A|类名:FileKey
方法 or 属性:MEDIA_TYPE = "media_type"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:SIZE = "size"
废弃版本:N/A|类名:FileKey
方法 or 属性:SIZE = "size"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_ADDED = "date_added"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_ADDED = "date_added"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_MODIFIED = "date_modified"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_MODIFIED = "date_modified"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_TAKEN = "date_taken"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_TAKEN = "date_taken"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:TITLE = "title"
废弃版本:N/A|类名:FileKey
方法 or 属性:TITLE = "title"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ARTIST = "artist"
废弃版本:N/A|类名:FileKey
方法 or 属性:ARTIST = "artist"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:AUDIOALBUM = "audio_album"
废弃版本:N/A|类名:FileKey
方法 or 属性:AUDIOALBUM = "audio_album"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DURATION = "duration"
废弃版本:N/A|类名:FileKey
方法 or 属性:DURATION = "duration"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:WIDTH = "width"
废弃版本:N/A|类名:FileKey
方法 or 属性:WIDTH = "width"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:HEIGHT = "height"
废弃版本:N/A|类名:FileKey
方法 or 属性:HEIGHT = "height"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ORIENTATION = "orientation"
废弃版本:N/A|类名:FileKey
方法 or 属性:ORIENTATION = "orientation"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ALBUM_ID = "bucket_id"
废弃版本:N/A|类名:FileKey
方法 or 属性:ALBUM_ID = "bucket_id"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ALBUM_NAME = "bucket_display_name"
废弃版本:N/A|类名:FileKey
方法 or 属性:ALBUM_NAME = "bucket_display_name"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
废弃版本:N/A|类名:MediaFetchOptions
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:selections: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:selections: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:selectionArgs: Array\;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:selectionArgs: Array\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:order?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:order?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:uri?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:uri?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:networkId?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:networkId?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:extendArgs?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:extendArgs?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
废弃版本:N/A|类名:FetchFileResult
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getCount(): number;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getCount(): number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:isAfterLast(): boolean;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:isAfterLast(): boolean;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:close(): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getFirstObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getFirstObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getFirstObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getFirstObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getNextObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getNextObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getNextObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getNextObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getLastObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getLastObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getLastObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getLastObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getAllObject(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getAllObject(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getAllObject(): Promise\>;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getAllObject(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
废弃版本:N/A|类名:Album
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly albumId: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly albumId: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:albumName: string;
废弃版本:N/A|类名:Album
方法 or 属性:albumName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly albumUri: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly albumUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly dateModified: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly dateModified: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly count: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly count: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly relativePath: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly relativePath: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly coverUri: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly coverUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:commitModify(): Promise\;
废弃版本:N/A|类名:Album
方法 or 属性:commitModify(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(options?: MediaFetchOptions): Promise\;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(options?: MediaFetchOptions): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
废弃版本:N/A|类名:DirectoryType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_CAMERA = 0
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_CAMERA = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_VIDEO
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_VIDEO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_IMAGE
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_IMAGE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_AUDIO
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_AUDIO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_DOCUMENTS
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_DOCUMENTS
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_DOWNLOAD
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_DOWNLOAD
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
废弃版本:N/A|类名:MediaLibrary
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getActivePeers(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getActivePeers(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getActivePeers(): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getActivePeers(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAllPeers(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAllPeers(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAllPeers(): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAllPeers(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:release(): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:release(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
废弃版本:N/A|类名:Size
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
方法 or 属性:width: number;
废弃版本:N/A|类名:Size
方法 or 属性:width: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
方法 or 属性:height: number;
废弃版本:N/A|类名:Size
方法 or 属性:height: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
废弃版本:N/A|类名:PeerInfo
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly deviceName: string;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly deviceName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly networkId: string;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly networkId: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly deviceType: DeviceType;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly deviceType: DeviceType;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly isOnline: boolean;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly isOnline: boolean;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
废弃版本:N/A|类名:DeviceType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_UNKNOWN = 0
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_UNKNOWN = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_LAPTOP
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_LAPTOP
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_PHONE
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_PHONE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_TABLET
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_TABLET
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_WATCH
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_WATCH
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_CAR
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_CAR
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_TV
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_TV
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|起始版本有变化|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
起始版本:8|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
起始版本:8|类名:VolumeEvent
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:volumeType: AudioVolumeType;
起始版本:8|类名:VolumeEvent
方法 or 属性:volumeType: AudioVolumeType;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:volume: number;
起始版本:8|类名:VolumeEvent
方法 or 属性:volume: number;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:updateUi: boolean;
起始版本:8|类名:VolumeEvent
方法 or 属性:updateUi: boolean;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:avSession
方法 or 属性:function off(type: 'sessionServiceDie', callback?: () => void): void;
起始版本:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionServiceDie', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'seek', callback?: (time: number) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'seek', callback?: (time: number) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'setSpeed', callback?: (speed: number) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'setSpeed', callback?: (speed: number) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSession
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
起始版本:N/A|类名:AVSession
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'metadataChange', callback?: (data: AVMetadata) => void);
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'metadataChange', callback?: (data: AVMetadata) => void);
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'sessionDestroy', callback?: () => void);
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'sessionDestroy', callback?: () => void);
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'activeStateChange', callback?: (isActive: boolean) => void);
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'activeStateChange', callback?: (isActive: boolean) => void);
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'validCommandChange', callback?: (commands: Array\) => void);
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'validCommandChange', callback?: (commands: Array\) => void);
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVSessionController
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
起始版本:N/A|类名:AVSessionController
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
起始版本:9|@ohos.multimedia.avsession.d.ts| +|起始版本有变化|类名:AVFileDescriptor
起始版本:N/A|类名:AVFileDescriptor
起始版本:9|@ohos.multimedia.media.d.ts| +|新增(错误码)|NA|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
错误码内容: 201, 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
错误码内容: 201, 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
错误码内容: 201, 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:avSession
方法 or 属性:function off(type: 'sessionServiceDie', callback?: () => void): void;
错误码内容: 201, 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'seek', callback?: (time: number) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'setSpeed', callback?: (speed: number) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSession
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'metadataChange', callback?: (data: AVMetadata) => void);
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'sessionDestroy', callback?: () => void);
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'activeStateChange', callback?: (isActive: boolean) => void);
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'validCommandChange', callback?: (commands: Array\) => void);
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(错误码)|NA|类名:AVSessionController
方法 or 属性:off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;
错误码内容: 401|@ohos.multimedia.avsession.d.ts| +|新增(权限)|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:ohos.permission.MANAGE_MEDIA_RESOURCES|@ohos.multimedia.avsession.d.ts| +|新增(权限)|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:ohos.permission.MANAGE_MEDIA_RESOURCES|@ohos.multimedia.avsession.d.ts| +|新增(权限)|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:N/A|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
权限:ohos.permission.MANAGE_MEDIA_RESOURCES|@ohos.multimedia.avsession.d.ts| +|SysCap有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Core|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Manager|@ohos.multimedia.avsession.d.ts| +|SysCap有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Core|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Manager|@ohos.multimedia.avsession.d.ts| +|SysCap有变化|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Core|类名:avSession
方法 or 属性:function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;
SysCap:SystemCapability.Multimedia.AVSession.Manager|@ohos.multimedia.avsession.d.ts| +|SysCap有变化|类名:AVFileDescriptor
SysCap:N/A|类名:AVFileDescriptor
SysCap:SystemCapability.Multimedia.Media.Core|@ohos.multimedia.media.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-notification.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-notification.md new file mode 100644 index 0000000000000000000000000000000000000000..2113ba0e3f8da744fe948766e98cc4683f6e3599 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-notification.md @@ -0,0 +1,26 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:notificationManager
方法or属性:function isSupportDoNotDisturbMode(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|类名:notificationManager
方法or属性:function isSupportDoNotDisturbMode(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption|NotificationCommonDef.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption
方法 or 属性: bundle: string;|NotificationCommonDef.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption
方法 or 属性: uid?: number;|NotificationCommonDef.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_PACKAGE_CACHE_CLEARED = "usual.event.PACKAGE_CACHE_CLEARED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_USB_STATE = "usual.event.hardware.usb.action.USB_STATE"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_USB_PORT_CHANGED = "usual.event.hardware.usb.action.USB_PORT_CHANGED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_VOLUME_REMOVED = "usual.event.data.VOLUME_REMOVED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_VOLUME_UNMOUNTED = "usual.event.data.VOLUME_UNMOUNTED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_VOLUME_MOUNTED = "usual.event.data.VOLUME_MOUNTED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_VOLUME_BAD_REMOVAL = "usual.event.data.VOLUME_BAD_REMOVAL"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_VOLUME_EJECT = "usual.event.data.VOLUME_EJECT"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_SLOT_CHANGE = "usual.event.SLOT_CHANGE"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_SPN_INFO_CHANGED = "usual.event.SPN_INFO_CHANGED"|NA|@ohos.commonEvent.d.ts| +|删除|模块名: ohos.commonEvent
类名: Support
方法 or 属性:COMMON_EVENT_QUICK_FIX_APPLY_RESULT = "usual.event.QUICK_FIX_APPLY_RESULT"|NA|@ohos.commonEvent.d.ts| +|删除|模块名:ohos.notificationManager
类名:notificationManager
方法 or 属性:function supportDoNotDisturbMode(callback: AsyncCallback\): void;|NA|@ohos.notificationManager.d.ts| +|删除|模块名:ohos.notificationManager
类名:notificationManager
方法 or 属性:function supportDoNotDisturbMode(): Promise\;|NA|@ohos.notificationManager.d.ts| +|删除|模块名: ohos.notificationManager
类名: BundleOption|NA|@ohos.notificationManager.d.ts| +|删除|模块名: ohos.notificationManager
类名: BundleOption
方法 or 属性:bundle: string;|NA|@ohos.notificationManager.d.ts| +|删除|模块名: ohos.notificationManager
类名: BundleOption
方法 or 属性:uid?: number;|NA|@ohos.notificationManager.d.ts| +|删除|模块名: ohos.notificationSubscribe
类名: BundleOption|NA|@ohos.notificationSubscribe.d.ts| +|删除|模块名: ohos.notificationSubscribe
类名: BundleOption
方法 or 属性:bundle: string;|NA|@ohos.notificationSubscribe.d.ts| +|删除|模块名: ohos.notificationSubscribe
类名: BundleOption
方法 or 属性:uid?: number;|NA|@ohos.notificationSubscribe.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-resource-scheduler.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-resource-scheduler.md new file mode 100644 index 0000000000000000000000000000000000000000..c9d767e5a42781c21e19c913e884bb4078cca129 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-resource-scheduler.md @@ -0,0 +1,14 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:WorkInfo
方法or属性:parameters?: {[key: string]: number \| string \| boolean};|@ohos.resourceschedule.workScheduler.d.ts| +|访问级别有变化|类名:BundleEvents
访问级别:公开API|类名:BundleEvents
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string): Promise\;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string): Promise\;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function queryAppGroup(callback: AsyncCallback\): void;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function queryAppGroup(callback: AsyncCallback\): void;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function queryAppGroup(): Promise\;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function queryAppGroup(): Promise\;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function queryCurrentBundleEvents(begin: number, end: number, callback: AsyncCallback\>): void;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function queryCurrentBundleEvents(begin: number, end: number, callback: AsyncCallback\>): void;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|访问级别有变化|类名:usageStatistics
方法 or 属性:function queryCurrentBundleEvents(begin: number, end: number): Promise\>;
访问级别:公开API|类名:usageStatistics
方法 or 属性:function queryCurrentBundleEvents(begin: number, end: number): Promise\>;
访问级别:系统API|@ohos.resourceschedule.usageStatistics.d.ts| +|新增(权限)|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
权限:N/A|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
权限:ohos.permission.BUNDLE_ACTIVE_INFO|@ohos.resourceschedule.usageStatistics.d.ts| +|新增(权限)|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string): Promise\;
权限:N/A|类名:usageStatistics
方法 or 属性:function isIdleState(bundleName: string): Promise\;
权限:ohos.permission.BUNDLE_ACTIVE_INFO|@ohos.resourceschedule.usageStatistics.d.ts| +|SysCap有变化|类名:backgroundTaskManager
SysCap:SystemCapability.ResourceSchedule.BackgroundTaskManager.TransientTask|类名:backgroundTaskManager
SysCap:N/A|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|SysCap有变化|类名:workScheduler
SysCap:SystemCapability.ResourceSchedule.WorkScheduler|类名:workScheduler
SysCap:N/A|@ohos.resourceschedule.workScheduler.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-security.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-security.md new file mode 100644 index 0000000000000000000000000000000000000000..f81eb4f72870bb481aa551f003c7829e8bc881a3 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-security.md @@ -0,0 +1,25 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:privacyManager
方法or属性:function getPermissionUsedRecord(request: PermissionUsedRequest): Promise\;|@ohos.privacyManager.d.ts| +|新增|NA|类名:privacyManager
方法or属性:function getPermissionUsedRecord(request: PermissionUsedRequest, callback: AsyncCallback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|类名:ParamsSpec
方法or属性:algName : string;|@ohos.security.cryptoFramework.d.ts| +|删除|模块名:ohos.privacyManager
类名:privacyManager
方法 or 属性:function getPermissionUsedRecords(request: PermissionUsedRequest): Promise\;|NA|@ohos.privacyManager.d.ts| +|删除|模块名:ohos.privacyManager
类名:privacyManager
方法 or 属性:function getPermissionUsedRecords(request: PermissionUsedRequest, callback: AsyncCallback\): void;|NA|@ohos.privacyManager.d.ts| +|删除|模块名:ohos.security.cryptoFramework
类名:ParamsSpec
方法 or 属性:algoName : string;|NA|@ohos.security.cryptoFramework.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_GET_USERIAM_SECINFO_FAILED = -40|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_GET_USERIAM_AUTHINFO_FAILED = -41|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_USER_AUTH_TYPE_NOT_SUPPORT = -42|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_KEY_AUTH_FAILED = -43|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_DEVICE_NO_CREDENTIAL = -44|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_INVALID_WRAPPED_FORMAT = -126|NA|@ohos.security.huks.d.ts| +|删除|模块名: ohos.security.huks
类名: HuksErrorCode
方法 or 属性:HUKS_ERROR_INVALID_USAGE_OF_KEY = -127|NA|@ohos.security.huks.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:requestPermissionsFromUser(context: Context, permissions: Array\, requestCallback: AsyncCallback\) : void;
|类名:AtManager
方法 or 属性:requestPermissionsFromUser(context: Context, permissionList: Array\, requestCallback: AsyncCallback\) : void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:requestPermissionsFromUser(context: Context, permissions: Array\) : Promise\;
|类名:AtManager
方法 or 属性:requestPermissionsFromUser(context: Context, permissionList: Array\) : Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise\;
|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback\): void;
|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number, callback: AsyncCallback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise\;
|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback\): void;
|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number, callback: AsyncCallback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:on(type: 'permissionStateChange', tokenIDList: Array\, permissionNameList: Array\, callback: Callback\): void;
|类名:AtManager
方法 or 属性:on(type: 'permissionStateChange', tokenIDList: Array\, permissionList: Array\, callback: Callback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:off(type: 'permissionStateChange', tokenIDList: Array\, permissionNameList: Array\, callback?: Callback\): void;
|类名:AtManager
方法 or 属性:off(type: 'permissionStateChange', tokenIDList: Array\, permissionList: Array\, callback?: Callback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:privacyManager
方法 or 属性:function on(type: 'activeStateChange', permissionNameList: Array\, callback: Callback\): void;
|类名:privacyManager
方法 or 属性:function on(type: 'activeStateChange', permissionList: Array\, callback: Callback\): void;
|@ohos.privacyManager.d.ts| +|函数有变化|类名:privacyManager
方法 or 属性:function off(type: 'activeStateChange', permissionNameList: Array\, callback?: Callback\): void;
|类名:privacyManager
方法 or 属性:function off(type: 'activeStateChange', permissionList: Array\, callback?: Callback\): void;
|@ohos.privacyManager.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-sensor.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-sensor.md new file mode 100644 index 0000000000000000000000000000000000000000..ece2068c3f84dcdb587aca229ef6b392202e3002 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-sensor.md @@ -0,0 +1,4 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:Sensor
方法or属性:vendorName:string;|@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:Sensor
方法 or 属性:venderName:string;|NA|@ohos.sensor.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-start-up.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-start-up.md new file mode 100644 index 0000000000000000000000000000000000000000..ee4a88c29cfef9a0806cfd6b8f842a9519877bdc --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-start-up.md @@ -0,0 +1,20 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function getSync(key: string, def?: string): string;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, def: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, def?: string): Promise\;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function setSync(key: string, value: string): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function set(key: string, value: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function set(key: string, value: string): Promise\;|@ohos.systemParameterEnhance.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function getSync(key: string, def?: string): string;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function get(key: string, callback: AsyncCallback\): void;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function get(key: string, def: string, callback: AsyncCallback\): void;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function get(key: string, def?: string): Promise\;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function setSync(key: string, value: string): void;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function set(key: string, value: string, callback: AsyncCallback\): void;|NA|@ohos.systemParameterV9.d.ts| +|删除|模块名: ohos.systemParameterV9
类名: systemParameterV9
方法 or 属性:function set(key: string, value: string): Promise\;|NA|@ohos.systemParameterV9.d.ts| +|废弃版本有变化|类名:deviceInfo
方法 or 属性:const hardwareProfile: string;
废弃版本:N/A|类名:deviceInfo
方法 or 属性:const hardwareProfile: string;
废弃版本:9
代替接口:N/A|@ohos.deviceInfo.d.ts| +|废弃版本有变化|类名:Device
方法 or 属性:static getInfo(options?: GetDeviceOptions): void;
废弃版本:N/A|类名:Device
方法 or 属性:static getInfo(options?: GetDeviceOptions): void;
废弃版本:6
代替接口:N/A|@system.device.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-telephony.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-telephony.md new file mode 100644 index 0000000000000000000000000000000000000000..aea5aec7bb3feb94bda24e4757261aeb793ffdf8 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-telephony.md @@ -0,0 +1,315 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, options: DialCallOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, options?: DialCallOptions): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callId?: number): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callId?: number): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId: number, options: RejectMessageOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId?: number, options?: RejectMessageOptions): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(options: RejectMessageOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:accountId?: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:accountId?: number;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:videoState?: VideoStateType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:videoState?: VideoStateType;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:dialScene?: DialScene;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:dialScene?: DialScene;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:dialType?: DialType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:dialType?: DialType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:radio
方法or属性:function isNRSupported(): boolean;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function isNRSupported(slotId: number): boolean;|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: SignalInformation
方法 or 属性:dBm: number;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:SignalInformation
方法or属性:dBm: number;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_IMS_CALL_DISCONNECT_REASON_INFO_MAPPING_STRING_ARRAY = "ims_call_disconnect_reason_info_mapping_string_array"|@ohos.telephony.sim.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function answer(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function answer(callId?: number): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function answer(callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function hangup(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function hangup(callId?: number): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function hangup(callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId: number, options: RejectMessageOptions, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId?: number, options?: RejectMessageOptions): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(options: RejectMessageOptions, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.sim
类名:OperatorConfigKey
方法 or 属性:KEY_IMS_CALL_DISCONNECT_REASONINFO_MAPPING_STRING_ARRAY = "ims_call_disconnect_reasoninfo_mapping_string_array"|NA|@ohos.telephony.sim.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, options?: DialOptions): Promise\;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, options?: DialOptions): Promise\;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:radio
方法 or 属性:function isNrSupported(): boolean;
废弃版本:N/A|类名:radio
方法 or 属性:function isNrSupported(): boolean;
废弃版本:9
代替接口:telephony.radio|@ohos.telephony.radio.d.ts| +|废弃版本有变化|类名:radio
方法 or 属性:function isNrSupported(slotId: number): boolean;
废弃版本:N/A|类名:radio
方法 or 属性:function isNrSupported(slotId: number): boolean;
废弃版本:9
代替接口:telephony.radio|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function muteRinger(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function muteRinger(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, options: EmergencyNumberOptions, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, options?: EmergencyNumberOptions): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, options: NumberFormatOptions, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, options?: NumberFormatOptions): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumberToE164(phoneNumber: string, countryCode: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumberToE164(phoneNumber: string, countryCode: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function holdCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function holdCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function unHoldCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function unHoldCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function switchCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function switchCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function combineConference(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function combineConference(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getMainCallId(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getMainCallId(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getSubCallIdList(callId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getSubCallIdList(callId: number): Promise\>;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallIdListForConference(callId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallIdListForConference(callId: number): Promise\>;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function startDTMF(callId: number, character: string, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function startDTMF(callId: number, character: string): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function stopDTMF(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function stopDTMF(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isInEmergencyCall(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isInEmergencyCall(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callDetailsChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callDetailsChange', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callEventChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callEventChange', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callDisconnectedCause', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callDisconnectedCause', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isNewCallAllowed(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isNewCallAllowed(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function separateConference(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function separateConference(callId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isRinging(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isRinging(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setMuted(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setMuted(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function cancelMuted(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function cancelMuted(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, options: AudioDeviceOptions, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, options?: AudioDeviceOptions): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function joinConference(mainCallId: number, callNumberList: Array\, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function joinConference(mainCallId: number, callNumberList: Array\): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function updateImsCallMode(callId: number, mode: ImsCallMode, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function updateImsCallMode(callId: number, mode: ImsCallMode): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function enableImsSwitch(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function enableImsSwitch(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function disableImsSwitch(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function disableImsSwitch(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isImsSwitchEnabled(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isImsSwitchEnabled(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function setDefaultCellularDataSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function setDefaultCellularDataSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataEnabled(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataEnabled(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularData(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularData(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularData(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularData(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataRoamingEnabled(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataRoamingEnabled(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularDataRoaming(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularDataRoaming(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularDataRoaming(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularDataRoaming(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'networkStateChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'networkStateChange', options: { slotId: number }, callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'networkStateChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'signalInfoChange', callback: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'signalInfoChange', options: { slotId: number },
callback: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'signalInfoChange', callback?: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', callback: Callback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', options: { slotId: number },
callback: Callback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellInfoChange', callback?: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataConnectionStateChange',
callback: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataConnectionStateChange', options: { slotId: number },
callback: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellularDataConnectionStateChange',
callback?: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataFlowChange', callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataFlowChange', options: { slotId: number },
callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellularDataFlowChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'callStateChange', callback: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'callStateChange', options: { slotId: number },
callback: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'callStateChange', callback?: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'simStateChange', callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'simStateChange', options: { slotId: number }, callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'simStateChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getRadioTech(slotId: number,
callback: AsyncCallback\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getRadioTech(slotId: number): Promise\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(slotId?: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSelectionMode(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSelectionMode(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setNetworkSelectionMode(options: NetworkSelectionModeOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setNetworkSelectionMode(options: NetworkSelectionModeOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSearchInformation(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSearchInformation(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getISOCountryCodeForNetwork(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getISOCountryCodeForNetwork(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(slotId?: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPrimarySlotId(callback: AsyncCallback\): void;
错误码内容: 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPrimarySlotId(): Promise\;
错误码内容: 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPrimarySlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPrimarySlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getSignalInformation(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getSignalInformation(slotId: number): Promise\>;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(slotId: number, callback: AsyncCallback\): void
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getOperatorName(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getOperatorName(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPreferredNetwork(slotId: number, networkMode: PreferredNetworkMode, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPreferredNetwork(slotId: number, networkMode: PreferredNetworkMode): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPreferredNetwork(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPreferredNetwork(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasOperatorPrivileges(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasOperatorPrivileges(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getISOCountryCodeForSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getISOCountryCodeForSim(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimOperatorNumeric(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimOperatorNumeric(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimSpn(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimSpn(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimState(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimState(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getCardType(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getCardType(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimIccId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimIccId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailIdentifier(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailIdentifier(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setVoiceMailInfo(slotId: number, mailName: string, mailNumber: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setVoiceMailInfo(slotId: number, mailName: string, mailNumber: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimTelephoneNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimTelephoneNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimGid1(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimGid1(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getIMSI(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getIMSI(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasSimCard(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasSimCard(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimAccountInfo(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimAccountInfo(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getActiveSimAccountInfoList(callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getActiveSimAccountInfoList(): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setDefaultVoiceSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setDefaultVoiceSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function activateSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function activateSim(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function deactivateSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function deactivateSim(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowName(slotId: number, name: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowName(slotId: number, name: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowName(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowName(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowNumber(slotId: number, number: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowNumber(slotId: number, number: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getOperatorConfigs(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getOperatorConfigs(slotId: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin(slotId: number, pin: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin(slotId: number, pin: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk(slotId: number, newPin: string, puk: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk(slotId: number, newPin: string, puk: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin(slotId: number, newPin: string, oldPin: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin(slotId: number, newPin: string, oldPin: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setLockState(slotId: number, options: LockInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setLockState(slotId: number, options: LockInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin2(slotId: number, pin2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin2(slotId: number, pin2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk2(slotId: number, newPin2: string, puk2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk2(slotId: number, newPin2: string, puk2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin2(slotId: number, newPin2: string, oldPin2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin2(slotId: number, newPin2: string, oldPin2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function queryIccDiallingNumbers(slotId: number, type: ContactType, callback: AsyncCallback\>): void
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function queryIccDiallingNumbers(slotId: number, type: ContactType): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function addIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function addIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function delIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function delIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function updateIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function updateIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendEnvelopeCmd(slotId: number, cmd: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendEnvelopeCmd(slotId: number, cmd: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendTerminalResponseCmd(slotId: number, cmd: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendTerminalResponseCmd(slotId: number, cmd: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockSimLock(slotId: number, lockInfo: PersoLockInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockSimLock(slotId: number, lockInfo: PersoLockInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function splitMessage(content: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function splitMessage(content: string): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function createMessage(pdu: Array\, specification: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function createMessage(pdu: Array\, specification: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function sendMessage(options: SendMessageOptions): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setDefaultSmsSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setDefaultSmsSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setSmscAddr(slotId: number, smscAddr: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setSmscAddr(slotId: number, smscAddr: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmscAddr(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmscAddr(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function addSimMessage(options: SimMessageOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function addSimMessage(options: SimMessageOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function delSimMessage(slotId: number, msgIndex: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function delSimMessage(slotId: number, msgIndex: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function updateSimMessage(options: UpdateSimMessageOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function updateSimMessage(options: UpdateSimMessageOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getAllSimMessages(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getAllSimMessages(slotId: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setCBConfig(options: CBConfigOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setCBConfig(options: CBConfigOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmsSegmentsInfo(slotId: number, message: string, force7bit: boolean, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmsSegmentsInfo(slotId: number, message: string, force7bit: boolean): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function isImsSmsSupported(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function isImsSmsSupported(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getImsShortMessageFormat(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getImsShortMessageFormat(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function decodeMms(mmsFilePathName: string \| Array\, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function decodeMms(mmsFilePathName: string \| Array\): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function encodeMms(mms: MmsInformation, callback: AsyncCallback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function encodeMms(mms: MmsInformation): Promise\>;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-unitest.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-unitest.md new file mode 100644 index 0000000000000000000000000000000000000000..a2d55913fbf4930d37e2bfb13cda8c287849611f --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-unitest.md @@ -0,0 +1,328 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: EQUALS = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: CONTAINS = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: STARTS_WITH = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: ENDS_WITH = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: text(txt: string, pattern?: MatchPattern): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: key(key: string): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: id(id: number): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: type(tp: string): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: clickable(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: scrollable(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: enabled(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: focused(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: selected(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: isBefore(by: By): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: isAfter(by: By): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: click(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: doubleClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: longClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getId(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getKey(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getType(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isScrollable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isEnabled(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isSelected(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: inputText(text: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: scrollSearch(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: static create(): UiDriver;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: delayMs(duration: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: findComponent(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: findComponents(by: By): Promise\>;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: assertComponentExist(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: pressBack(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: triggerKey(keyCode: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: click(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: doubleClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: longClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: swipe(startx: number, starty: number, endx: number, endy: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: screenCap(savePath: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: FULLSCREEN = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: PRIMARY = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: SECONDARY = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: FLOATING = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: UP = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: DOWN = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT_UP = 4|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT_DOWN = 5|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT_UP = 6|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT_DOWN = 7|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_0 = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_90 = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_180 = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_270 = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point
方法 or 属性: readonly x: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point
方法 or 属性: readonly y: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly left: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly top: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly right: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly bottom: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: bundleName?: string;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: title?: string;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: focused?: boolean;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: actived?: boolean;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: text(txt: string, pattern?: MatchPattern): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: id(id: string): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: type(tp: string): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: clickable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: longClickable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: scrollable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: enabled(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: focused(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: selected(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: checked(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: checkable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: isBefore(on: On): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: isAfter(on: On): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: click(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: doubleClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: longClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getId(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getType(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isLongClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isScrollable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isEnabled(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isSelected(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isChecked(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isCheckable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: inputText(text: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: clearText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollToTop(speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollToBottom(speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollSearch(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getBounds(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getBoundsCenter(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: dragTo(target: Component): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: pinchOut(scale: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: pinchIn(scale: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: static create(): Driver;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: delayMs(duration: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findComponent(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findWindow(filter: WindowFilter): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: waitForComponent(on: On, time: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findComponents(on: On): Promise\>;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: assertComponentExist(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: pressBack(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: triggerKey(keyCode: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: triggerCombineKeys(key0: number, key1: number, key2?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: click(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: doubleClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: longClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: swipe(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: drag(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: screenCap(savePath: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: setDisplayRotation(rotation: DisplayRotation): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplayRotation(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: setDisplayRotationEnabled(enabled: boolean): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplaySize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplayDensity(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: wakeUpDisplay(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: pressHome(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: waitForIdle(idleTime: number, timeout: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: fling(from: Point, to: Point, stepLen: number, speed: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: injectMultiPointerAction(pointers: PointerMatrix, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getBundleName(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getBounds(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getTitle(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getWindowMode(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: isActived(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: focus(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: moveTo(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: resize(wide: number, height: number, direction: ResizeDirection): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: split(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: maximize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: minimize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: resume(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: close(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix
方法 or 属性: static create(fingers: number, steps: number): PointerMatrix;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix
方法 or 属性: setPoint(finger: number, step: number, point: Point): void;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: global
方法 or 属性: declare const BY: By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: global
方法 or 属性: declare const ON: On;|@ohos.UiTest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:EQUALS = 0|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:CONTAINS = 1|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:STARTS_WITH = 2|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:ENDS_WITH = 3|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:text(txt: string, pattern?: MatchPattern): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:key(key: string): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:id(id: number): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:type(tp: string): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:clickable(b?: boolean): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:scrollable(b?: boolean): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:enabled(b?: boolean): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:focused(b?: boolean): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:selected(b?: boolean): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:isBefore(by: By): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:isAfter(by: By): By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:click(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:doubleClick(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:longClick(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getId(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getKey(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getText(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getType(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isClickable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isScrollable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isEnabled(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isFocused(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isSelected(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:inputText(text: string): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:scrollSearch(by: By): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:static create(): UiDriver;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:delayMs(duration: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:findComponent(by: By): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:findComponents(by: By): Promise\>;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:assertComponentExist(by: By): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:pressBack(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:triggerKey(keyCode: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:click(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:doubleClick(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:longClick(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:swipe(startx: number, starty: number, endx: number, endy: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:screenCap(savePath: string): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowMode|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowMode
方法 or 属性:FULLSCREEN|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowMode
方法 or 属性:PRIMARY|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowMode
方法 or 属性:SECONDARY|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowMode
方法 or 属性:FLOATING|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:LEFT|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:RIGHT|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:UP|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:DOWN|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:LEFT_UP|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:LEFT_DOWN|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:RIGHT_UP|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: ResizeDirection
方法 or 属性:RIGHT_DOWN|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: DisplayRotation|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: DisplayRotation
方法 or 属性:ROTATION_0|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: DisplayRotation
方法 or 属性:ROTATION_90|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: DisplayRotation
方法 or 属性:ROTATION_180|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: DisplayRotation
方法 or 属性:ROTATION_270|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Point|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Point
方法 or 属性:readonly X: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Point
方法 or 属性:readonly Y: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Rect|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Rect
方法 or 属性:readonly left: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Rect
方法 or 属性:readonly top: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Rect
方法 or 属性:readonly right: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Rect
方法 or 属性:readonly bottom: number;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowFilter|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowFilter
方法 or 属性:bundleName?: string;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowFilter
方法 or 属性:title?: string;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowFilter
方法 or 属性:focused?: boolean;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: WindowFilter
方法 or 属性:actived?: boolean;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:text(txt: string, pattern?: MatchPattern): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:id(id: string): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:type(tp: string): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:clickable(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:longClickable(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:scrollable(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:enabled(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:focused(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:selected(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:checked(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:checkable(b?: boolean): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:isBefore(on: On): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: On
方法 or 属性:isAfter(on: On): On;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:click(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:doubleClick(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:longClick(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:getId(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:getText(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:getType(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isClickable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isLongClickable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isScrollable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isEnabled(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isFocused(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isSelected(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isChecked(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:isCheckable(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:inputText(text: string): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:clearText(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:scrollToTop(speed?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:scrollToBottom(speed?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:scrollSearch(on: On): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:getBounds(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:getBoundsCenter(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:dragTo(target: Component): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:pinchOut(scale: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Component
方法 or 属性:pinchIn(scale: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:static create(): Driver;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:delayMs(duration: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:findComponent(on: On): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:findWindow(filter: WindowFilter): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:waitForComponent(on: On, time: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:findComponents(on: On): Promise\>;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:assertComponentExist(on: On): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:pressBack(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:triggerKey(keyCode: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:triggerCombineKeys(key0: number, key1: number, key2?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:click(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:doubleClick(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:longClick(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:swipe(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:drag(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:screenCap(savePath: string): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:setDisplayRotation(rotation: DisplayRotation): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:getDisplayRotation(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:setDisplayRotationEnabled(enabled: boolean): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:getDisplaySize(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:getDisplayDensity(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:wakeUpDisplay(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:pressHome(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:waitForIdle(idleTime: number, timeout: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:fling(from: Point, to: Point, stepLen: number, speed: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: Driver
方法 or 属性:injectMultiPointerAction(pointers: PointerMatrix, speed?: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:getBundleName(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:getBounds(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:getTitle(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:getWindowMode(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:isFocused(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:isActived(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:focus(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:moveTo(x: number, y: number): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:resize(wide: number, height: number, direction: ResizeDirection): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:split(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:maximize(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:minimize(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:resume(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiWindow
方法 or 属性:close(): Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: PointerMatrix|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: PointerMatrix
方法 or 属性:static create(fingers: number, steps: number): PointerMatrix;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: PointerMatrix
方法 or 属性:setPoint(finger: number, step: number, point: Point): void;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: global
方法 or 属性:declare const BY: By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: global
方法 or 属性:declare const ON: On;|NA|@ohos.uitest.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-update.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-update.md new file mode 100644 index 0000000000000000000000000000000000000000..aae4e5cc528ffac2d6ce318ff52b44551d9e81ef --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-update.md @@ -0,0 +1,53 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|起始版本有变化|类名:UpgradeTaskCallback
方法 or 属性:(eventInfo: EventInfo): void;
起始版本:N/A|类名:UpgradeTaskCallback
方法 or 属性:(eventInfo: EventInfo): void;
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:BusinessVendor
方法 or 属性:PUBLIC = "public"
起始版本:N/A|类名:BusinessVendor
方法 or 属性:PUBLIC = "public"
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:BusinessSubType
方法 or 属性:FIRMWARE = 1
起始版本:N/A|类名:BusinessSubType
方法 or 属性:FIRMWARE = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:ComponentType
方法 or 属性:OTA = 1
起始版本:N/A|类名:ComponentType
方法 or 属性:OTA = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeAction
方法 or 属性:UPGRADE = "upgrade"
起始版本:N/A|类名:UpgradeAction
方法 or 属性:UPGRADE = "upgrade"
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeAction
方法 or 属性:RECOVERY = "recovery"
起始版本:N/A|类名:UpgradeAction
方法 or 属性:RECOVERY = "recovery"
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EffectiveMode
方法 or 属性:COLD = 1
起始版本:N/A|类名:EffectiveMode
方法 or 属性:COLD = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EffectiveMode
方法 or 属性:LIVE = 2
起始版本:N/A|类名:EffectiveMode
方法 or 属性:LIVE = 2
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EffectiveMode
方法 or 属性:LIVE_AND_COLD = 3
起始版本:N/A|类名:EffectiveMode
方法 or 属性:LIVE_AND_COLD = 3
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionType
方法 or 属性:CONTENT = 0
起始版本:N/A|类名:DescriptionType
方法 or 属性:CONTENT = 0
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionType
方法 or 属性:URI = 1
起始版本:N/A|类名:DescriptionType
方法 or 属性:URI = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionFormat
方法 or 属性:STANDARD = 0
起始版本:N/A|类名:DescriptionFormat
方法 or 属性:STANDARD = 0
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionFormat
方法 or 属性:SIMPLIFIED = 1
起始版本:N/A|类名:DescriptionFormat
方法 or 属性:SIMPLIFIED = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NetType
方法 or 属性:CELLULAR = 1
起始版本:N/A|类名:NetType
方法 or 属性:CELLULAR = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NetType
方法 or 属性:METERED_WIFI = 2
起始版本:N/A|类名:NetType
方法 or 属性:METERED_WIFI = 2
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NetType
方法 or 属性:NOT_METERED_WIFI = 4
起始版本:N/A|类名:NetType
方法 or 属性:NOT_METERED_WIFI = 4
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NetType
方法 or 属性:WIFI = 6
起始版本:N/A|类名:NetType
方法 or 属性:WIFI = 6
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NetType
方法 or 属性:CELLULAR_AND_WIFI = 7
起始版本:N/A|类名:NetType
方法 or 属性:CELLULAR_AND_WIFI = 7
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Order
方法 or 属性:DOWNLOAD = 1
起始版本:N/A|类名:Order
方法 or 属性:DOWNLOAD = 1
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Order
方法 or 属性:INSTALL = 2
起始版本:N/A|类名:Order
方法 or 属性:INSTALL = 2
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Order
方法 or 属性:DOWNLOAD_AND_INSTALL = 3
起始版本:N/A|类名:Order
方法 or 属性:DOWNLOAD_AND_INSTALL = 3
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Order
方法 or 属性:APPLY = 4
起始版本:N/A|类名:Order
方法 or 属性:APPLY = 4
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Order
方法 or 属性:INSTALL_AND_APPLY = 6
起始版本:N/A|类名:Order
方法 or 属性:INSTALL_AND_APPLY = 6
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:WAITING_DOWNLOAD = 20
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:WAITING_DOWNLOAD = 20
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:DOWNLOADING = 21
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:DOWNLOADING = 21
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:DOWNLOAD_PAUSED = 22
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:DOWNLOAD_PAUSED = 22
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:DOWNLOAD_FAIL = 23
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:DOWNLOAD_FAIL = 23
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:WAITING_INSTALL = 30
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:WAITING_INSTALL = 30
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:UPDATING = 31
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:UPDATING = 31
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:WAITING_APPLY = 40
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:WAITING_APPLY = 40
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:APPLYING = 41
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:APPLYING = 41
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:UPGRADE_SUCCESS = 50
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:UPGRADE_SUCCESS = 50
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:UpgradeStatus
方法 or 属性:UPGRADE_FAIL = 51
起始版本:N/A|类名:UpgradeStatus
方法 or 属性:UPGRADE_FAIL = 51
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventClassify
方法 or 属性:TASK = 0x01000000
起始版本:N/A|类名:EventClassify
方法 or 属性:TASK = 0x01000000
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_TASK_BASE = EventClassify.TASK
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_TASK_BASE = EventClassify.TASK
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_TASK_RECEIVE
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_TASK_RECEIVE
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_TASK_CANCEL
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_TASK_CANCEL
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_WAIT
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_WAIT
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_START
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_START
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_UPDATE
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_UPDATE
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_PAUSE
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_PAUSE
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_RESUME
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_RESUME
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_SUCCESS
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_SUCCESS
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_FAIL
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_DOWNLOAD_FAIL
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_UPGRADE_WAIT
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_UPGRADE_WAIT
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_UPGRADE_START
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_UPGRADE_START
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_UPGRADE_UPDATE
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_UPGRADE_UPDATE
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_APPLY_WAIT
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_APPLY_WAIT
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_APPLY_START
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_APPLY_START
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_UPGRADE_SUCCESS
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_UPGRADE_SUCCESS
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:EventId
方法 or 属性:EVENT_UPGRADE_FAIL
起始版本:N/A|类名:EventId
方法 or 属性:EVENT_UPGRADE_FAIL
起始版本:9|@ohos.update.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-usb.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-usb.md new file mode 100644 index 0000000000000000000000000000000000000000..c33faf227957b41c2898834c7cfe4309d9a7e2a9 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-usb.md @@ -0,0 +1,236 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.usbManager
类名: usbManager|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getDevices(): Array\>;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function connectDevice(device: USBDevice): Readonly\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function hasRight(deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function requestRight(deviceName: string): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function removeRight(deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function addRight(bundleName: string, deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function usbFunctionsFromString(funcs: string): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function usbFunctionsToString(funcs: FunctionType): string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setCurrentFunctions(funcs: FunctionType): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getCurrentFunctions(): FunctionType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getPorts(): Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getSupportedModes(portId: number): PortModeType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setPortRoles(portId: number, powerRole: PowerRoleType, dataRole: DataRoleType): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function claimInterface(pipe: USBDevicePipe, iface: USBInterface, force?: boolean): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function releaseInterface(pipe: USBDevicePipe, iface: USBInterface): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setConfiguration(pipe: USBDevicePipe, config: USBConfiguration): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setInterface(pipe: USBDevicePipe, iface: USBInterface): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getRawDescriptor(pipe: USBDevicePipe): Uint8Array;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getFileDescriptor(pipe: USBDevicePipe): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function bulkTransfer(pipe: USBDevicePipe, endpoint: USBEndpoint, buffer: Uint8Array,

timeout?: number): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function closePipe(pipe: USBDevicePipe): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: address: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: attributes: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: interval: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: maxPacketSize: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: direction: USBRequestDirection;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: number: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: type: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: interfaceId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: protocol: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: clazz: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: subClass: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: alternateSetting: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: endpoints: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: attributes: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: maxPower: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: isRemoteWakeup: boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: isSelfPowered: boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: interfaces: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: busNum: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: devAddress: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: serial: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: manufacturerName: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: productName: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: version: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: vendorId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: productId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: clazz: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: subClass: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: protocol: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: configs: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe
方法 or 属性: busNum: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe
方法 or 属性: devAddress: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: SOURCE = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: SINK = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: HOST = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: DEVICE = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: UFP = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: DFP = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: DRP = 3|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: NUM_MODES = 4|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentMode: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentPowerRole: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentDataRole: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: supportedModes: PortModeType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: status: USBPortStatus;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: request: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: target: USBRequestTargetType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: reqType: USBControlRequestType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: value: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: index: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: data: Uint8Array;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_DEVICE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_INTERFACE = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_ENDPOINT = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_OTHER = 3|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_STANDARD = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_CLASS = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_VENDOR = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection
方法 or 属性: USB_REQUEST_DIR_TO_DEVICE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection
方法 or 属性: USB_REQUEST_DIR_FROM_DEVICE = 0x80|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: ACM = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: ECM = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: HDC = 4|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: MTP = 8|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: PTP = 16|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: RNDIS = 32|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: MIDI = 64|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: AUDIO_SOURCE = 128|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: NCM = 256|@ohos.usbManager.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getDevices(): Array\>;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function connectDevice(device: USBDevice): Readonly\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function hasRight(deviceName: string): boolean;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function requestRight(deviceName: string): Promise\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function removeRight(deviceName: string): boolean;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function addRight(bundleName: string, deviceName: string): boolean;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function usbFunctionsFromString(funcs: string): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function usbFunctionsToString(funcs: FunctionType): string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function setCurrentFunctions(funcs: FunctionType): Promise\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getCurrentFunctions(): FunctionType;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getPorts(): Array\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getSupportedModes(portId: number): PortModeType;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function setPortRoles(portId: number, powerRole: PowerRoleType, dataRole: DataRoleType): Promise\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function claimInterface(pipe: USBDevicePipe, iface: USBInterface, force?: boolean): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function releaseInterface(pipe: USBDevicePipe, iface: USBInterface): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function setConfiguration(pipe: USBDevicePipe, config: USBConfig): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function setInterface(pipe: USBDevicePipe, iface: USBInterface): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getRawDescriptor(pipe: USBDevicePipe): Uint8Array;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function getFileDescriptor(pipe: USBDevicePipe): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function bulkTransfer(pipe: USBDevicePipe, endpoint: USBEndpoint, buffer: Uint8Array,

timeout?: number): Promise\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: usbV9
方法 or 属性:function closePipe(pipe: USBDevicePipe): number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:address: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:attributes: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:interval: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:maxPacketSize: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:direction: USBRequestDirection;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:number: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:type: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBEndpoint
方法 or 属性:interfaceId: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:id: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:protocol: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:clazz: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:subClass: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:alternateSetting: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:name: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBInterface
方法 or 属性:endpoints: Array\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:id: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:attributes: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:maxPower: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:name: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:isRemoteWakeup: boolean;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:isSelfPowered: boolean;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBConfig
方法 or 属性:interfaces: Array\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:busNum: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:devAddress: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:serial: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:name: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:manufacturerName: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:productName: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:version: string;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:vendorId: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:productId: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:clazz: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:subClass: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:protocol: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevice
方法 or 属性:configs: Array\;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevicePipe|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevicePipe
方法 or 属性:busNum: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBDevicePipe
方法 or 属性:devAddress: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PowerRoleType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PowerRoleType
方法 or 属性:NONE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PowerRoleType
方法 or 属性:SOURCE = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PowerRoleType
方法 or 属性:SINK = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: DataRoleType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: DataRoleType
方法 or 属性:NONE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: DataRoleType
方法 or 属性:HOST = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: DataRoleType
方法 or 属性:DEVICE = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType
方法 or 属性:NONE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType
方法 or 属性:UFP = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType
方法 or 属性:DFP = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType
方法 or 属性:DRP = 3|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: PortModeType
方法 or 属性:NUM_MODES = 4|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPortStatus|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPortStatus
方法 or 属性:currentMode: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPortStatus
方法 or 属性:currentPowerRole: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPortStatus
方法 or 属性:currentDataRole: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPort|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPort
方法 or 属性:id: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPort
方法 or 属性:supportedModes: PortModeType;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBPort
方法 or 属性:status: USBPortStatus;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:request: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:target: USBRequestTargetType;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:reqType: USBControlRequestType;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:value: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:index: number;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlParams
方法 or 属性:data: Uint8Array;|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestTargetType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestTargetType
方法 or 属性:USB_REQUEST_TARGET_DEVICE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestTargetType
方法 or 属性:USB_REQUEST_TARGET_INTERFACE = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestTargetType
方法 or 属性:USB_REQUEST_TARGET_ENDPOINT = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestTargetType
方法 or 属性:USB_REQUEST_TARGET_OTHER = 3|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlRequestType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlRequestType
方法 or 属性:USB_REQUEST_TYPE_STANDARD = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlRequestType
方法 or 属性:USB_REQUEST_TYPE_CLASS = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBControlRequestType
方法 or 属性:USB_REQUEST_TYPE_VENDOR = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestDirection|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestDirection
方法 or 属性:USB_REQUEST_DIR_TO_DEVICE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: USBRequestDirection
方法 or 属性:USB_REQUEST_DIR_FROM_DEVICE = 0x80|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:NONE = 0|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:ACM = 1|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:ECM = 2|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:HDC = 4|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:MTP = 8|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:PTP = 16|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:RNDIS = 32|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:MIDI = 64|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:AUDIO_SOURCE = 128|NA|@ohos.usbV9.d.ts| +|删除|模块名: ohos.usbV9
类名: FunctionType
方法 or 属性:NCM = 256|NA|@ohos.usbV9.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-user-iam.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-user-iam.md new file mode 100644 index 0000000000000000000000000000000000000000..fa3ebd3a7fd4be8fc837d4d942b970f5c0edc201 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-user-iam.md @@ -0,0 +1,3 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|删除|模块名:ohos.userIAM.userAuth
类名:userAuth
方法 or 属性:function getVersion(): number;|NA|@ohos.userIAM.userAuth.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-web.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-web.md new file mode 100644 index 0000000000000000000000000000000000000000..9cb9d30249e211523bfc1af3c7a2c4ddc59e8446 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-web.md @@ -0,0 +1,46 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.web.webview
类名: WebHeader|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHeader
方法or属性:|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHeader
方法 or 属性:headerKey: string;|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHeader
方法or属性:headerKey: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHeader
方法 or 属性:headerValue: string;|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHeader
方法or属性:headerValue: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:EditText|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:EditText|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:Email|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:Email|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:HttpAnchor|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:HttpAnchor|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:HttpAnchorImg|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:HttpAnchorImg|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:Img|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:Img|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:Map|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:Map|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:Phone|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:Phone|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性:Unknown|@ohos.web.webview.d.ts| +|新增|NA|类名:WebHitTestType
方法or属性:Unknown|@ohos.web.webview.d.ts| +|新增|NA|类名:HitTestValue
方法or属性:type: WebHitTestType;|@ohos.web.webview.d.ts| +|新增|NA|类名:WebviewController
方法or属性:static setWebDebuggingAccess(webDebuggingAccess: boolean): void;|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HeaderV9|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HeaderV9
方法 or 属性:headerKey: string;|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HeaderV9
方法 or 属性:headerValue: string;|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:EditText|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:Email|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:HttpAnchor|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:HttpAnchorImg|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:Img|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:Map|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:Phone|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: HitTestTypeV9
方法 or 属性:Unknown|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: WebAsyncController|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: WebAsyncController
方法 or 属性:constructor(controller: WebController);|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: WebAsyncController
方法 or 属性:storeWebArchive(baseName: string, autoName: boolean): Promise\;|NA|@ohos.web.webview.d.ts| +|删除|模块名: ohos.web.webview
类名: WebAsyncController
方法 or 属性:storeWebArchive(baseName: string, autoName: boolean, callback : AsyncCallback\): void;|NA|@ohos.web.webview.d.ts| +|函数有变化|类名:WebviewController
方法 or 属性:loadUrl(url: string \| Resource, headers?: Array\): void;
|类名:WebviewController
方法 or 属性:loadUrl(url: string \| Resource, headers?: Array\): void;
|@ohos.web.webview.d.ts| +|函数有变化|类名:WebviewController
方法 or 属性:getHitTest(): HitTestTypeV9;
|类名:WebviewController
方法 or 属性:getHitTest(): WebHitTestType;
|@ohos.web.webview.d.ts| diff --git a/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-window.md b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-window.md new file mode 100644 index 0000000000000000000000000000000000000000..5987e436840e5ea83f9ff1f1850e9e86c720bc01 --- /dev/null +++ b/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/js-apidiff-window.md @@ -0,0 +1,74 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:WindowExtensionAbility
方法or属性:context: WindowExtensionContext;|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(requestInfo: dialogRequest.RequestInfo, deathCallback: Callback\): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(requestInfo: dialogRequest.RequestInfo, deathCallback: Callback\, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext|WindowExtensionContext.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext
方法 or 属性: startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|WindowExtensionContext.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext
方法 or 属性: startAbility(want: Want, options?: StartOptions): Promise\;|WindowExtensionContext.d.ts| +|删除|模块名:ohos.window
类名:Window
方法 or 属性:on(type: 'dialogTargetTouch', callback: Callback\): void;|NA|@ohos.window.d.ts| +|删除|模块名:ohos.window
类名:Window
方法 or 属性:off(type: 'dialogTargetTouch', callback?: Callback\): void;|NA|@ohos.window.d.ts| +|访问级别有变化|类名:WindowAnimationFinishedCallback
方法 or 属性:onAnimationFinish(): void;
访问级别:公开API|类名:WindowAnimationFinishedCallback
方法 or 属性:onAnimationFinish(): void;
访问级别:系统API|@ohos.animation.windowAnimationManager.d.ts| +|访问级别有变化|类名:WindowType
方法 or 属性:TYPE_FLOAT_CAMERA
访问级别:公开API|类名:WindowType
方法 or 属性:TYPE_FLOAT_CAMERA
访问级别:系统API|@ohos.window.d.ts| +|起始版本有变化|类名:RRect
方法 or 属性:left: number;
起始版本:N/A|类名:RRect
方法 or 属性:left: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:RRect
方法 or 属性:top: number;
起始版本:N/A|类名:RRect
方法 or 属性:top: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:RRect
方法 or 属性:width: number;
起始版本:N/A|类名:RRect
方法 or 属性:width: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:RRect
方法 or 属性:height: number;
起始版本:N/A|类名:RRect
方法 or 属性:height: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:RRect
方法 or 属性:radius: number;
起始版本:N/A|类名:RRect
方法 or 属性:radius: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:WindowAnimationTarget
方法 or 属性:readonly bundleName: string;
起始版本:N/A|类名:WindowAnimationTarget
方法 or 属性:readonly bundleName: string;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:WindowAnimationTarget
方法 or 属性:readonly abilityName: string;
起始版本:N/A|类名:WindowAnimationTarget
方法 or 属性:readonly abilityName: string;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:WindowAnimationTarget
方法 or 属性:readonly windowBounds: RRect;
起始版本:N/A|类名:WindowAnimationTarget
方法 or 属性:readonly windowBounds: RRect;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:WindowAnimationTarget
方法 or 属性:readonly missionId: number;
起始版本:N/A|类名:WindowAnimationTarget
方法 or 属性:readonly missionId: number;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:WindowAnimationFinishedCallback
方法 or 属性:onAnimationFinish(): void;
起始版本:N/A|类名:WindowAnimationFinishedCallback
方法 or 属性:onAnimationFinish(): void;
起始版本:9|@ohos.animation.windowAnimationManager.d.ts| +|起始版本有变化|类名:Rect
方法 or 属性:left: number;
起始版本:N/A|类名:Rect
方法 or 属性:left: number;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:Rect
方法 or 属性:top: number;
起始版本:N/A|类名:Rect
方法 or 属性:top: number;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:Rect
方法 or 属性:width: number;
起始版本:N/A|类名:Rect
方法 or 属性:width: number;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:Rect
方法 or 属性:height: number;
起始版本:N/A|类名:Rect
方法 or 属性:height: number;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly left: Rect;
起始版本:N/A|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly left: Rect;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly right: Rect;
起始版本:N/A|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly right: Rect;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly top: Rect;
起始版本:N/A|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly top: Rect;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly bottom: Rect;
起始版本:N/A|类名:WaterfallDisplayAreaRects
方法 or 属性:readonly bottom: Rect;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:CutoutInfo
方法 or 属性:readonly boundingRects: Array\;
起始版本:N/A|类名:CutoutInfo
方法 or 属性:readonly boundingRects: Array\;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:CutoutInfo
方法 or 属性:readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;
起始版本:N/A|类名:CutoutInfo
方法 or 属性:readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;
起始版本:9|@ohos.display.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:N/A|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:N/A|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:pivotX?: number;
起始版本:N/A|类名:ScaleOptions
方法 or 属性:pivotX?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:pivotY?: number;
起始版本:N/A|类名:ScaleOptions
方法 or 属性:pivotY?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:N/A|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:N/A|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:N/A|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:pivotX?: number;
起始版本:N/A|类名:RotateOptions
方法 or 属性:pivotX?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:pivotY?: number;
起始版本:N/A|类名:RotateOptions
方法 or 属性:pivotY?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:x?: number;
起始版本:N/A|类名:TranslateOptions
方法 or 属性:x?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:y?: number;
起始版本:N/A|类名:TranslateOptions
方法 or 属性:y?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:z?: number;
起始版本:N/A|类名:TranslateOptions
方法 or 属性:z?: number;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TransitionContext
方法 or 属性:toWindow: Window
起始版本:N/A|类名:TransitionContext
方法 or 属性:toWindow: Window
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TransitionContext
方法 or 属性:completeTransition(isCompleted: boolean): void;
起始版本:N/A|类名:TransitionContext
方法 or 属性:completeTransition(isCompleted: boolean): void;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TransitionController
方法 or 属性:animationForShown(context: TransitionContext): void;
起始版本:N/A|类名:TransitionController
方法 or 属性:animationForShown(context: TransitionContext): void;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:TransitionController
方法 or 属性:animationForHidden(context: TransitionContext): void;
起始版本:N/A|类名:TransitionController
方法 or 属性:animationForHidden(context: TransitionContext): void;
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:name: string
起始版本:N/A|类名:Configuration
方法 or 属性:name: string
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:windowType: WindowType
起始版本:N/A|类名:Configuration
方法 or 属性:windowType: WindowType
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:ctx?: BaseContext
起始版本:N/A|类名:Configuration
方法 or 属性:ctx?: BaseContext
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:displayId?: number
起始版本:N/A|类名:Configuration
方法 or 属性:displayId?: number
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:parentId?: number
起始版本:N/A|类名:Configuration
方法 or 属性:parentId?: number
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:UNSPECIFIED = 0
起始版本:N/A|类名:Orientation
方法 or 属性:UNSPECIFIED = 0
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:PORTRAIT = 1
起始版本:N/A|类名:Orientation
方法 or 属性:PORTRAIT = 1
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:LANDSCAPE = 2
起始版本:N/A|类名:Orientation
方法 or 属性:LANDSCAPE = 2
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:PORTRAIT_INVERTED = 3
起始版本:N/A|类名:Orientation
方法 or 属性:PORTRAIT_INVERTED = 3
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:LANDSCAPE_INVERTED = 4
起始版本:N/A|类名:Orientation
方法 or 属性:LANDSCAPE_INVERTED = 4
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION = 5
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION = 5
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT = 6
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT = 6
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE = 7
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE = 7
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION_RESTRICTED = 8
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION_RESTRICTED = 8
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT_RESTRICTED = 9
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT_RESTRICTED = 9
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE_RESTRICTED = 10
起始版本:N/A|类名:Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE_RESTRICTED = 10
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:Orientation
方法 or 属性:LOCKED = 11
起始版本:N/A|类名:Orientation
方法 or 属性:LOCKED = 11
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:BlurStyle
方法 or 属性:OFF
起始版本:N/A|类名:BlurStyle
方法 or 属性:OFF
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:BlurStyle
方法 or 属性:THIN
起始版本:N/A|类名:BlurStyle
方法 or 属性:THIN
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:BlurStyle
方法 or 属性:REGULAR
起始版本:N/A|类名:BlurStyle
方法 or 属性:REGULAR
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:BlurStyle
方法 or 属性:THICK
起始版本:N/A|类名:BlurStyle
方法 or 属性:THICK
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:WindowStageEventType
方法 or 属性:SHOWN = 1
起始版本:N/A|类名:WindowStageEventType
方法 or 属性:SHOWN = 1
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:WindowStageEventType
方法 or 属性:ACTIVE
起始版本:N/A|类名:WindowStageEventType
方法 or 属性:ACTIVE
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:WindowStageEventType
方法 or 属性:INACTIVE
起始版本:N/A|类名:WindowStageEventType
方法 or 属性:INACTIVE
起始版本:9|@ohos.window.d.ts| +|起始版本有变化|类名:WindowStageEventType
方法 or 属性:HIDDEN
起始版本:N/A|类名:WindowStageEventType
方法 or 属性:HIDDEN
起始版本:9|@ohos.window.d.ts| +|删除(权限)|类名:WindowType
方法 or 属性:TYPE_FLOAT_CAMERA
权限:ohos.permission.SYSTEM_FLOAT_WINDOW|类名:WindowType
方法 or 属性:TYPE_FLOAT_CAMERA
权限:N/A|@ohos.window.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-ability.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-ability.md new file mode 100644 index 0000000000000000000000000000000000000000..b2bfdb1d382f643ec5f8edfebd03d585f4ca0802 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-ability.md @@ -0,0 +1,734 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: lifecycle
类名: LifecycleForm
方法 or 属性: onShare?(formId: string): {[key: string]: any};|lifecycle.d.ts| +|新增|NA|模块名: ohos.ability.ability
类名: ability|@ohos.ability.ability.d.ts| +|新增|NA|模块名: ohos.app.ability.Ability
类名: Ability|@ohos.app.ability.Ability.d.ts| +|新增|NA|模块名: ohos.app.ability.Ability
类名: Ability
方法 or 属性: onConfigurationUpdate(newConfig: Configuration): void;|@ohos.app.ability.Ability.d.ts| +|新增|NA|模块名: ohos.app.ability.Ability
类名: Ability
方法 or 属性: onMemoryLevel(level: AbilityConstant.MemoryLevel): void;|@ohos.app.ability.Ability.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: AbilityConstant|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam
方法 or 属性: launchReason: LaunchReason;|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam
方法 or 属性: lastExitReason: LastExitReason;|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法 or 属性: UNKNOWN = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法 or 属性: START_ABILITY = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法 or 属性: CALL = 2|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法 or 属性: CONTINUATION = 3|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法 or 属性: APP_RECOVERY = 4|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法 or 属性: UNKNOWN = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法 or 属性: ABILITY_NOT_RESPONDING = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法 or 属性: NORMAL = 2|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法 or 属性: AGREE = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法 or 属性: REJECT = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法 or 属性: MISMATCH = 2|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法 or 属性: MEMORY_LEVEL_MODERATE = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法 or 属性: MEMORY_LEVEL_LOW = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法 or 属性: MEMORY_LEVEL_CRITICAL = 2|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法 or 属性: WINDOW_MODE_UNDEFINED = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法 or 属性: WINDOW_MODE_FULLSCREEN = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法 or 属性: WINDOW_MODE_SPLIT_PRIMARY = 100|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法 or 属性: WINDOW_MODE_SPLIT_SECONDARY = 101|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法 or 属性: WINDOW_MODE_FLOATING = 102|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: ALL_AGREE = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: CONTINUATION_REJECT = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: CONTINUATION_MISMATCH = 2|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: RECOVERY_AGREE = 3|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: RECOVERY_REJECT = 4|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法 or 属性: ALL_REJECT|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: StateType|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: StateType
方法 or 属性: CONTINUATION = 0|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityConstant
类名: StateType
方法 or 属性: APP_RECOVERY = 1|@ohos.app.ability.AbilityConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry
方法 or 属性: function getAbilityDelegator(): AbilityDelegator;|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry
方法 or 属性: function getArguments(): AbilityDelegatorArgs;|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法 or 属性: UNINITIALIZED|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法 or 属性: CREATE|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法 or 属性: FOREGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法 or 属性: BACKGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法 or 属性: DESTROY|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onAbilityCreate(ability: UIAbility): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onWindowStageCreate(ability: UIAbility, windowStage: window.WindowStage): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onWindowStageActive(ability: UIAbility, windowStage: window.WindowStage): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onWindowStageInactive(ability: UIAbility, windowStage: window.WindowStage): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onWindowStageDestroy(ability: UIAbility, windowStage: window.WindowStage): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onAbilityDestroy(ability: UIAbility): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onAbilityForeground(ability: UIAbility): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onAbilityBackground(ability: UIAbility): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法 or 属性: onAbilityContinue(ability: UIAbility): void;|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: INITIAL = 0|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: FOCUS = 2|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: FOREGROUND = 9|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: BACKGROUND = 10|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: FOREGROUNDING = 11|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法 or 属性: BACKGROUNDING = 12|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function updateConfiguration(config: Configuration, callback: AsyncCallback\): void;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function updateConfiguration(config: Configuration): Promise\;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getAbilityRunningInfos(): Promise\>;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getAbilityRunningInfos(callback: AsyncCallback\>): void;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getExtensionRunningInfos(upperLimit: number): Promise\>;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getExtensionRunningInfos(upperLimit: number, callback: AsyncCallback\>): void;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getTopAbility(): Promise\;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法 or 属性: function getTopAbility(callback: AsyncCallback\): void;|@ohos.app.ability.abilityManager.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法 or 属性: context: AbilityStageContext;|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法 or 属性: onCreate(): void;|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法 or 属性: onAcceptWant(want: Want): string;|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法 or 属性: onConfigurationUpdate(newConfig: Configuration): void;|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法 or 属性: onMemoryLevel(level: AbilityConstant.MemoryLevel): void;|@ohos.app.ability.AbilityStage.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState
方法 or 属性: STATE_CREATE|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState
方法 or 属性: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState
方法 or 属性: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState
方法 or 属性: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ApplicationState
方法 or 属性: STATE_DESTROY|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState
方法 or 属性: STATE_CREATE|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState
方法 or 属性: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState
方法 or 属性: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState
方法 or 属性: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: ProcessState
方法 or 属性: STATE_DESTROY|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function on(type: "applicationState", observer: ApplicationStateObserver): number;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function on(type: "applicationState", observer: ApplicationStateObserver, bundleNameList: Array\): number;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function off(type: "applicationState", observerId: number, callback: AsyncCallback\): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function off(type: "applicationState", observerId: number): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getForegroundApplications(callback: AsyncCallback\>): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getForegroundApplications(): Promise\>;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function killProcessWithAccount(bundleName: string, accountId: number): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function killProcessWithAccount(bundleName: string, accountId: number, callback: AsyncCallback\): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function isRunningInStabilityTest(callback: AsyncCallback\): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function isRunningInStabilityTest(): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function killProcessesByBundleName(bundleName: string): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function killProcessesByBundleName(bundleName: string, callback: AsyncCallback\);|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function clearUpApplicationData(bundleName: string): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function clearUpApplicationData(bundleName: string, callback: AsyncCallback\);|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function isRamConstrainedDevice(): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function isRamConstrainedDevice(callback: AsyncCallback\): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getAppMemorySize(): Promise\;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getAppMemorySize(callback: AsyncCallback\): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getRunningProcessInformation(): Promise\>;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appManager
类名: appManager
方法 or 属性: function getRunningProcessInformation(callback: AsyncCallback\>): void;|@ohos.app.ability.appManager.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: appRecovery|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: RestartFlag|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法 or 属性: ALWAYS_RESTART = 0|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法 or 属性: RESTART_WHEN_JS_CRASH = 0x0001|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法 or 属性: RESTART_WHEN_APP_FREEZE = 0x0002|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法 or 属性: NO_RESTART = 0xFFFF|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag
方法 or 属性: SAVE_WHEN_ERROR = 0x0001|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag
方法 or 属性: SAVE_WHEN_BACKGROUND = 0x0002|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag
方法 or 属性: SAVE_WITH_FILE = 0x0001|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag
方法 or 属性: SAVE_WITH_SHARED_MEMORY = 0x0002|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法 or 属性: function enableAppRecovery(restart?: RestartFlag, saveOccasion?: SaveOccasionFlag, saveMode?: SaveModeFlag) : void;|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法 or 属性: function restartApp(): void;|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法 or 属性: function saveAppState(): boolean;|@ohos.app.ability.appRecovery.d.ts| +|新增|NA|模块名: ohos.app.ability.common
类名: common|@ohos.app.ability.common.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: language?: string;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: colorMode?: ConfigurationConstant.ColorMode;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: direction?: ConfigurationConstant.Direction;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: screenDensity?: ConfigurationConstant.ScreenDensity;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: displayId?: number;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.Configuration
类名: Configuration
方法 or 属性: hasPointerDevice?: boolean;|@ohos.app.ability.Configuration.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ConfigurationConstant|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法 or 属性: COLOR_MODE_NOT_SET = -1|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法 or 属性: COLOR_MODE_DARK = 0|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法 or 属性: COLOR_MODE_LIGHT = 1|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: Direction|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法 or 属性: DIRECTION_NOT_SET = -1|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法 or 属性: DIRECTION_VERTICAL = 0|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法 or 属性: DIRECTION_HORIZONTAL = 1|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_NOT_SET = 0|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_SDPI = 120|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_MDPI = 160|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_LDPI = 240|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_XLDPI = 320|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_XXLDPI = 480|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法 or 属性: SCREEN_DENSITY_XXXLDPI = 640|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.contextConstant
类名: contextConstant|@ohos.app.ability.contextConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.contextConstant
类名: AreaMode|@ohos.app.ability.contextConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.contextConstant
类名: AreaMode
方法 or 属性: EL1 = 0|@ohos.app.ability.contextConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.contextConstant
类名: AreaMode
方法 or 属性: EL2 = 1|@ohos.app.ability.contextConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.dataUriUtils
类名: dataUriUtils|@ohos.app.ability.dataUriUtils.d.ts| +|新增|NA|模块名: ohos.app.ability.dataUriUtils
类名: dataUriUtils
方法 or 属性: function getId(uri: string): number|@ohos.app.ability.dataUriUtils.d.ts| +|新增|NA|模块名: ohos.app.ability.dataUriUtils
类名: dataUriUtils
方法 or 属性: function attachId(uri: string, id: number): string|@ohos.app.ability.dataUriUtils.d.ts| +|新增|NA|模块名: ohos.app.ability.dataUriUtils
类名: dataUriUtils
方法 or 属性: function deleteId(uri: string): string|@ohos.app.ability.dataUriUtils.d.ts| +|新增|NA|模块名: ohos.app.ability.dataUriUtils
类名: dataUriUtils
方法 or 属性: function updateId(uri: string, id: number): string|@ohos.app.ability.dataUriUtils.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestInfo|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode
方法 or 属性: RESULT_OK = 0|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: ResultCode
方法 or 属性: RESULT_CANCEL = 1|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestResult|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestResult
方法 or 属性: result: ResultCode;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestCallback|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: RequestCallback
方法 or 属性: setRequestResult(result: RequestResult): void;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest
方法 or 属性: function getRequestInfo(want: Want): RequestInfo;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.dialogRequest
类名: dialogRequest
方法 or 属性: function getRequestCallback(want: Want): RequestCallback;|@ohos.app.ability.dialogRequest.d.ts| +|新增|NA|模块名: ohos.app.ability.EnvironmentCallback
类名: EnvironmentCallback|@ohos.app.ability.EnvironmentCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.EnvironmentCallback
类名: EnvironmentCallback
方法 or 属性: onConfigurationUpdated(config: Configuration): void;|@ohos.app.ability.EnvironmentCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.EnvironmentCallback
类名: EnvironmentCallback
方法 or 属性: onMemoryLevel(level: AbilityConstant.MemoryLevel): void;|@ohos.app.ability.EnvironmentCallback.d.ts| +|新增|NA|模块名: ohos.app.ability.errorManager
类名: errorManager|@ohos.app.ability.errorManager.d.ts| +|新增|NA|模块名: ohos.app.ability.errorManager
类名: errorManager
方法 or 属性: function on(type: "error", observer: ErrorObserver): number;|@ohos.app.ability.errorManager.d.ts| +|新增|NA|模块名: ohos.app.ability.errorManager
类名: errorManager
方法 or 属性: function off(type: "error", observerId: number, callback: AsyncCallback\): void;|@ohos.app.ability.errorManager.d.ts| +|新增|NA|模块名: ohos.app.ability.errorManager
类名: errorManager
方法 or 属性: function off(type: "error", observerId: number): Promise\;|@ohos.app.ability.errorManager.d.ts| +|新增|NA|模块名: ohos.app.ability.ExtensionAbility
类名: ExtensionAbility|@ohos.app.ability.ExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function on(type: "mission", listener: MissionListener): number;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function off(type: "mission", listenerId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function off(type: "mission", listenerId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionInfo(deviceId: string, missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionInfo(deviceId: string, missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionInfos(deviceId: string, numMax: number, callback: AsyncCallback\>): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionInfos(deviceId: string, numMax: number): Promise\>;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionSnapShot(deviceId: string, missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getMissionSnapShot(deviceId: string, missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getLowResolutionMissionSnapShot(deviceId: string, missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function getLowResolutionMissionSnapShot(deviceId: string, missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function lockMission(missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function lockMission(missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function unlockMission(missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function unlockMission(missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function clearMission(missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function clearMission(missionId: number): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function clearAllMissions(callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function clearAllMissions(): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function moveMissionToFront(missionId: number, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function moveMissionToFront(missionId: number, options: StartOptions, callback: AsyncCallback\): void;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.missionManager
类名: missionManager
方法 or 属性: function moveMissionToFront(missionId: number, options?: StartOptions): Promise\;|@ohos.app.ability.missionManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: quickFixManager|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法 or 属性: readonly moduleName: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法 or 属性: readonly originHapHash: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法 or 属性: readonly quickFixFilePath: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly bundleName: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly bundleVersionCode: number;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly bundleVersionName: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly quickFixVersionCode: number;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly quickFixVersionName: string;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法 or 属性: readonly hapModuleQuickFixInfo: Array\;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法 or 属性: function applyQuickFix(hapModuleQuickFixFiles: Array\, callback: AsyncCallback\): void;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法 or 属性: function applyQuickFix(hapModuleQuickFixFiles: Array\): Promise\;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法 or 属性: function getApplicationQuickFixInfo(bundleName: string, callback: AsyncCallback\): void;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法 or 属性: function getApplicationQuickFixInfo(bundleName: string): Promise\;|@ohos.app.ability.quickFixManager.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: context: ServiceExtensionContext;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onCreate(want: Want): void;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onDestroy(): void;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onRequest(want: Want, startId: number): void;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onConnect(want: Want): rpc.RemoteObject \| Promise\;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onDisconnect(want: Want): void \| Promise\;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onReconnect(want: Want): void;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onConfigurationUpdate(newConfig: Configuration): void;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法 or 属性: onDump(params: Array\): Array\;|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.StartOptions
类名: StartOptions|@ohos.app.ability.StartOptions.d.ts| +|新增|NA|模块名: ohos.app.ability.StartOptions
类名: StartOptions
方法 or 属性: windowMode?: number;|@ohos.app.ability.StartOptions.d.ts| +|新增|NA|模块名: ohos.app.ability.StartOptions
类名: StartOptions
方法 or 属性: displayId?: number;|@ohos.app.ability.StartOptions.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: OnReleaseCallback|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: OnReleaseCallback
方法 or 属性: (msg: string): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: CalleeCallback|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: CalleeCallback
方法 or 属性: (indata: rpc.MessageSequence): rpc.Parcelable;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: call(method: string, data: rpc.Parcelable): Promise\;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: callWithResult(method: string, data: rpc.Parcelable): Promise\;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: release(): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: onRelease(callback: OnReleaseCallback): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: on(type: "release", callback: OnReleaseCallback): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: off(type: "release", callback: OnReleaseCallback): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Caller
方法 or 属性: off(type: "release"): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Callee|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Callee
方法 or 属性: on(method: string, callback: CalleeCallback): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: Callee
方法 or 属性: off(method: string): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: context: UIAbilityContext;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: launchWant: Want;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: lastRequestWant: Want;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: callee: Callee;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onCreate(want: Want, param: AbilityConstant.LaunchParam): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onWindowStageCreate(windowStage: window.WindowStage): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onWindowStageDestroy(): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onWindowStageRestore(windowStage: window.WindowStage): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onDestroy(): void \| Promise\;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onForeground(): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onBackground(): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onContinue(wantParam: { [key: string]: Object }): AbilityConstant.OnContinueResult;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onNewWant(want: Want, launchParams: AbilityConstant.LaunchParam): void;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onDump(params: Array\): Array\;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法 or 属性: onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: Object}): AbilityConstant.OnSaveResult;|@ohos.app.ability.UIAbility.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: bundleName?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: abilityName?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: deviceId?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: uri?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: type?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: flags?: number;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: action?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: parameters?: {[key: string]: Object};|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: entities?: Array\;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.Want
类名: Want
方法 or 属性: moduleName?: string;|@ohos.app.ability.Want.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getBundleName(agent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getBundleName(agent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getUid(agent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getUid(agent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getWant(agent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getWant(agent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function cancel(agent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function cancel(agent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function trigger(agent: WantAgent, triggerInfo: TriggerInfo, callback?: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function equal(agent: WantAgent, otherAgent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function equal(agent: WantAgent, otherAgent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getWantAgent(info: WantAgentInfo, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getWantAgent(info: WantAgentInfo): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getOperationType(agent: WantAgent, callback: AsyncCallback\): void;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法 or 属性: function getOperationType(agent: WantAgent): Promise\;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: ONE_TIME_FLAG = 0|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: NO_BUILD_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: CANCEL_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: UPDATE_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: CONSTANT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: REPLACE_ELEMENT|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: REPLACE_ACTION|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: REPLACE_URI|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: REPLACE_ENTITIES|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法 or 属性: REPLACE_BUNDLE|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType
方法 or 属性: UNKNOWN_TYPE = 0|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType
方法 or 属性: START_ABILITY|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType
方法 or 属性: START_ABILITIES|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType
方法 or 属性: START_SERVICE|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: OperationType
方法 or 属性: SEND_COMMON_EVENT|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法 or 属性: info: WantAgent;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法 or 属性: want: Want;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法 or 属性: finalCode: number;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法 or 属性: finalData: string;|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法 or 属性: extraInfo?: { [key: string]: Object };|@ohos.app.ability.wantAgent.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: wantConstant|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: DLP_PARAMS_SANDBOX = "ohos.dlp.params.sandbox"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: DLP_PARAMS_BUNDLE_NAME = "ohos.dlp.params.bundleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: DLP_PARAMS_MODULE_NAME = "ohos.dlp.params.moduleName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: DLP_PARAMS_ABILITY_NAME = "ohos.dlp.params.abilityName"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: DLP_PARAMS_INDEX = "ohos.dlp.params.index"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Params
方法 or 属性: ABILITY_BACK_TO_OTHER_MISSION_STACK = "ability.params.backToOtherMissionStack"|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Flags|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性: FLAG_AUTH_READ_URI_PERMISSION = 0x00000001|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性: FLAG_AUTH_WRITE_URI_PERMISSION = 0x00000002|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.ability.wantConstant
类名: Flags
方法 or 属性: FLAG_INSTALL_ON_DEMAND = 0x00000800|@ohos.app.ability.wantConstant.d.ts| +|新增|NA|模块名: ohos.app.form.formBindingData
类名: formBindingData|@ohos.app.form.formBindingData.d.ts| +|新增|NA|模块名: ohos.app.form.formBindingData
类名: formBindingData
方法 or 属性: function createFormBindingData(obj?: Object \| string): FormBindingData;|@ohos.app.form.formBindingData.d.ts| +|新增|NA|模块名: ohos.app.form.formBindingData
类名: FormBindingData|@ohos.app.form.formBindingData.d.ts| +|新增|NA|模块名: ohos.app.form.formBindingData
类名: FormBindingData
方法 or 属性: data: Object|@ohos.app.form.formBindingData.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: context: FormExtensionContext;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onAddForm(want: Want): formBindingData.FormBindingData;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onCastToNormalForm(formId: string): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onUpdateForm(formId: string): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onChangeFormVisibility(newStatus: { [key: string]: number }): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onFormEvent(formId: string, message: string): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onRemoveForm(formId: string): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onConfigurationUpdate(newConfig: Configuration): void;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onAcquireFormState?(want: Want): formInfo.FormState;|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法 or 属性: onShareForm?(formId: string): { [key: string]: Object };|@ohos.app.form.FormExtensionAbility.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function deleteForm(formId: string, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function deleteForm(formId: string): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function releaseForm(formId: string, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function releaseForm(formId: string, isReleaseCache: boolean, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function releaseForm(formId: string, isReleaseCache?: boolean): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function requestForm(formId: string, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function requestForm(formId: string): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function castToNormalForm(formId: string, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function castToNormalForm(formId: string): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyVisibleForms(formIds: Array\, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyVisibleForms(formIds: Array\): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyInvisibleForms(formIds: Array\, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyInvisibleForms(formIds: Array\): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function enableFormsUpdate(formIds: Array\, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function enableFormsUpdate(formIds: Array\): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function disableFormsUpdate(formIds: Array\, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function disableFormsUpdate(formIds: Array\): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function isSystemReady(callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function isSystemReady(): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function getAllFormsInfo(callback: AsyncCallback\>): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function getAllFormsInfo(): Promise\>;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function getFormsInfo(bundleName: string, callback: AsyncCallback\>): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function getFormsInfo(bundleName: string, moduleName: string, callback: AsyncCallback\>): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function getFormsInfo(bundleName: string, moduleName?: string): Promise\>;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function deleteInvalidForms(formIds: Array\, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function deleteInvalidForms(formIds: Array\): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function acquireFormState(want: Want, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function acquireFormState(want: Want): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function on(type: "formUninstall", callback: Callback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function off(type: "formUninstall", callback?: Callback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsVisible(formIds: Array\, isVisible: boolean, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsVisible(formIds: Array\, isVisible: boolean): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsEnableUpdate(formIds: Array\, isEnableUpdate: boolean, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsEnableUpdate(formIds: Array\, isEnableUpdate: boolean): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function shareForm(formId: string, deviceId: string, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function shareForm(formId: string, deviceId: string): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsPrivacyProtected(formIds: Array\, isProtected: boolean, callback: AsyncCallback\): void;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formHost
类名: formHost
方法 or 属性: function notifyFormsPrivacyProtected(formIds: Array\, isProtected: boolean): Promise\;|@ohos.app.form.formHost.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: formInfo|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: bundleName: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: moduleName: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: abilityName: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: name: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: description: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: type: FormType;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: jsComponentName: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: colorMode: ColorMode;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: isDefault: boolean;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: updateEnabled: boolean;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: formVisibleNotify: boolean;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: scheduledUpdateTime: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: formConfigAbility: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: updateDuration: number;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: defaultDimension: number;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: supportDimensions: Array\;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfo
方法 or 属性: customizeData: {[key: string]: [value: string]};|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormType|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormType
方法 or 属性: JS = 1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormType
方法 or 属性: eTS = 2|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: ColorMode|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: ColorMode
方法 or 属性: MODE_AUTO = -1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: ColorMode
方法 or 属性: MODE_DARK = 0|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: ColorMode
方法 or 属性: MODE_LIGHT = 1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormStateInfo|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormStateInfo
方法 or 属性: formState: FormState;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormStateInfo
方法 or 属性: want: Want;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormState|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormState
方法 or 属性: UNKNOWN = -1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormState
方法 or 属性: DEFAULT = 0|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormState
方法 or 属性: READY = 1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: IDENTITY_KEY = "ohos.extra.param.key.form_identity"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: DIMENSION_KEY = "ohos.extra.param.key.form_dimension"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: NAME_KEY = "ohos.extra.param.key.form_name"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: MODULE_NAME_KEY = "ohos.extra.param.key.module_name"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: WIDTH_KEY = "ohos.extra.param.key.form_width"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: HEIGHT_KEY = "ohos.extra.param.key.form_height"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: TEMPORARY_KEY = "ohos.extra.param.key.form_temporary"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: BUNDLE_NAME_KEY = "ohos.extra.param.key.bundle_name"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: ABILITY_NAME_KEY = "ohos.extra.param.key.ability_name"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormParam
方法 or 属性: DEVICE_ID_KEY = "ohos.extra.param.key.device_id"|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfoFilter|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormInfoFilter
方法 or 属性: moduleName?: string;|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension
方法 or 属性: Dimension_1_2 = 1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension
方法 or 属性: Dimension_2_2|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension
方法 or 属性: Dimension_2_4|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension
方法 or 属性: Dimension_4_4|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: FormDimension
方法 or 属性: Dimension_2_1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: VisibilityType|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: VisibilityType
方法 or 属性: FORM_VISIBLE = 1|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formInfo
类名: VisibilityType
方法 or 属性: FORM_INVISIBLE|@ohos.app.form.formInfo.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function setFormNextRefreshTime(formId: string, minute: number, callback: AsyncCallback\): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function setFormNextRefreshTime(formId: string, minute: number): Promise\;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function updateForm(formId: string, formBindingData: formBindingData.FormBindingData, callback: AsyncCallback\): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function updateForm(formId: string, formBindingData: formBindingData.FormBindingData): Promise\;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function getFormsInfo(filter: formInfo.FormInfoFilter, callback: AsyncCallback\>): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function getFormsInfo(callback: AsyncCallback\>): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function getFormsInfo(filter?: formInfo.FormInfoFilter): Promise\>;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function requestPublishForm(want: Want, formBindingData: formBindingData.FormBindingData, callback: AsyncCallback\): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function requestPublishForm(want: Want, callback: AsyncCallback\): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function requestPublishForm(want: Want, formBindingData?: formBindingData.FormBindingData): Promise\;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function isRequestPublishFormSupported(callback: AsyncCallback\): void;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.app.form.formProvider
类名: formProvider
方法 or 属性: function isRequestPublishFormSupported(): Promise\;|@ohos.app.form.formProvider.d.ts| +|新增|NA|模块名: ohos.application.formError
类名: FormError
方法 or 属性: ERR_DISTRIBUTED_SCHEDULE_FAILED = 37|@ohos.application.formError.d.ts| +|新增|NA|模块名: ohos.application.StaticSubscriberExtensionAbility
类名: StaticSubscriberExtensionAbility|@ohos.application.StaticSubscriberExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.StaticSubscriberExtensionAbility
类名: StaticSubscriberExtensionAbility
方法 or 属性: onReceiveEvent(event: CommonEventData): void;|@ohos.application.StaticSubscriberExtensionAbility.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function on(type: "deviceSelected", token: number, callback: Callback\>): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function off(type: "deviceSelected", token: number): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function on(type: "deviceUnselected", token: number, callback: Callback\>): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function off(type: "deviceUnselected", token: number): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function registerContinuation(callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function registerContinuation(options: ContinuationExtraParams, callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function registerContinuation(options?: ContinuationExtraParams): Promise\;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function unregisterContinuation(token: number, callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function unregisterContinuation(token: number): Promise\;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState): Promise\;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function startContinuationDeviceManager(token: number, callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function startContinuationDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback\): void;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|类名:continuationManager
方法or属性:function startContinuationDeviceManager(token: number, options?: ContinuationExtraParams): Promise\;|@ohos.continuation.continuationManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function startSyncRemoteMissions(parameter: MissionParameter, callback: AsyncCallback\): void;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function startSyncRemoteMissions(parameter: MissionParameter): Promise\;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function stopSyncRemoteMissions(parameter: MissionDeviceInfo, callback: AsyncCallback\): void;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function stopSyncRemoteMissions(parameter: MissionDeviceInfo): Promise\;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function registerMissionListener(parameter: MissionDeviceInfo, options: MissionCallback, callback: AsyncCallback\): void;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function registerMissionListener(parameter: MissionDeviceInfo, options: MissionCallback): Promise\;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function unRegisterMissionListener(parameter: MissionDeviceInfo, callback: AsyncCallback\): void;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function unRegisterMissionListener(parameter: MissionDeviceInfo): Promise\;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback, callback: AsyncCallback\): void;|@ohos.distributedMissionManager.d.ts| +|新增|NA|模块名: ohos.distributedMissionManager
类名: distributedMissionManager
方法 or 属性: function continueMission(parameter: ContinueDeviceInfo, options: ContinueCallback): Promise\;|@ohos.distributedMissionManager.d.ts| +|新增|NA|类名:Context
方法or属性:getExternalCacheDir(callback: AsyncCallback\): void|context.d.ts| +|新增|NA|类名:Context
方法or属性:getExternalCacheDir(): Promise\;|context.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityMonitor(monitor: AbilityMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: addAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityMonitor(monitor: AbilityMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: removeAbilityStageMonitor(monitor: AbilityStageMonitor): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, timeout: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityMonitor(monitor: AbilityMonitor, timeout?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: waitAbilityStageMonitor(monitor: AbilityStageMonitor, timeout?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getAppContext(): Context;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getAbilityState(ability: UIAbility): number;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getCurrentTopAbility(callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: getCurrentTopAbility(): Promise\|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: startAbility(want: Want, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: startAbility(want: Want): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityForeground(ability: UIAbility, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityForeground(ability: UIAbility): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityBackground(ability: UIAbility, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: doAbilityBackground(ability: UIAbility): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: print(msg: string, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: print(msg: string): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: printSync(msg: string): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, timeoutSecs: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: executeShellCommand(cmd: string, timeoutSecs?: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: finishTest(msg: string, code: number, callback: AsyncCallback\): void;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityDelegator
类名: AbilityDelegator
方法 or 属性: finishTest(msg: string, code: number): Promise\;|AbilityDelegator.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: abilityName: string;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: moduleName?: string;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityCreate?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityForeground?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityBackground?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onAbilityDestroy?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageCreate?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageRestore?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityMonitor
类名: AbilityMonitor
方法 or 属性: onWindowStageDestroy?:(ability: UIAbility) => void;|AbilityMonitor.d.ts| +|新增|NA|模块名: AbilityStageContext
类名: AbilityStageContext|AbilityStageContext.d.ts| +|新增|NA|模块名: AbilityStageContext
类名: AbilityStageContext
方法 or 属性: currentHapModuleInfo: HapModuleInfo;|AbilityStageContext.d.ts| +|新增|NA|模块名: AbilityStageContext
类名: AbilityStageContext
方法 or 属性: config: Configuration;|AbilityStageContext.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor|AbilityStageMonitor.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性: moduleName: string;|AbilityStageMonitor.d.ts| +|新增|NA|模块名: AbilityStageMonitor
类名: AbilityStageMonitor
方法 or 属性: srcEntrance: string;|AbilityStageMonitor.d.ts| +|新增|NA|模块名: AbilityStateData
类名: AbilityStateData
方法 or 属性: moduleName: string;|AbilityStateData.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: on(type: "abilityLifecycle", callback: AbilityLifecycleCallback): number;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: off(type: "abilityLifecycle", callbackId: number, callback: AsyncCallback\): void;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: off(type: "abilityLifecycle", callbackId: number): Promise\;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: on(type: "environment", callback: EnvironmentCallback): number;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: off(type: "environment", callbackId: number, callback: AsyncCallback\): void;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: off(type: "environment", callbackId: number): Promise\;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: getRunningProcessInformation(): Promise\>;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: getRunningProcessInformation(callback: AsyncCallback\>): void;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: killAllProcesses(): Promise\;|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationContext
类名: ApplicationContext
方法 or 属性: killAllProcesses(callback: AsyncCallback\);|ApplicationContext.d.ts| +|新增|NA|模块名: ApplicationStateObserver
类名: ApplicationStateObserver
方法 or 属性: onProcessStateChanged(processData: ProcessData): void;|ApplicationStateObserver.d.ts| +|新增|NA|模块名: Context
类名: Context|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: resourceManager: resmgr.ResourceManager;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: applicationInfo: ApplicationInfo;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: cacheDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: tempDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: filesDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: databaseDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: preferencesDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: bundleCodeDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: distributedFilesDir: string;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: eventHub: EventHub;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: area: contextConstant.AreaMode;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: createBundleContext(bundleName: string): Context;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: createModuleContext(moduleName: string): Context;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: createModuleContext(bundleName: string, moduleName: string): Context;|Context.d.ts| +|新增|NA|模块名: Context
类名: Context
方法 or 属性: getApplicationContext(): ApplicationContext;|Context.d.ts| +|新增|NA|模块名: ContinueCallback
类名: ContinueCallback|ContinueCallback.d.ts| +|新增|NA|模块名: ContinueCallback
类名: ContinueCallback
方法 or 属性: onContinueDone(result: number): void;|ContinueCallback.d.ts| +|新增|NA|模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo|ContinueDeviceInfo.d.ts| +|新增|NA|模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法 or 属性: srcDeviceId: string;|ContinueDeviceInfo.d.ts| +|新增|NA|模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法 or 属性: dstDeviceId: string;|ContinueDeviceInfo.d.ts| +|新增|NA|模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法 or 属性: missionId: number;|ContinueDeviceInfo.d.ts| +|新增|NA|模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法 or 属性: wantParam: {[key: string]: any};|ContinueDeviceInfo.d.ts| +|新增|NA|模块名: ErrorObserver
类名: ErrorObserver|ErrorObserver.d.ts| +|新增|NA|模块名: ErrorObserver
类名: ErrorObserver
方法 or 属性: onUnhandledException(errMsg: string): void;|ErrorObserver.d.ts| +|新增|NA|模块名: EventHub
类名: EventHub|EventHub.d.ts| +|新增|NA|模块名: EventHub
类名: EventHub
方法 or 属性: on(event: string, callback: Function): void|EventHub.d.ts| +|新增|NA|模块名: EventHub
类名: EventHub
方法 or 属性: off(event: string, callback?: Function): void|EventHub.d.ts| +|新增|NA|模块名: EventHub
类名: EventHub
方法 or 属性: emit(event: string, ...args: Object[]): void|EventHub.d.ts| +|新增|NA|模块名: ExtensionContext
类名: ExtensionContext|ExtensionContext.d.ts| +|新增|NA|模块名: ExtensionContext
类名: ExtensionContext
方法 or 属性: currentHapModuleInfo: HapModuleInfo;|ExtensionContext.d.ts| +|新增|NA|模块名: ExtensionContext
类名: ExtensionContext
方法 or 属性: config: Configuration;|ExtensionContext.d.ts| +|新增|NA|模块名: ExtensionContext
类名: ExtensionContext
方法 or 属性: extensionAbilityInfo: ExtensionAbilityInfo;|ExtensionContext.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: extension: ElementName;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: pid: number;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: uid: number;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: processName: string;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: startTime: number;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: clientPackage: Array\;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: ExtensionRunningInfo
类名: ExtensionRunningInfo
方法 or 属性: type: bundle.ExtensionAbilityType;|ExtensionRunningInfo.d.ts| +|新增|NA|模块名: FormExtensionContext
类名: FormExtensionContext|FormExtensionContext.d.ts| +|新增|NA|模块名: FormExtensionContext
类名: FormExtensionContext
方法 or 属性: startAbility(want: Want, callback: AsyncCallback\): void;|FormExtensionContext.d.ts| +|新增|NA|模块名: FormExtensionContext
类名: FormExtensionContext
方法 or 属性: startAbility(want: Want): Promise\;|FormExtensionContext.d.ts| +|新增|NA|模块名: MissionCallbacks
类名: MissionCallback|MissionCallbacks.d.ts| +|新增|NA|模块名: MissionCallbacks
类名: MissionCallback
方法 or 属性: notifyMissionsChanged(deviceId: string): void;|MissionCallbacks.d.ts| +|新增|NA|模块名: MissionCallbacks
类名: MissionCallback
方法 or 属性: notifySnapshot(deviceId: string, mission: number): void;|MissionCallbacks.d.ts| +|新增|NA|模块名: MissionCallbacks
类名: MissionCallback
方法 or 属性: notifyNetDisconnect(deviceId: string, state: number): void;|MissionCallbacks.d.ts| +|新增|NA|模块名: MissionDeviceInfo
类名: MissionDeviceInfo|MissionDeviceInfo.d.ts| +|新增|NA|模块名: MissionDeviceInfo
类名: MissionDeviceInfo
方法 or 属性: deviceId: string;|MissionDeviceInfo.d.ts| +|新增|NA|模块名: MissionListener
类名: MissionListener
方法 or 属性: onMissionLabelUpdated(mission: number): void;|MissionListener.d.ts| +|新增|NA|模块名: MissionListener
类名: MissionListener
方法 or 属性: onMissionIconUpdated(mission: number, icon: image.PixelMap): void;|MissionListener.d.ts| +|新增|NA|模块名: MissionListener
类名: MissionListener
方法 or 属性: onMissionClosed(mission: number): void;|MissionListener.d.ts| +|新增|NA|模块名: MissionParameter
类名: MissionParameter|MissionParameter.d.ts| +|新增|NA|模块名: MissionParameter
类名: MissionParameter
方法 or 属性: deviceId: string;|MissionParameter.d.ts| +|新增|NA|模块名: MissionParameter
类名: MissionParameter
方法 or 属性: fixConflict: boolean;|MissionParameter.d.ts| +|新增|NA|模块名: MissionParameter
类名: MissionParameter
方法 or 属性: tag: number;|MissionParameter.d.ts| +|新增|NA|类名:ProcessData
方法or属性:state: number;|ProcessData.d.ts| +|新增|NA|类名:ProcessData
方法or属性:isContinuousTask: boolean;|ProcessData.d.ts| +|新增|NA|类名:ProcessData
方法or属性:isKeepAlive: boolean;|ProcessData.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: pid: number;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: uid: number;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: processName: string;|ProcessInformation.d.ts| +|新增|NA|模块名: ProcessInformation
类名: ProcessInformation
方法 or 属性: bundleNames: Array\;|ProcessInformation.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbility(want: Want, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbility(want: Want, options?: StartOptions): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startServiceExtensionAbility(want: Want, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startServiceExtensionAbility(want: Want): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: stopServiceExtensionAbility(want: Want, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: stopServiceExtensionAbility(want: Want): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: stopServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: stopServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: terminateSelf(callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: terminateSelf(): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: connectServiceExtensionAbilityWithAccount(want: Want, accountId: number, options: ConnectOptions): number;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: disconnectServiceExtensionAbility(connection: number): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startAbilityByCall(want: Want): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startRecentAbility(want: Want, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|ServiceExtensionContext.d.ts| +|新增|NA|模块名: ServiceExtensionContext
类名: ServiceExtensionContext
方法 or 属性: startRecentAbility(want: Want, options?: StartOptions): Promise\;|ServiceExtensionContext.d.ts| +|新增|NA|类名:ShellCmdResult
方法or属性:stdResult: string;|shellCmdResult.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: abilityInfo: AbilityInfo;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: currentHapModuleInfo: HapModuleInfo;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: config: Configuration;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbility(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbility(want: Want, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityByCall(want: Want): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResult(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResult(want: Want, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResultWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResultWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startAbilityForResultWithAccount(want: Want, accountId: number, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startServiceExtensionAbility(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startServiceExtensionAbility(want: Want): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: stopServiceExtensionAbility(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: stopServiceExtensionAbility(want: Want): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: stopServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: stopServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: terminateSelf(callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: terminateSelf(): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: terminateSelfWithResult(parameter: AbilityResult, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: terminateSelfWithResult(parameter: AbilityResult): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: connectServiceExtensionAbilityWithAccount(want: Want, accountId: number, options: ConnectOptions): number;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: disconnectServiceExtensionAbility(connection: number): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: setMissionLabel(label: string, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: setMissionLabel(label: string): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: setMissionIcon(icon: image.PixelMap, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: setMissionIcon(icon: image.PixelMap): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: restoreWindowStage(localStorage: LocalStorage): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: isTerminating(): boolean;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startRecentAbility(want: Want, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: startRecentAbility(want: Want, options?: StartOptions): Promise\;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: requestDialogService(want: Want, result: AsyncCallback\): void;|UIAbilityContext.d.ts| +|新增|NA|模块名: UIAbilityContext
类名: UIAbilityContext
方法 or 属性: requestDialogService(want: Want): Promise\;|UIAbilityContext.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:print(msg: string, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:print(msg: string): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, timeoutSecs: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:executeShellCommand(cmd: string, timeoutSecs?: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:finishTest(msg: string, code: number, callback: AsyncCallback\): void;|NA|abilityDelegator.d.ts| +|删除|模块名: abilityDelegator
类名: AbilityDelegator
方法 or 属性:finishTest(msg: string, code: number): Promise\;|NA|abilityDelegator.d.ts| +|删除|模块名:BaseContext
类名:BaseContext|NA|BaseContext.d.ts| +|访问级别有变化|类名:abilityManager
访问级别:公开API|类名:abilityManager
访问级别:系统API|@ohos.application.abilityManager.d.ts| +|废弃版本有变化|类名:dataUriUtils
废弃版本:N/A|类名:dataUriUtils
废弃版本:9
代替接口:@ohos.app.ability.dataUriUtils.d.ts |@ohos.ability.dataUriUtils.d.ts| +|废弃版本有变化|类名:wantConstant
废弃版本:N/A|类名:wantConstant
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:Action
方法 or 属性:ACTION_APP_ACCOUNT_OAUTH = "ohos.account.appAccount.action.oauth"
废弃版本:N/A|类名:Action
方法 or 属性:ACTION_APP_ACCOUNT_OAUTH = "ohos.account.appAccount.action.oauth"
废弃版本:9
代替接口:wantConstant.Action|@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:abilityDelegatorRegistry
废弃版本:N/A|类名:abilityDelegatorRegistry
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|类名:abilityManager
废弃版本:N/A|类名:abilityManager
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|类名:appManager
废弃版本:N/A|类名:appManager
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:appManager
方法 or 属性:function getProcessRunningInfos(): Promise\>;
废弃版本:N/A|类名:appManager
方法 or 属性:function getProcessRunningInfos(): Promise\>;
废弃版本:9
代替接口:ohos.app.ability.appManager|@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:appManager
方法 or 属性:function getProcessRunningInfos(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:appManager
方法 or 属性:function getProcessRunningInfos(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.app.ability.appManager|@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:Configuration
废弃版本:N/A|类名:Configuration
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|类名:ConfigurationConstant
废弃版本:N/A|类名:ConfigurationConstant
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|类名:formBindingData
废弃版本:N/A|类名:formBindingData
废弃版本:9
代替接口:ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts| +|废弃版本有变化|类名:formHost
废弃版本:N/A|类名:formHost
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|类名:formInfo
废弃版本:N/A|类名:formInfo
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:formProvider
废弃版本:N/A|类名:formProvider
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|类名:missionManager
废弃版本:N/A|类名:missionManager
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|类名:Want
废弃版本:N/A|类名:Want
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function on(type: "deviceConnect", callback: Callback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function on(type: "deviceConnect", callback: Callback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function on(type: "deviceDisconnect", callback: Callback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function on(type: "deviceDisconnect", callback: Callback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function register(callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function register(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function register(options: ContinuationExtraParams, callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function register(options: ContinuationExtraParams, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function register(options?: ContinuationExtraParams): Promise\;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function register(options?: ContinuationExtraParams): Promise\;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function unregister(token: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function unregister(token: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function unregister(token: number): Promise\;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function unregister(token: number): Promise\;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function updateConnectStatus(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function updateConnectStatus(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function updateConnectStatus(token: number, deviceId: string, status: DeviceConnectState): Promise\;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function updateConnectStatus(token: number, deviceId: string, status: DeviceConnectState): Promise\;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback\): void;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, options?: ContinuationExtraParams): Promise\;
废弃版本:N/A|类名:continuationManager
方法 or 属性:function startDeviceManager(token: number, options?: ContinuationExtraParams): Promise\;
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:wantAgent
废弃版本:N/A|类名:wantAgent
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|类名:Want
废弃版本:N/A|类名:Want
废弃版本:9
代替接口:ohos.app.ability.Want |want.d.ts| +|废弃版本有变化|类名:Context
方法 or 属性:setShowOnLockScreen(show: boolean, callback: AsyncCallback\): void
废弃版本:N/A|类名:Context
方法 or 属性:setShowOnLockScreen(show: boolean, callback: AsyncCallback\): void
废弃版本:9
代替接口:ohos.window|context.d.ts| +|废弃版本有变化|类名:Context
方法 or 属性:setShowOnLockScreen(show: boolean): Promise\;
废弃版本:N/A|类名:Context
方法 or 属性:setShowOnLockScreen(show: boolean): Promise\;
废弃版本:9
代替接口:ohos.window|context.d.ts| +|废弃版本有变化|类名:ProcessRunningInfo
废弃版本:N/A|类名:ProcessRunningInfo
废弃版本:9
代替接口:ProcessInformation |ProcessRunningInfo.d.ts| +|废弃版本有变化|类名:ProcessRunningInfo
方法 or 属性:pid: number;
废弃版本:N/A|类名:ProcessRunningInfo
方法 or 属性:pid: number;
废弃版本:9
代替接口:ProcessInformation.pid |ProcessRunningInfo.d.ts| +|废弃版本有变化|类名:ProcessRunningInfo
方法 or 属性:uid: number;
废弃版本:N/A|类名:ProcessRunningInfo
方法 or 属性:uid: number;
废弃版本:9
代替接口:ProcessInformation.uid |ProcessRunningInfo.d.ts| +|废弃版本有变化|类名:ProcessRunningInfo
方法 or 属性:processName: string;
废弃版本:N/A|类名:ProcessRunningInfo
方法 or 属性:processName: string;
废弃版本:9
代替接口:ProcessInformation.processName |ProcessRunningInfo.d.ts| +|废弃版本有变化|类名:ProcessRunningInfo
方法 or 属性:bundleNames: Array\;
废弃版本:N/A|类名:ProcessRunningInfo
方法 or 属性:bundleNames: Array\;
废弃版本:9
代替接口:ProcessInformation.bundleNames |ProcessRunningInfo.d.ts| +|权限有变化|类名:formHost
方法 or 属性:function acquireFormState(want: Want, callback: AsyncCallback\): void;
权限:ohos.permission.GET_BUNDLE_INFO and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED.|类名:formHost
方法 or 属性:function acquireFormState(want: Want, callback: AsyncCallback\): void;
权限:ohos.permission.REQUIRE_FORM and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.application.formHost.d.ts| +|权限有变化|类名:formHost
方法 or 属性:function acquireFormState(want: Want): Promise\;
权限:ohos.permission.GET_BUNDLE_INFO and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED.|类名:formHost
方法 or 属性:function acquireFormState(want: Want): Promise\;
权限:ohos.permission.REQUIRE_FORM and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.application.formHost.d.ts| +|SysCap有变化|类名:ProcessData
SysCap:SystemCapability.Ability.AbilityRuntime.Mission|类名:ProcessData
SysCap:SystemCapability.Ability.AbilityRuntime.Core|ProcessData.d.ts| +|SysCap有变化|类名:ProcessData
方法 or 属性:bundleName: string;
SysCap:SystemCapability.Ability.AbilityRuntime.Mission|类名:ProcessData
方法 or 属性:bundleName: string;
SysCap:SystemCapability.Ability.AbilityRuntime.Core|ProcessData.d.ts| +|SysCap有变化|类名:ProcessData
方法 or 属性:pid: number;
SysCap:SystemCapability.Ability.AbilityRuntime.Mission|类名:ProcessData
方法 or 属性:pid: number;
SysCap:SystemCapability.Ability.AbilityRuntime.Core|ProcessData.d.ts| +|SysCap有变化|类名:ProcessData
方法 or 属性:uid: number;
SysCap:SystemCapability.Ability.AbilityRuntime.Mission|类名:ProcessData
方法 or 属性:uid: number;
SysCap:SystemCapability.Ability.AbilityRuntime.Core|ProcessData.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-accessibility.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-accessibility.md new file mode 100644 index 0000000000000000000000000000000000000000..36579874a03825d4869364af92b23969f6a45964 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-accessibility.md @@ -0,0 +1,109 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.accessibility.config
类名: config|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: DaltonizationColorFilter
方法 or 属性: type DaltonizationColorFilter = 'Normal' \| 'Protanomaly' \| 'Deuteranomaly' \| 'Tritanomaly';|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: DaltonizationColorFilter
方法 or 属性: type DaltonizationColorFilter = 'Normal' \| 'Protanomaly' \| 'Deuteranomaly' \| 'Tritanomaly';|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: DaltonizationColorFilter
方法 or 属性: type DaltonizationColorFilter = 'Normal' \| 'Protanomaly' \| 'Deuteranomaly' \| 'Tritanomaly';|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: DaltonizationColorFilter
方法 or 属性: type DaltonizationColorFilter = 'Normal' \| 'Protanomaly' \| 'Deuteranomaly' \| 'Tritanomaly';|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var highContrastText: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var invertColor: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var daltonizationColorFilter: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var contentTimeout: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var animationOff: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var brightnessDiscount: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var mouseKey: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var mouseAutoClick: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var shortkey: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var shortkeyTarget: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var captions: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: var captionsStyle: Config\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function enableAbility(name: string, capability: Array\): Promise\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function enableAbility(name: string, capability: Array\, callback: AsyncCallback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function disableAbility(name: string): Promise\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function disableAbility(name: string, callback: AsyncCallback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function on(type: 'enabledAccessibilityExtensionListChange', callback: Callback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: config
方法 or 属性: function off(type: 'enabledAccessibilityExtensionListChange', callback?: Callback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: set(value: T): Promise\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: set(value: T, callback: AsyncCallback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: get(): Promise\;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: get(callback: AsyncCallback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: on(callback: Callback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|模块名: ohos.accessibility.config
类名: Config
方法 or 属性: off(callback?: Callback\): void;|@ohos.accessibility.config.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:AbilityType
方法or属性:type AbilityType = 'audible' \| 'generic' \| 'haptic' \| 'spoken' \| 'visual' \| 'all';|@ohos.accessibility.d.ts| +|新增|NA|类名:accessibility
方法or属性:function getAccessibilityExtensionList(abilityType: AbilityType, stateType: AbilityState): Promise\>;|@ohos.accessibility.d.ts| +|新增|NA|类名:accessibility
方法or属性:function getAccessibilityExtensionList(abilityType: AbilityType, stateType: AbilityState, callback: AsyncCallback\>): void;|@ohos.accessibility.d.ts| +|新增|NA|类名:accessibility
方法or属性:function sendAccessibilityEvent(event: EventInfo, callback: AsyncCallback\): void;|@ohos.accessibility.d.ts| +|新增|NA|类名:accessibility
方法or属性:function sendAccessibilityEvent(event: EventInfo): Promise\;|@ohos.accessibility.d.ts| +|新增|NA|模块名: ohos.accessibility
类名: AccessibilityAbilityInfo
方法 or 属性:readonly targetBundleNames: Array\;|@ohos.accessibility.d.ts| +|新增|NA|类名:AccessibilityAbilityInfo
方法or属性:readonly targetBundleNames: Array\;|@ohos.accessibility.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePath
类名: GesturePath|@ohos.accessibility.GesturePath.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法 or 属性: constructor(durationTime: number);|@ohos.accessibility.GesturePath.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法 or 属性: points: Array\;|@ohos.accessibility.GesturePath.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法 or 属性: durationTime: number;|@ohos.accessibility.GesturePath.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePoint
类名: GesturePoint|@ohos.accessibility.GesturePoint.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法 or 属性: constructor(positionX: number, positionY: number);|@ohos.accessibility.GesturePoint.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法 or 属性: positionX: number;|@ohos.accessibility.GesturePoint.d.ts| +|新增|NA|模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法 or 属性: positionY: number;|@ohos.accessibility.GesturePoint.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility
方法 or 属性: context: AccessibilityExtensionContext;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility
方法 or 属性: onConnect(): void;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility
方法 or 属性: onDisconnect(): void;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility
方法 or 属性: onAccessibilityEvent(event: AccessibilityEvent): void;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityExtensionAbility
方法 or 属性: onKeyEvent(keyEvent: KeyEvent): boolean;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityEvent|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityEvent
方法 or 属性: eventType: accessibility.EventType \| accessibility.WindowUpdateType \|
TouchGuideType \| GestureType \| PageUpdateType;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityEvent
方法 or 属性: target?: AccessibilityElement;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.AccessibilityExtensionAbility
类名: AccessibilityEvent
方法 or 属性: timeStamp?: number;|@ohos.application.AccessibilityExtensionAbility.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: setTargetBundleName(targetNames: Array\): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: setTargetBundleName(targetNames: Array\, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getFocusElement(isAccessibilityFocus?: boolean): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getFocusElement(callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getFocusElement(isAccessibilityFocus: boolean, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindowRootElement(windowId?: number): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindowRootElement(callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindowRootElement(windowId: number, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindows(displayId?: number): Promise\>;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindows(callback: AsyncCallback\>): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: getWindows(displayId: number, callback: AsyncCallback\>): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: injectGesture(gesturePath: GesturePath): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityExtensionContext
方法 or 属性: injectGesture(gesturePath: GesturePath, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: attributeNames\(): Promise\>;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: attributeNames\(callback: AsyncCallback\>): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: attributeValue\(attributeName: T): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: attributeValue\(attributeName: T,
callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: actionNames(): Promise\>;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: actionNames(callback: AsyncCallback\>): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: performAction(actionName: string, parameters?: object): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: performAction(actionName: string, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: performAction(actionName: string, parameters: object, callback: AsyncCallback\): void;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'content', condition: string): Promise\>;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'content', condition: string, callback: AsyncCallback\>): void|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'focusType', condition: FocusType): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'focusType', condition: FocusType, callback: AsyncCallback\): void|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'focusDirection', condition: FocusDirection): Promise\;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: AccessibilityElement
方法 or 属性: findElement(type: 'focusDirection', condition: FocusDirection, callback: AsyncCallback\): void|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: Rect|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: Rect
方法 or 属性: left: number;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: Rect
方法 or 属性: top: number;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: Rect
方法 or 属性: width: number;|AccessibilityExtensionContext.d.ts| +|新增|NA|模块名: AccessibilityExtensionContext
类名: Rect
方法 or 属性: height: number;|AccessibilityExtensionContext.d.ts| +|废弃版本有变化|类名:accessibility
方法 or 属性:function getAbilityLists(abilityType: AbilityType, stateType: AbilityState,

callback: AsyncCallback\>): void;
废弃版本:N/A|类名:accessibility
方法 or 属性:function getAbilityLists(abilityType: AbilityType, stateType: AbilityState,

callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|废弃版本有变化|类名:accessibility
方法 or 属性:function getAbilityLists(abilityType: AbilityType,

stateType: AbilityState): Promise\>;
废弃版本:N/A|类名:accessibility
方法 or 属性:function getAbilityLists(abilityType: AbilityType,

stateType: AbilityState): Promise\>;
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|废弃版本有变化|类名:accessibility
方法 or 属性:function sendEvent(event: EventInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:accessibility
方法 or 属性:function sendEvent(event: EventInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|废弃版本有变化|类名:accessibility
方法 or 属性:function sendEvent(event: EventInfo): Promise\;
废弃版本:N/A|类名:accessibility
方法 or 属性:function sendEvent(event: EventInfo): Promise\;
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:accessibility
方法 or 属性:function on(type: 'accessibilityStateChange', callback: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:accessibility
方法 or 属性:function on(type: 'touchGuideStateChange', callback: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:accessibility
方法 or 属性:function off(type: 'accessibilityStateChange', callback?: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:accessibility
方法 or 属性:function off(type: 'touchGuideStateChange', callback?: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:CaptionsManager
方法 or 属性:on(type: 'enableChange', callback: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:CaptionsManager
方法 or 属性:on(type: 'styleChange', callback: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:CaptionsManager
方法 or 属性:off(type: 'enableChange', callback?: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| +|新增(错误码)|NA|类名:CaptionsManager
方法 or 属性:off(type: 'styleChange', callback?: Callback\): void;
错误码内容: 401|@ohos.accessibility.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-account.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-account.md new file mode 100644 index 0000000000000000000000000000000000000000..037ed74a011908317b5efefa2a085321e646b93c --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-account.md @@ -0,0 +1,378 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:AppAccountManager
方法or属性:createAccount(name: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:createAccount(name: string, options: CreateAccountOptions, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:createAccount(name: string, options?: CreateAccountOptions): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:createAccountImplicitly(owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:createAccountImplicitly(owner: string, options: CreateAccountImplicitlyOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:removeAccount(name: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:removeAccount(name: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAppAccess(name: string, bundleName: string, isAccessible: boolean, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAppAccess(name: string, bundleName: string, isAccessible: boolean): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAppAccess(name: string, bundleName: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAppAccess(name: string, bundleName: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkDataSyncEnabled(name: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkDataSyncEnabled(name: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setCredential(name: string, credentialType: string, credential: string,
callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setCredential(name: string, credentialType: string, credential: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setDataSyncEnabled(name: string, isEnabled: boolean, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setDataSyncEnabled(name: string, isEnabled: boolean): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setCustomData(name: string, key: string, value: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setCustomData(name: string, key: string, value: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAccountsByOwner(owner: string, callback: AsyncCallback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAccountsByOwner(owner: string): Promise\>;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getCredential(name: string, credentialType: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getCredential(name: string, credentialType: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getCustomData(name: string, key: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getCustomData(name: string, key: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getCustomDataSync(name: string, key: string): string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:on(type: 'accountChange', owners: Array\, callback: Callback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:off(type: 'accountChange', callback?: Callback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:auth(name: string, owner: string, authType: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:auth(name: string, owner: string, authType: string, options: {[key:string]: Object}, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthToken(name: string, owner: string, authType: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthToken(name: string, owner: string, authType: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthToken(name: string, authType: string, token: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthToken(name: string, authType: string, token: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:deleteAuthToken(name: string, owner: string, authType: string, token: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:deleteAuthToken(name: string, owner: string, authType: string, token: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAuthTokenVisibility(name: string, authType: string, bundleName: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAuthTokenVisibility(name: string, authType: string, bundleName: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAllAuthTokens(name: string, owner: string, callback: AsyncCallback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAllAuthTokens(name: string, owner: string): Promise\>;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthList(name: string, authType: string, callback: AsyncCallback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthList(name: string, authType: string): Promise\>;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthCallback(sessionId: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:getAuthCallback(sessionId: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:queryAuthenticatorInfo(owner: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:queryAuthenticatorInfo(owner: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAccountLabels(name: string, owner: string, labels: Array\, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:checkAccountLabels(name: string, owner: string, labels: Array\): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:deleteCredential(name: string, credentialType: string, callback: AsyncCallback\): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:deleteCredential(name: string, credentialType: string): Promise\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:selectAccountsByOptions(options: SelectAccountsOptions, callback: AsyncCallback\>): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:selectAccountsByOptions(options: SelectAccountsOptions): Promise\>;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:verifyCredential(name: string, owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:verifyCredential(name: string, owner: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthenticatorProperties(owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AppAccountManager
方法or属性:setAuthenticatorProperties(owner: string, options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthTokenInfo|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthTokenInfo
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法 or 属性:authType: string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthTokenInfo
方法or属性:authType: string;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法 or 属性:token: string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthTokenInfo
方法or属性:token: string;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法 or 属性:account?: AppAccountInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthTokenInfo
方法or属性:account?: AppAccountInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthResult|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthResult
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthResult
方法 or 属性:account?: AppAccountInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthResult
方法or属性:account?: AppAccountInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthResult
方法 or 属性:tokenInfo?: AuthTokenInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthResult
方法or属性:tokenInfo?: AuthTokenInfo;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountOptions|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountOptions
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountOptions
方法 or 属性:customData?: {[key: string]: string};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountOptions
方法or属性:customData?: {[key: string]: string};|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountImplicitlyOptions
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法 or 属性:requiredLabels?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountImplicitlyOptions
方法or属性:requiredLabels?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法 or 属性:authType?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountImplicitlyOptions
方法or属性:authType?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法 or 属性:parameters?: {[key:string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:CreateAccountImplicitlyOptions
方法or属性:parameters?: {[key:string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SelectAccountsOptions|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SelectAccountsOptions
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SelectAccountsOptions
方法 or 属性:allowedAccounts?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SelectAccountsOptions
方法or属性:allowedAccounts?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SelectAccountsOptions
方法 or 属性:allowedOwners?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SelectAccountsOptions
方法or属性:allowedOwners?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SelectAccountsOptions
方法 or 属性:requiredLabels?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SelectAccountsOptions
方法or属性:requiredLabels?: Array\;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: VerifyCredentialOptions|@ohos.account.appAccount.d.ts| +|新增|NA|类名:VerifyCredentialOptions
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: VerifyCredentialOptions
方法 or 属性:credentialType?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:VerifyCredentialOptions
方法or属性:credentialType?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: VerifyCredentialOptions
方法 or 属性:credential?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:VerifyCredentialOptions
方法or属性:credential?: string;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: VerifyCredentialOptions
方法 or 属性:parameters?: {[key:string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:VerifyCredentialOptions
方法or属性:parameters?: {[key:string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SetPropertiesOptions|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SetPropertiesOptions
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SetPropertiesOptions
方法 or 属性:properties?: {[key: string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SetPropertiesOptions
方法or属性:properties?: {[key: string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: SetPropertiesOptions
方法 or 属性:parameters?: {[key: string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:SetPropertiesOptions
方法or属性:parameters?: {[key: string]: Object};|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:ACTION_CREATE_ACCOUNT_IMPLICITLY = "createAccountImplicitly"|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:ACTION_AUTH = "auth"|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:ACTION_VERIFY_CREDENTIAL = "verifyCredential"|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:ACTION_SET_AUTHENTICATOR_PROPERTIES = "setAuthenticatorProperties"|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:KEY_REQUIRED_LABELS = "requiredLabels"|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Constants
方法or属性:KEY_BOOLEAN_RESULT = "booleanResult"|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthCallback|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthCallback
方法or属性:|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthCallback
方法 or 属性:onResult: (code: number, result?: AuthResult) => void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthCallback
方法or属性:onResult: (code: number, result?: AuthResult) => void;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthCallback
方法 or 属性:onRequestRedirected: (request: Want) => void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthCallback
方法or属性:onRequestRedirected: (request: Want) => void;|@ohos.account.appAccount.d.ts| +|新增|NA|模块名: ohos.account.appAccount
类名: AuthCallback
方法 or 属性:onRequestContinued?: () => void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:AuthCallback
方法or属性:onRequestContinued?: () => void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:createAccountImplicitly(options: CreateAccountImplicitlyOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:auth(name: string, authType: string, options: {[key:string]: Object}, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:verifyCredential(name: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:setProperties(options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:checkAccountLabels(name: string, labels: Array\, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:checkAccountRemovable(name: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:Authenticator
方法or属性:getRemoteObject(): rpc.RemoteObject;|@ohos.account.appAccount.d.ts| +|新增|NA|类名:DistributedAccountAbility
方法or属性:getOsAccountDistributedInfo(callback: AsyncCallback\): void;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:DistributedAccountAbility
方法or属性:getOsAccountDistributedInfo(): Promise\;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:DistributedAccountAbility
方法or属性:setOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback\): void;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:DistributedAccountAbility
方法or属性:setOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise\;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:DistributedInfo
方法or属性:nickname?: string;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:DistributedInfo
方法or属性:avatar?: string;|@ohos.account.distributedAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkMultiOsAccountEnabled(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkMultiOsAccountEnabled(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountActivated(localId: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountActivated(localId: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountConstraintEnabled(localId: number, constraint: string, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountConstraintEnabled(localId: number, constraint: string): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountTestable(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountTestable(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountVerified(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountVerified(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountVerified(localId: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:checkOsAccountVerified(localId: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountCount(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountCount(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalId(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalId(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForUid(uid: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForUid(uid: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForDomain(domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForDomain(domainInfo: DomainAccountInfo): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraints(localId: number, callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraints(localId: number): Promise\>;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getActivatedOsAccountLocalIds(callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getActivatedOsAccountLocalIds(): Promise\>;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getCurrentOsAccount(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getCurrentOsAccount(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountType(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountType(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:queryDistributedVirtualDeviceId(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:queryDistributedVirtualDeviceId(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForSerialNumber(serialNumber: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountLocalIdForSerialNumber(serialNumber: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getSerialNumberForOsAccountLocalId(localId: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getSerialNumberForOsAccountLocalId(localId: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getBundleIdForUid(uid: number, callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getBundleIdForUid(uid: number): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:isMainOsAccount(callback: AsyncCallback\): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:isMainOsAccount(): Promise\;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraintSourceTypes(localId: number, constraint: string, callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AccountManager
方法or属性:getOsAccountConstraintSourceTypes(localId: number, constraint: string): Promise\>;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: InputerManager|@ohos.account.osAccount.d.ts| +|新增|NA|类名:InputerManager
方法or属性:|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: InputerManager
方法 or 属性:static registerInputer(authType: AuthType, inputer: IInputer): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:InputerManager
方法or属性:static registerInputer(authType: AuthType, inputer: IInputer): void;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: InputerManager
方法 or 属性:static unregisterInputer(authType: AuthType): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:InputerManager
方法or属性:static unregisterInputer(authType: AuthType): void;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: DomainPlugin|@ohos.account.osAccount.d.ts| +|新增|NA|类名:DomainPlugin
方法or属性:|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: DomainPlugin
方法 or 属性:auth(domainAccountInfo: DomainAccountInfo, credential: Uint8Array, callback: IUserAuthCallback): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:DomainPlugin
方法or属性:auth(domainAccountInfo: DomainAccountInfo, credential: Uint8Array, callback: IUserAuthCallback): void;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: DomainAccountManager|@ohos.account.osAccount.d.ts| +|新增|NA|类名:DomainAccountManager
方法or属性:|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: DomainAccountManager
方法 or 属性:static registerPlugin(plugin: DomainPlugin): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:DomainAccountManager
方法or属性:static registerPlugin(plugin: DomainPlugin): void;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: DomainAccountManager
方法 or 属性:static unregisterPlugin(): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:DomainAccountManager
方法or属性:static unregisterPlugin(): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:UserIdentityManager
方法or属性:getAuthInfo(callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:UserIdentityManager
方法or属性:getAuthInfo(authType: AuthType, callback: AsyncCallback\>): void;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: AuthType
方法 or 属性:DOMAIN = 1024|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AuthType
方法or属性:DOMAIN = 1024|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: AuthSubType
方法 or 属性:DOMAIN_MIXED = 10240001|@ohos.account.osAccount.d.ts| +|新增|NA|类名:AuthSubType
方法or属性:DOMAIN_MIXED = 10240001|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceType|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceType
方法or属性:|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceType
方法 or 属性:CONSTRAINT_NOT_EXIST = 0|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceType
方法or属性:CONSTRAINT_NOT_EXIST = 0|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_BASE = 1|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceType
方法or属性:CONSTRAINT_TYPE_BASE = 1|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_DEVICE_OWNER = 2|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceType
方法or属性:CONSTRAINT_TYPE_DEVICE_OWNER = 2|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceType
方法 or 属性:CONSTRAINT_TYPE_PROFILE_OWNER = 3|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceType
方法or属性:CONSTRAINT_TYPE_PROFILE_OWNER = 3|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceTypeInfo|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceTypeInfo
方法or属性:|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceTypeInfo
方法 or 属性:localId: number;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceTypeInfo
方法or属性:localId: number;|@ohos.account.osAccount.d.ts| +|新增|NA|模块名: ohos.account.osAccount
类名: ConstraintSourceTypeInfo
方法 or 属性:type: ConstraintSourceType;|@ohos.account.osAccount.d.ts| +|新增|NA|类名:ConstraintSourceTypeInfo
方法or属性:type: ConstraintSourceType;|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:addAccount(name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:addAccount(name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:addAccount(name: string, extraInfo: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:addAccount(name: string, extraInfo: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:addAccount(name: string, extraInfo?: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:addAccount(name: string, extraInfo?: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:addAccountImplicitly(owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:addAccountImplicitly(owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:deleteAccount(name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:deleteAccount(name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:deleteAccount(name: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:deleteAccount(name: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:disableAppAccess(name: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:disableAppAccess(name: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:disableAppAccess(name: string, bundleName: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:disableAppAccess(name: string, bundleName: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:enableAppAccess(name: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:enableAppAccess(name: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:enableAppAccess(name: string, bundleName: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:enableAppAccess(name: string, bundleName: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:checkAppAccountSyncEnable(name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:checkAppAccountSyncEnable(name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:checkAppAccountSyncEnable(name: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:checkAppAccountSyncEnable(name: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAccountCredential(name: string, credentialType: string, credential: string,
callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAccountCredential(name: string, credentialType: string, credential: string,
callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAccountCredential(name: string, credentialType: string, credential: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAccountCredential(name: string, credentialType: string, credential: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAccountExtraInfo(name: string, extraInfo: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAccountExtraInfo(name: string, extraInfo: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAppAccountSyncEnable(name: string, isEnable: boolean): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAppAccountSyncEnable(name: string, isEnable: boolean): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAssociatedData(name: string, key: string, value: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAssociatedData(name: string, key: string, value: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setAssociatedData(name: string, key: string, value: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setAssociatedData(name: string, key: string, value: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllAccessibleAccounts(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllAccessibleAccounts(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllAccessibleAccounts(): Promise\>;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllAccessibleAccounts(): Promise\>;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string): Promise\>;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string): Promise\>;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAccountCredential(name: string, credentialType: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAccountCredential(name: string, credentialType: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAccountCredential(name: string, credentialType: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAccountCredential(name: string, credentialType: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAccountExtraInfo(name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAccountExtraInfo(name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAccountExtraInfo(name: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAccountExtraInfo(name: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAssociatedData(name: string, key: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAssociatedData(name: string, key: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAssociatedData(name: string, key: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAssociatedData(name: string, key: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:on(type: 'change', owners: Array\, callback: Callback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:on(type: 'change', owners: Array\, callback: Callback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:off(type: 'change', callback?: Callback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:off(type: 'change', callback?: Callback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:authenticate(name: string, owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:authenticate(name: string, owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getOAuthToken(name: string, owner: string, authType: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getOAuthToken(name: string, owner: string, authType: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getOAuthToken(name: string, owner: string, authType: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getOAuthToken(name: string, owner: string, authType: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setOAuthToken(name: string, authType: string, token: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setOAuthToken(name: string, authType: string, token: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setOAuthToken(name: string, authType: string, token: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setOAuthToken(name: string, authType: string, token: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:deleteOAuthToken(name: string, owner: string, authType: string, token: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:deleteOAuthToken(name: string, owner: string, authType: string, token: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:deleteOAuthToken(name: string, owner: string, authType: string, token: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:deleteOAuthToken(name: string, owner: string, authType: string, token: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:checkOAuthTokenVisibility(name: string, authType: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:checkOAuthTokenVisibility(name: string, authType: string, bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:checkOAuthTokenVisibility(name: string, authType: string, bundleName: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:checkOAuthTokenVisibility(name: string, authType: string, bundleName: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllOAuthTokens(name: string, owner: string, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllOAuthTokens(name: string, owner: string, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAllOAuthTokens(name: string, owner: string): Promise\>;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAllOAuthTokens(name: string, owner: string): Promise\>;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getOAuthList(name: string, authType: string, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getOAuthList(name: string, authType: string, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getOAuthList(name: string, authType: string): Promise\>;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getOAuthList(name: string, authType: string): Promise\>;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAuthenticatorCallback(sessionId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAuthenticatorCallback(sessionId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAuthenticatorCallback(sessionId: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAuthenticatorCallback(sessionId: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAuthenticatorInfo(owner: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAuthenticatorInfo(owner: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AppAccountManager
方法 or 属性:getAuthenticatorInfo(owner: string): Promise\;
废弃版本:N/A|类名:AppAccountManager
方法 or 属性:getAuthenticatorInfo(owner: string): Promise\;
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:OAuthTokenInfo
废弃版本:N/A|类名:OAuthTokenInfo
废弃版本:9
代替接口:appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:ACTION_ADD_ACCOUNT_IMPLICITLY = "addAccountImplicitly"
废弃版本:N/A|类名:Constants
方法 or 属性:ACTION_ADD_ACCOUNT_IMPLICITLY = "addAccountImplicitly"
废弃版本:9
代替接口:appAccount.Constants|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:ACTION_AUTHENTICATE = "authenticate"
废弃版本:N/A|类名:Constants
方法 or 属性:ACTION_AUTHENTICATE = "authenticate"
废弃版本:9
代替接口:appAccount.Constants|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:ResultCode
废弃版本:N/A|类名:ResultCode
废弃版本:9
代替接口:N/A|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AuthenticatorCallback
废弃版本:N/A|类名:AuthenticatorCallback
废弃版本:9
代替接口:AppAccount.AuthCallback |@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:Authenticator
方法 or 属性:addAccountImplicitly(authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:N/A|类名:Authenticator
方法 or 属性:addAccountImplicitly(authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:9
代替接口:appAccount.Authenticator|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:Authenticator
方法 or 属性:authenticate(name: string, authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:N/A|类名:Authenticator
方法 or 属性:authenticate(name: string, authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;
废弃版本:9
代替接口:appAccount.Authenticator|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:DistributedAccountAbility
方法 or 属性:queryOsAccountDistributedInfo(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DistributedAccountAbility
方法 or 属性:queryOsAccountDistributedInfo(callback: AsyncCallback\): void;
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|类名:DistributedAccountAbility
方法 or 属性:queryOsAccountDistributedInfo(): Promise\;
废弃版本:N/A|类名:DistributedAccountAbility
方法 or 属性:queryOsAccountDistributedInfo(): Promise\;
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|类名:DistributedAccountAbility
方法 or 属性:updateOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DistributedAccountAbility
方法 or 属性:updateOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|类名:DistributedAccountAbility
方法 or 属性:updateOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise\;
废弃版本:N/A|类名:DistributedAccountAbility
方法 or 属性:updateOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise\;
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isMultiOsAccountEnable(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isMultiOsAccountEnable(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isMultiOsAccountEnable(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isMultiOsAccountEnable(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountActived(localId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountActived(localId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountActived(localId: number): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountActived(localId: number): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountConstraintEnable(localId: number, constraint: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountConstraintEnable(localId: number, constraint: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountConstraintEnable(localId: number, constraint: string): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountConstraintEnable(localId: number, constraint: string): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isTestOsAccount(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isTestOsAccount(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isTestOsAccount(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isTestOsAccount(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountVerified(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountVerified(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountVerified(localId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountVerified(localId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:isOsAccountVerified(localId?: number): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:isOsAccountVerified(localId?: number): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getCreatedOsAccountsCount(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getCreatedOsAccountsCount(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getCreatedOsAccountsCount(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getCreatedOsAccountsCount(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromProcess(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromProcess(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromProcess(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromProcess(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromUid(uid: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromUid(uid: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromUid(uid: number): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromUid(uid: number): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdFromDomain(domainInfo: DomainAccountInfo): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountAllConstraints(localId: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountAllConstraints(localId: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountAllConstraints(localId: number): Promise\>;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountAllConstraints(localId: number): Promise\>;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:queryActivatedOsAccountIds(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:queryActivatedOsAccountIds(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:queryActivatedOsAccountIds(): Promise\>;
废弃版本:N/A|类名:AccountManager
方法 or 属性:queryActivatedOsAccountIds(): Promise\>;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:queryCurrentOsAccount(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:queryCurrentOsAccount(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:queryCurrentOsAccount(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:queryCurrentOsAccount(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountTypeFromProcess(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountTypeFromProcess(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountTypeFromProcess(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountTypeFromProcess(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getDistributedVirtualDeviceId(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getDistributedVirtualDeviceId(callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getDistributedVirtualDeviceId(): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getDistributedVirtualDeviceId(): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdBySerialNumber(serialNumber: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdBySerialNumber(serialNumber: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getOsAccountLocalIdBySerialNumber(serialNumber: number): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getOsAccountLocalIdBySerialNumber(serialNumber: number): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getSerialNumberByOsAccountLocalId(localId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getSerialNumberByOsAccountLocalId(localId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|类名:AccountManager
方法 or 属性:getSerialNumberByOsAccountLocalId(localId: number): Promise\;
废弃版本:N/A|类名:AccountManager
方法 or 属性:getSerialNumberByOsAccountLocalId(localId: number): Promise\;
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|起始版本有变化|类名:OAuthTokenInfo
方法 or 属性:authType: string;
起始版本:N/A|类名:OAuthTokenInfo
方法 or 属性:authType: string;
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:OAuthTokenInfo
方法 or 属性:token: string;
起始版本:N/A|类名:OAuthTokenInfo
方法 or 属性:token: string;
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:ACTION_ADD_ACCOUNT_IMPLICITLY = "addAccountImplicitly"
起始版本:N/A|类名:Constants
方法 or 属性:ACTION_ADD_ACCOUNT_IMPLICITLY = "addAccountImplicitly"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:ACTION_AUTHENTICATE = "authenticate"
起始版本:N/A|类名:Constants
方法 or 属性:ACTION_AUTHENTICATE = "authenticate"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_NAME = "name"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_NAME = "name"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_OWNER = "owner"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_OWNER = "owner"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_TOKEN = "token"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_TOKEN = "token"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_ACTION = "action"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_ACTION = "action"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_AUTH_TYPE = "authType"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_AUTH_TYPE = "authType"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_SESSION_ID = "sessionId"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_SESSION_ID = "sessionId"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_CALLER_PID = "callerPid"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_CALLER_PID = "callerPid"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_CALLER_UID = "callerUid"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_CALLER_UID = "callerUid"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:Constants
方法 or 属性:KEY_CALLER_BUNDLE_NAME = "callerBundleName"
起始版本:N/A|类名:Constants
方法 or 属性:KEY_CALLER_BUNDLE_NAME = "callerBundleName"
起始版本:8|@ohos.account.appAccount.d.ts| +|起始版本有变化|类名:DistributedInfo
方法 or 属性:name: string;
起始版本:N/A|类名:DistributedInfo
方法 or 属性:name: string;
起始版本:7|@ohos.account.distributedAccount.d.ts| +|起始版本有变化|类名:DistributedInfo
方法 or 属性:id: string;
起始版本:N/A|类名:DistributedInfo
方法 or 属性:id: string;
起始版本:7|@ohos.account.distributedAccount.d.ts| +|起始版本有变化|类名:DistributedInfo
方法 or 属性:event: string;
起始版本:N/A|类名:DistributedInfo
方法 or 属性:event: string;
起始版本:7|@ohos.account.distributedAccount.d.ts| +|起始版本有变化|类名:PINAuth
方法 or 属性:unregisterInputer(): void;
起始版本:N/A|类名:PINAuth
方法 or 属性:unregisterInputer(): void;
起始版本:8|@ohos.account.osAccount.d.ts| +|权限有变化|类名:UserIdentityManager
方法 or 属性:getAuthInfo(authType?: AuthType): Promise\>;
权限:ohos.permission.ACCESS_USER_IDM|类名:UserIdentityManager
方法 or 属性:getAuthInfo(authType?: AuthType): Promise\>;
权限:ohos.permission.USE_USER_IDM|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:activateOsAccount(localId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008, 12300009|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:activateOsAccount(localId: number): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008, 12300009|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:removeOsAccount(localId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:removeOsAccount(localId: number): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountConstraints(localId: number, constraints: Array\, enable: boolean,
callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountConstraints(localId: number, constraints: Array\, enable: boolean): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountName(localId: number, localName: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountName(localId: number, localName: string): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryMaxOsAccountNumber(callback: AsyncCallback\): void;
错误码内容: 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryMaxOsAccountNumber(): Promise\;
错误码内容: 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryAllCreatedOsAccounts(callback: AsyncCallback\>): void;
错误码内容: 201, 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryAllCreatedOsAccounts(): Promise\>;
错误码内容: 201, 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:createOsAccount(localName: string, type: OsAccountType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300005, 12300006, 12300007|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:createOsAccount(localName: string, type: OsAccountType): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300005, 12300006, 12300007|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:createOsAccountForDomain(type: OsAccountType, domainInfo: DomainAccountInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300005, 12300006, 12300007|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:createOsAccountForDomain(type: OsAccountType, domainInfo: DomainAccountInfo): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300005, 12300006, 12300007|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryOsAccountById(localId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:queryOsAccountById(localId: number): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:getOsAccountProfilePhoto(localId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:getOsAccountProfilePhoto(localId: number): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountProfilePhoto(localId: number, photo: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:setOsAccountProfilePhoto(localId: number, photo: string): Promise\;
错误码内容: 201, 401, 12300001, 12300002, 12300003, 12300008|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:on(type: 'activate' \| 'activating', name: string, callback: Callback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300011|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:on(type: 'activate' \| 'activating', name: string, callback: Callback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300011|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:off(type: 'activate' \| 'activating', name: string, callback?: Callback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300012|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:AccountManager
方法 or 属性:off(type: 'activate' \| 'activating', name: string, callback?: Callback\): void;
错误码内容: 201, 401, 12300001, 12300002, 12300012|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserAuth
方法 or 属性:getAvailableStatus(authType: AuthType, authTrustLevel: AuthTrustLevel): number;
错误码内容: 201, 401, 12300001, 12300002|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserAuth
方法 or 属性:getProperty(request: GetPropertyRequest, callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001, 12300002|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserAuth
方法 or 属性:getProperty(request: GetPropertyRequest): Promise\;
错误码内容: 201, 401, 12300001, 12300002|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserAuth
方法 or 属性:auth(challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
错误码内容: 201, 401, 12300001, 12300002, 12300101, 12300105, 12300106, 12300110, 12300111, 12300112|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserAuth
方法 or 属性:authUser(userId: number, challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
错误码内容: 201, 401, 12300001, 12300002, 12300101, 12300105, 12300106, 12300110, 12300111, 12300112|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:PINAuth
方法 or 属性:unregisterInputer(): void;
错误码内容: 201|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:openSession(callback: AsyncCallback\): void;
错误码内容: 201, 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:openSession(): Promise\;
错误码内容: 201, 401, 12300001|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:addCredential(credentialInfo: CredentialInfo, callback: IIdmCallback): void;
错误码内容: 201, 401, 12300001, 12300002, 12300101, 12300106|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:updateCredential(credentialInfo: CredentialInfo, callback: IIdmCallback): void;
错误码内容: 201, 401, 12300001, 12300002, 12300101, 12300106|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:closeSession(): void;
错误码内容: 201|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:delUser(token: Uint8Array, callback: IIdmCallback): void;
错误码内容: 201, 401, 12300001, 12300101|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:delCred(credentialId: Uint8Array, token: Uint8Array, callback: IIdmCallback): void;
错误码内容: 201, 401, 12300001, 12300002, 12300101, 12300102|@ohos.account.osAccount.d.ts| +|新增(错误码)|NA|类名:UserIdentityManager
方法 or 属性:getAuthInfo(authType?: AuthType): Promise\>;
错误码内容: 201, 401, 12300001, 12300002, 12300102|@ohos.account.osAccount.d.ts| +|新增(权限)|类名:AccountManager
方法 or 属性:isOsAccountVerified(callback: AsyncCallback\): void;
权限:N/A|类名:AccountManager
方法 or 属性:isOsAccountVerified(callback: AsyncCallback\): void;
权限:ohos.permission.MANAGE_LOCAL_ACCOUNTS or ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS|@ohos.account.osAccount.d.ts| +|函数有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string, callback: AsyncCallback\>): void;
|类名:AppAccountManager
方法 or 属性:getAllAccounts(callback: AsyncCallback\>): void;
|@ohos.account.appAccount.d.ts| +|函数有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string): Promise\>;
|类名:AppAccountManager
方法 or 属性:getAllAccounts(): Promise\>;
|@ohos.account.appAccount.d.ts| +|函数有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string, callback: AsyncCallback\>): void;
|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string, callback: AsyncCallback\>): void;
|@ohos.account.appAccount.d.ts| +|函数有变化|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string): Promise\>;
|类名:AppAccountManager
方法 or 属性:getAllAccounts(owner: string): Promise\>;
|@ohos.account.appAccount.d.ts| +|函数有变化|类名:UserAuth
方法 or 属性:setProperty(request: SetPropertyRequest, callback: AsyncCallback\): void;
|类名:UserAuth
方法 or 属性:setProperty(request: SetPropertyRequest, callback: AsyncCallback\): void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:UserAuth
方法 or 属性:setProperty(request: SetPropertyRequest): Promise\;
|类名:UserAuth
方法 or 属性:setProperty(request: SetPropertyRequest): Promise\;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:UserAuth
方法 or 属性:cancelAuth(contextID: Uint8Array): number;
|类名:UserAuth
方法 or 属性:cancelAuth(contextID: Uint8Array): void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:PINAuth
方法 or 属性:registerInputer(inputer: IInputer): boolean;
|类名:PINAuth
方法 or 属性:registerInputer(inputer: IInputer): void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:UserIdentityManager
方法 or 属性:cancel(challenge: Uint8Array): number;
|类名:UserIdentityManager
方法 or 属性:cancel(challenge: Uint8Array): void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:IInputData
方法 or 属性:onSetData: (pinSubType: AuthSubType, data: Uint8Array) => void;
|类名:IInputData
方法 or 属性:onSetData: (authSubType: AuthSubType, data: Uint8Array) => void;
|@ohos.account.osAccount.d.ts| +|函数有变化|类名:IInputer
方法 or 属性:onGetData: (callback: IInputData) => void;
|类名:IInputer
方法 or 属性:onGetData: (authSubType: AuthSubType, callback: IInputData) => void;
|@ohos.account.osAccount.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-application.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-application.md new file mode 100644 index 0000000000000000000000000000000000000000..943e6f09c10353ebf29825097e650f504682aecc --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-application.md @@ -0,0 +1,79 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:Contact
方法or属性:readonly id?: number|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:readonly key?: string|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:contactAttributes?: ContactAttributes|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:emails?: Email[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:events?: Event[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:groups?: Group[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:imAddresses?: ImAddress[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:phoneNumbers?: PhoneNumber[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:portrait?: Portrait|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:postalAddresses?: PostalAddress[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:relations?: Relation[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:sipAddresses?: SipAddress[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:websites?: Website[]|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:name?: Name|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:nickName?: NickName|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:note?: Note|@ohos.contact.d.ts| +|新增|NA|类名:Contact
方法or属性:organization?: Organization|@ohos.contact.d.ts| +|新增|NA|类名:Email
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Email
方法or属性:displayName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Email
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:Event
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Event
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:Group
方法or属性:groupId?: number|@ohos.contact.d.ts| +|新增|NA|类名:Holder
方法or属性:readonly displayName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Holder
方法or属性:holderId?: number|@ohos.contact.d.ts| +|新增|NA|类名:ImAddress
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:ImAddress
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:familyName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:familyNamePhonetic?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:givenName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:givenNamePhonetic?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:middleName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:middleNamePhonetic?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:namePrefix?: string|@ohos.contact.d.ts| +|新增|NA|类名:Name
方法or属性:nameSuffix?: string|@ohos.contact.d.ts| +|新增|NA|类名:Organization
方法or属性:title?: string|@ohos.contact.d.ts| +|新增|NA|类名:PhoneNumber
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:PhoneNumber
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:city?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:country?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:neighborhood?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:pobox?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:postcode?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:region?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:street?: string|@ohos.contact.d.ts| +|新增|NA|类名:PostalAddress
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:Relation
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:Relation
方法or属性:labelId?: number|@ohos.contact.d.ts| +|新增|NA|类名:SipAddress
方法or属性:labelName?: string|@ohos.contact.d.ts| +|新增|NA|类名:SipAddress
方法or属性:labelId?: number|@ohos.contact.d.ts| +|model有变化|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\): void;
model:N/A|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.settings.d.ts| +|model有变化|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\;
model:N/A|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\;
model:@FAModelOnly|@ohos.settings.d.ts| +|model有变化|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\): void;
model:N/A|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.settings.d.ts| +|model有变化|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\;
model:N/A|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\;
model:@FAModelOnly|@ohos.settings.d.ts| +|model有变化|类名:settings
方法 or 属性:function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;
model:N/A|类名:settings
方法 or 属性:function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;
model:@FAModelOnly|@ohos.settings.d.ts| +|model有变化|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
model:N/A|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
model:@FAModelOnly|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function getURI(name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:settings
方法 or 属性:function getURI(name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function getURI(name: string): Promise\;
废弃版本:N/A|类名:settings
方法 or 属性:function getURI(name: string): Promise\;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\;
废弃版本:N/A|类名:settings
方法 or 属性:function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\): void;
废弃版本:N/A|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\;
废弃版本:N/A|类名:settings
方法 or 属性:function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;
废弃版本:N/A|类名:settings
方法 or 属性:function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|废弃版本有变化|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
废弃版本:N/A|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
废弃版本:9
代替接口:N/A|@ohos.settings.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function makeCall(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function makeCall(phoneNumber: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function addContact(contact: Contact, callback: AsyncCallback\): void;
权限:N/A|类名:contact
方法 or 属性:function addContact(contact: Contact, callback: AsyncCallback\): void;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function addContact(contact: Contact): Promise\;
权限:N/A|类名:contact
方法 or 属性:function addContact(contact: Contact): Promise\;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function deleteContact(key: string, callback: AsyncCallback\): void;
权限:N/A|类名:contact
方法 or 属性:function deleteContact(key: string, callback: AsyncCallback\): void;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function deleteContact(key: string): Promise\;
权限:N/A|类名:contact
方法 or 属性:function deleteContact(key: string): Promise\;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function updateContact(contact: Contact, callback: AsyncCallback\): void;
权限:N/A|类名:contact
方法 or 属性:function updateContact(contact: Contact, callback: AsyncCallback\): void;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\): void;
权限:N/A|类名:contact
方法 or 属性:function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\): void;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:contact
方法 or 属性:function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\;
权限:N/A|类名:contact
方法 or 属性:function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\;
权限:ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts| +|新增(权限)|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
权限:N/A|类名:settings
方法 or 属性:function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;
权限:ohos.permission.MANAGE_SECURE_SETTINGS|@ohos.settings.d.ts| +|SysCap有变化|类名:contact
方法 or 属性:function selectContact(callback: AsyncCallback\>): void;
SysCap:SystemCapability.Applications.ContactsData|类名:contact
方法 or 属性:function selectContact(callback: AsyncCallback\>): void;
SysCap:SystemCapability.Applications.Contacts|@ohos.contact.d.ts| +|SysCap有变化|类名:contact
方法 or 属性:function selectContact(): Promise\>;
SysCap:SystemCapability.Applications.ContactsData|类名:contact
方法 or 属性:function selectContact(): Promise\>;
SysCap:SystemCapability.Applications.Contacts|@ohos.contact.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-arkui.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-arkui.md new file mode 100644 index 0000000000000000000000000000000000000000..810b0fc4d72bbc2816961d70640476a7aee64ab3 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-arkui.md @@ -0,0 +1,2213 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: canvaspattern
类名: CanvasPattern|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: CanvasPattern
方法 or 属性: setTransform(transform?: Matrix2D): void;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: scaleX?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: rotateY?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: rotateX?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: scaleY?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: translateX?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: translateY?: number;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: identity(): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: invert(): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: multiply(other?: Matrix2D): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: rotate(rx?: number, ry?: number): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: translate(tx?: number, ty?: number): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: scale(sx?: number, sy?: number): Matrix2D;|canvaspattern.d.ts| +|新增|NA|模块名: canvaspattern
类名: Matrix2D
方法 or 属性: constructor();|canvaspattern.d.ts| +|新增|NA|类名:AnimatorResult
方法or属性:reset(options: AnimatorOptions): void;|@ohos.animator.d.ts| +|新增|NA|类名:Animator
方法or属性:static create(options: AnimatorOptions): AnimatorResult;|@ohos.animator.d.ts| +|新增|NA|模块名: ohos.curves
类名: ICurve|@ohos.curves.d.ts| +|新增|NA|类名:ICurve
方法or属性:|@ohos.curves.d.ts| +|新增|NA|模块名: ohos.curves
类名: ICurve
方法 or 属性:interpolate(fraction : number) : number;|@ohos.curves.d.ts| +|新增|NA|类名:ICurve
方法or属性:interpolate(fraction : number) : number;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function initCurve(curve?: Curve): ICurve;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function stepsCurve(count: number, end: boolean): ICurve;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function cubicBezierCurve(x1: number, y1: number, x2: number, y2: number): ICurve;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function springCurve(velocity: number, mass: number, stiffness: number, damping: number): ICurve;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function springMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;|@ohos.curves.d.ts| +|新增|NA|类名:curves
方法or属性:function responsiveSpringMotion(response?: number, dampingFraction?: number, overlapDuration?: number): ICurve;|@ohos.curves.d.ts| +|新增|NA|模块名: ohos.font
类名: font|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions
方法 or 属性: familyName: string;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: FontOptions
方法 or 属性: familySrc: string;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.font
类名: font
方法 or 属性: function registerFont(options: FontOptions):void;|@ohos.font.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: textContent: string;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontSize?: number \| string \| Resource;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontStyle?: number \| FontStyle;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontWeight?: number \| string \| FontWeight;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: fontFamily?: string \| Resource;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureOptions
方法 or 属性: letterSpacing?: number \| string;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureText|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.measure
类名: MeasureText
方法 or 属性: static measureText(options: MeasureOptions): number;|@ohos.measure.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:owner: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:owner: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:name: string;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:name: string;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:data: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:data: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:extraData: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:extraData: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: PushParameterForStage
方法 or 属性:jsonPath?: string;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:PushParameterForStage
方法or属性:jsonPath?: string;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage
方法 or 属性:owner: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:owner: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage
方法 or 属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:target: Want;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage
方法 or 属性:name: string;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:name: string;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage
方法 or 属性:data: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:data: KVObject;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.pluginComponent
类名: RequestParameterForStage
方法 or 属性:jsonPath?: string;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:RequestParameterForStage
方法or属性:jsonPath?: string;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:pluginComponentManager
方法or属性:function push(param: PushParameterForStage, callback: AsyncCallback\): void;|@ohos.pluginComponent.d.ts| +|新增|NA|类名:pluginComponentManager
方法or属性:function request(param: RequestParameterForStage, callback: AsyncCallback\): void;|@ohos.pluginComponent.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowToastOptions|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowToastOptions
方法 or 属性: message: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowToastOptions
方法 or 属性: duration?: number;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowToastOptions
方法 or 属性: bottom?: string \| number;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: Button|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: Button
方法 or 属性: text: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: Button
方法 or 属性: color: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogSuccessResponse|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogSuccessResponse
方法 or 属性: index: number;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogOptions|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogOptions
方法 or 属性: title?: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogOptions
方法 or 属性: message?: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ShowDialogOptions
方法 or 属性: buttons?: [Button, Button?, Button?];|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ActionMenuSuccessResponse|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ActionMenuSuccessResponse
方法 or 属性: index: number;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ActionMenuOptions|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ActionMenuOptions
方法 or 属性: title?: string \| Resource;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: ActionMenuOptions
方法 or 属性: buttons: [Button, Button?, Button?, Button?, Button?, Button?];|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction
方法 or 属性: function showToast(options: ShowToastOptions):void;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction
方法 or 属性: function showDialog(options: ShowDialogOptions, callback: AsyncCallback\):void;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction
方法 or 属性: function showDialog(options: ShowDialogOptions): Promise\;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction
方法 or 属性: function showActionMenu(options: ActionMenuOptions, callback: AsyncCallback\):void;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.promptAction
类名: promptAction
方法 or 属性: function showActionMenu(options: ActionMenuOptions): Promise\;|@ohos.promptAction.d.ts| +|新增|NA|模块名: ohos.router
类名: RouterMode|@ohos.router.d.ts| +|新增|NA|类名:RouterMode
方法or属性:|@ohos.router.d.ts| +|新增|NA|模块名: ohos.router
类名: RouterMode
方法 or 属性:Standard|@ohos.router.d.ts| +|新增|NA|类名:RouterMode
方法or属性:Standard|@ohos.router.d.ts| +|新增|NA|模块名: ohos.router
类名: RouterMode
方法 or 属性:Single|@ohos.router.d.ts| +|新增|NA|类名:RouterMode
方法or属性:Single|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function pushUrl(options: RouterOptions, callback: AsyncCallback\):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function pushUrl(options: RouterOptions): Promise\;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function pushUrl(options: RouterOptions, mode: RouterMode, callback: AsyncCallback\):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function pushUrl(options: RouterOptions, mode: RouterMode): Promise\;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function replaceUrl(options: RouterOptions, callback: AsyncCallback\):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function replaceUrl(options: RouterOptions): Promise\;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function replaceUrl(options: RouterOptions, mode: RouterMode, callback: AsyncCallback\):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function replaceUrl(options: RouterOptions, mode: RouterMode): Promise\;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function showAlertBeforeBackPage(options: EnableAlertOptions):void;|@ohos.router.d.ts| +|新增|NA|类名:router
方法or属性:function hideAlertBeforeBackPage():void;|@ohos.router.d.ts| +|新增|NA|模块名: ability_component
类名: AbilityComponentInterface|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: AbilityComponentInterface
方法 or 属性: (value: {want: import('../api/@ohos.app.ability.Want').default}): AbilityComponentAttribute;|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: AbilityComponentAttribute|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: AbilityComponentAttribute
方法 or 属性: onConnect(callback: () => void): AbilityComponentAttribute;|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: AbilityComponentAttribute
方法 or 属性: onDisconnect(callback: () => void): AbilityComponentAttribute;|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: global
方法 or 属性: declare const AbilityComponent: AbilityComponentInterface;|ability_component.d.ts| +|新增|NA|模块名: ability_component
类名: global
方法 or 属性: declare const AbilityComponentInstance: AbilityComponentAttribute;|ability_component.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:filter: string;|canvas.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:imageSmoothingQuality: ImageSmoothingQuality;|canvas.d.ts| +|新增|NA|类名:CanvasRenderer
方法or属性:direction: CanvasDirection;|canvas.d.ts| +|新增|NA|类名:global
方法or属性:declare const Entry: ClassDecorator & ((storage?: LocalStorage) => ClassDecorator);|common.d.ts| +|新增|NA|类名:global
方法or属性:declare const Concurrent: MethodDecorator;|common.d.ts| +|新增|NA|类名:global
方法or属性:declare const LocalStorageLink: (value: string) => PropertyDecorator;|common.d.ts| +|新增|NA|类名:global
方法or属性:declare const LocalStorageProp: (value: string) => PropertyDecorator;|common.d.ts| +|新增|NA|类名:
方法or属性:function getContext(component?: Object): Context;|common.d.ts| +|新增|NA|类名:
方法or属性:function postCardAction(component: Object, action: Object): void;|common.d.ts| +|新增|NA|类名:AnimateParam
方法or属性:curve?: Curve \| string \| ICurve;|common.d.ts| +|新增|NA|模块名: common
类名: ICurve|common.d.ts| +|新增|NA|类名:ICurve
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: ICurve
方法 or 属性:interpolate(fraction : number) : number;|common.d.ts| +|新增|NA|类名:ICurve
方法or属性:interpolate(fraction : number) : number;|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:left?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:left?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:right?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:right?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:middle?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:middle?: { anchor: string, align: HorizontalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:top?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:top?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:bottom?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:bottom?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: AlignRuleOption
方法 or 属性:center?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|类名:AlignRuleOption
方法or属性:center?: { anchor: string, align: VerticalAlign };|common.d.ts| +|新增|NA|模块名: common
类名: focusControl|common.d.ts| +|新增|NA|类名:focusControl
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: focusControl
方法 or 属性:function requestFocus(value: string): boolean;|common.d.ts| +|新增|NA|类名:focusControl
方法or属性:function requestFocus(value: string): boolean;|common.d.ts| +|新增|NA|模块名: common
类名: SourceTool|common.d.ts| +|新增|NA|类名:SourceTool
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: SourceTool
方法 or 属性:Unknown|common.d.ts| +|新增|NA|类名:SourceTool
方法or属性:Unknown|common.d.ts| +|新增|NA|模块名: common
类名: SourceTool
方法 or 属性:FINGER|common.d.ts| +|新增|NA|类名:SourceTool
方法or属性:FINGER|common.d.ts| +|新增|NA|模块名: common
类名: SourceTool
方法 or 属性:PEN|common.d.ts| +|新增|NA|类名:SourceTool
方法or属性:PEN|common.d.ts| +|新增|NA|模块名: common
类名: RepeatMode|common.d.ts| +|新增|NA|类名:RepeatMode
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: RepeatMode
方法 or 属性:Repeat|common.d.ts| +|新增|NA|类名:RepeatMode
方法or属性:Repeat|common.d.ts| +|新增|NA|模块名: common
类名: RepeatMode
方法 or 属性:Stretch|common.d.ts| +|新增|NA|类名:RepeatMode
方法or属性:Stretch|common.d.ts| +|新增|NA|模块名: common
类名: RepeatMode
方法 or 属性:Round|common.d.ts| +|新增|NA|类名:RepeatMode
方法or属性:Round|common.d.ts| +|新增|NA|模块名: common
类名: RepeatMode
方法 or 属性:Space|common.d.ts| +|新增|NA|类名:RepeatMode
方法or属性:Space|common.d.ts| +|新增|NA|模块名: common
类名: BlurStyle|common.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: BlurStyle
方法 or 属性:Thin|common.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:Thin|common.d.ts| +|新增|NA|模块名: common
类名: BlurStyle
方法 or 属性:Regular|common.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:Regular|common.d.ts| +|新增|NA|模块名: common
类名: BlurStyle
方法 or 属性:Thick|common.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:Thick|common.d.ts| +|新增|NA|类名:BaseEvent
方法or属性:pressure: number;|common.d.ts| +|新增|NA|类名:BaseEvent
方法or属性:tiltX: number;|common.d.ts| +|新增|NA|类名:BaseEvent
方法or属性:tiltY: number;|common.d.ts| +|新增|NA|类名:BaseEvent
方法or属性:sourceTool: SourceTool;|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:slice?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:slice?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:repeat?: RepeatMode,|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:repeat?: RepeatMode,|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:source?: string \| Resource \| LinearGradient,|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:source?: string \| Resource \| LinearGradient,|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:width?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:width?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:outset?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:outset?: Length \| EdgeWidths,|common.d.ts| +|新增|NA|模块名: common
类名: BorderImageOption
方法 or 属性:fill?: boolean|common.d.ts| +|新增|NA|类名:BorderImageOption
方法or属性:fill?: boolean|common.d.ts| +|新增|NA|模块名: common
类名: PopupOptions
方法 or 属性:arrowOffset?: Length;|common.d.ts| +|新增|NA|类名:PopupOptions
方法or属性:arrowOffset?: Length;|common.d.ts| +|新增|NA|模块名: common
类名: PopupOptions
方法 or 属性:showInSubWindow?: boolean;|common.d.ts| +|新增|NA|类名:PopupOptions
方法or属性:showInSubWindow?: boolean;|common.d.ts| +|新增|NA|模块名: common
类名: CustomPopupOptions
方法 or 属性:arrowOffset?: Length;|common.d.ts| +|新增|NA|类名:CustomPopupOptions
方法or属性:arrowOffset?: Length;|common.d.ts| +|新增|NA|模块名: common
类名: CustomPopupOptions
方法 or 属性:showInSubWindow?: boolean;|common.d.ts| +|新增|NA|类名:CustomPopupOptions
方法or属性:showInSubWindow?: boolean;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:hitTestBehavior(value: HitTestMode): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:backgroundBlurStyle(value: BlurStyle): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:borderStyle(value: EdgeStyles): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:borderWidth(value: EdgeWidths): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:borderColor(value: EdgeColors): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:borderRadius(value: BorderRadiuses): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:borderImage(value: BorderImageOption): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:tabIndex(index: number): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:defaultFocus(value: boolean): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:groupDefaultFocus(value: boolean): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:focusOnTouch(value: boolean): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:alignRules(value: AlignRuleOption): T;|common.d.ts| +|新增|NA|类名:CommonMethod
方法or属性:onVisibleAreaChange(ratios: Array\, event: (isVisible: boolean, currentRatio: number) => void): T;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:angle?: number \| string;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:angle?: number \| string;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:direction?: GradientDirection;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:direction?: GradientDirection;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:colors: Array\;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:colors: Array\;|common.d.ts| +|新增|NA|模块名: common
类名: LinearGradient
方法 or 属性:repeating?: boolean;|common.d.ts| +|新增|NA|类名:LinearGradient
方法or属性:repeating?: boolean;|common.d.ts| +|新增|NA|模块名: common
类名: LayoutBorderInfo|common.d.ts| +|新增|NA|类名:LayoutBorderInfo
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: LayoutBorderInfo
方法 or 属性:borderWidth: EdgeWidths,|common.d.ts| +|新增|NA|类名:LayoutBorderInfo
方法or属性:borderWidth: EdgeWidths,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutBorderInfo
方法 or 属性:margin: Margin,|common.d.ts| +|新增|NA|类名:LayoutBorderInfo
方法or属性:margin: Margin,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutBorderInfo
方法 or 属性:padding: Padding,|common.d.ts| +|新增|NA|类名:LayoutBorderInfo
方法or属性:padding: Padding,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutInfo|common.d.ts| +|新增|NA|类名:LayoutInfo
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: LayoutInfo
方法 or 属性:position: Position,|common.d.ts| +|新增|NA|类名:LayoutInfo
方法or属性:position: Position,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutInfo
方法 or 属性:constraint: ConstraintSizeOptions,|common.d.ts| +|新增|NA|类名:LayoutInfo
方法or属性:constraint: ConstraintSizeOptions,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:name: string,|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:name: string,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:id: string,|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:id: string,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:constraint: ConstraintSizeOptions,|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:constraint: ConstraintSizeOptions,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:borderInfo: LayoutBorderInfo,|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:borderInfo: LayoutBorderInfo,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:position: Position,|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:position: Position,|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:measure(childConstraint: ConstraintSizeOptions),|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:measure(childConstraint: ConstraintSizeOptions),|common.d.ts| +|新增|NA|模块名: common
类名: LayoutChild
方法 or 属性:layout(childLayoutInfo: LayoutInfo)|common.d.ts| +|新增|NA|类名:LayoutChild
方法or属性:layout(childLayoutInfo: LayoutInfo)|common.d.ts| +|新增|NA|类名:CustomComponent
方法or属性:onLayout?(children: Array\, constraint: ConstraintSizeOptions): void;|common.d.ts| +|新增|NA|类名:CustomComponent
方法or属性:onMeasure?(children: Array\, constraint: ConstraintSizeOptions): void;|common.d.ts| +|新增|NA|类名:CustomComponent
方法or属性:pageTransition?(): void;|common.d.ts| +|新增|NA|模块名: common
类名: SpecialEvent|common.d.ts| +|新增|NA|类名:SpecialEvent
方法or属性:|common.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Link(propName: string): any;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static SetAndLink\(propName: string, defaultValue: T): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Prop(propName: string): any;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static SetAndProp\(propName: string, defaultValue: S): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Has(propName: string): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Get\(propName: string): T \| undefined;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Set\(propName: string, newValue: T): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static SetOrCreate\(propName: string, newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Delete(propName: string): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Keys(): IterableIterator\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static staticClear(): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Clear(): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static IsMutable(propName: string): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: AppStorage
方法 or 属性: static Size(): number;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: protected subscribers_: Set\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: private id_;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: private info_?;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: constructor(
/**
* Subscriber IPropertySubscriber.
* @since 7
* @systemapi
*/
subscribeMe?: IPropertySubscriber,
/**
* Subscriber info.
* @since 7
* @systemapi
*/
info?: string,
);|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: id(): number;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: info(): string;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: abstract get(): T;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: abstract set(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: createTwoWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyTwoWay\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: createOneWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyOneWay\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: unlinkSuscriber(subscriberId: number): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: protected notifyHasChanged(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: protected notifyPropertyRead(): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribedAbstractProperty
方法 or 属性: numberOfSubscrbers(): number;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: IPropertySubscriber|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: IPropertySubscriber
方法 or 属性: id(): number;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: IPropertySubscriber
方法 or 属性: aboutToBeDeleted(owningView?: IPropertySubscriber): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: private source_;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: constructor(source: SubscribedAbstractProperty\, subscribeMe?: IPropertySubscriber, info?: string);|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: aboutToBeDeleted(unsubscribeMe?: IPropertySubscriber): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: hasChanged(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: get(): T;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyTwoWay
方法 or 属性: set(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: private wrappedValue_;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: private source_;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: constructor(source: SubscribedAbstractProperty\, subscribeMe?: IPropertySubscriber, info?: string);|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: aboutToBeDeleted(unsubscribeMe?: IPropertySubscriber): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: hasChanged(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: get(): T;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SyncedPropertyOneWay
方法 or 属性: set(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: ISinglePropertyChangeSubscriber|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: ISinglePropertyChangeSubscriber
方法 or 属性: hasChanged(newValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: private owningProperties_: Set\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: constructor();|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: protected notifyPropertyHasChanged(propName: string, newValue: any): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: public addOwningProperty(subscriber: IPropertySubscriber): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: public removeOwningProperty(property: IPropertySubscriber): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: SubscribaleAbstract
方法 or 属性: public removeOwningPropertyById(subscriberId: number): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: Environment|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: Environment
方法 or 属性: constructor();|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: Environment
方法 or 属性: static EnvProp\(key: string, value: S): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: Environment
方法 or 属性: static EnvProps(
props: {
key: string;
defaultValue: any;
}[],
): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: Environment
方法 or 属性: static Keys(): Array\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage
方法 or 属性: constructor(appStorage: AppStorage, storage: Storage);|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage
方法 or 属性: static PersistProp\(key: string, defaultValue: T): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage
方法 or 属性: static DeleteProp(key: string): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage
方法 or 属性: static PersistProps(
properties: {
key: string;
defaultValue: any;
}[],
): void;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: PersistentStorage
方法 or 属性: static Keys(): Array\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: global
方法 or 属性: declare const appStorage: AppStorage;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: constructor(initializingProperties?: Object);|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: static GetShared(): LocalStorage;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: has(propName: string): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: keys(): IterableIterator\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: size(): number;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: get\(propName: string): T \| undefined;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: set\(propName: string, newValue: T): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: setOrCreate\(propName: string, newValue: T): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: link\(propName: string): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: setAndLink\(propName: string, defaultValue: T): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: prop\(propName: string): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: setAndProp\(propName: string, defaultValue: S): SubscribedAbstractProperty\;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: delete(propName: string): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: LocalStorage
方法 or 属性: clear(): boolean;|common_ts_ets_api.d.ts| +|新增|NA|模块名: common_ts_ets_api
类名: StateManagement|common_ts_ets_api.d.ts| +|新增|NA|类名:Color
方法or属性:Transparent|enums.d.ts| +|新增|NA|类名:Placement
方法or属性:LeftTop|enums.d.ts| +|新增|NA|类名:Placement
方法or属性:LeftBottom|enums.d.ts| +|新增|NA|类名:Placement
方法or属性:RightTop|enums.d.ts| +|新增|NA|类名:Placement
方法or属性:RightBottom|enums.d.ts| +|新增|NA|模块名: enums
类名: CopyOptions|enums.d.ts| +|新增|NA|类名:CopyOptions
方法or属性:|enums.d.ts| +|新增|NA|模块名: enums
类名: CopyOptions
方法 or 属性:None = 0|enums.d.ts| +|新增|NA|类名:CopyOptions
方法or属性:None = 0|enums.d.ts| +|新增|NA|模块名: enums
类名: CopyOptions
方法 or 属性:InApp = 1|enums.d.ts| +|新增|NA|类名:CopyOptions
方法or属性:InApp = 1|enums.d.ts| +|新增|NA|模块名: enums
类名: CopyOptions
方法 or 属性:LocalDevice = 2|enums.d.ts| +|新增|NA|类名:CopyOptions
方法or属性:LocalDevice = 2|enums.d.ts| +|新增|NA|模块名: enums
类名: HitTestMode|enums.d.ts| +|新增|NA|类名:HitTestMode
方法or属性:|enums.d.ts| +|新增|NA|模块名: enums
类名: HitTestMode
方法 or 属性:Default|enums.d.ts| +|新增|NA|类名:HitTestMode
方法or属性:Default|enums.d.ts| +|新增|NA|模块名: enums
类名: HitTestMode
方法 or 属性:Block|enums.d.ts| +|新增|NA|类名:HitTestMode
方法or属性:Block|enums.d.ts| +|新增|NA|模块名: enums
类名: HitTestMode
方法 or 属性:Transparent|enums.d.ts| +|新增|NA|类名:HitTestMode
方法or属性:Transparent|enums.d.ts| +|新增|NA|模块名: enums
类名: HitTestMode
方法 or 属性:None|enums.d.ts| +|新增|NA|类名:HitTestMode
方法or属性:None|enums.d.ts| +|新增|NA|模块名: enums
类名: TitleHeight|enums.d.ts| +|新增|NA|类名:TitleHeight
方法or属性:|enums.d.ts| +|新增|NA|模块名: enums
类名: TitleHeight
方法 or 属性:MainOnly|enums.d.ts| +|新增|NA|类名:TitleHeight
方法or属性:MainOnly|enums.d.ts| +|新增|NA|模块名: enums
类名: TitleHeight
方法 or 属性:MainWithSub|enums.d.ts| +|新增|NA|类名:TitleHeight
方法or属性:MainWithSub|enums.d.ts| +|新增|NA|模块名: flow_item
类名: FlowItemInterface|flow_item.d.ts| +|新增|NA|模块名: flow_item
类名: FlowItemInterface
方法 or 属性: (): FlowItemAttribute;|flow_item.d.ts| +|新增|NA|模块名: flow_item
类名: FlowItemAttribute|flow_item.d.ts| +|新增|NA|模块名: flow_item
类名: global
方法 or 属性: declare const FlowItem: FlowItemInterface|flow_item.d.ts| +|新增|NA|模块名: flow_item
类名: global
方法 or 属性: declare const FlowItemInstance: FlowItemAttribute;|flow_item.d.ts| +|新增|NA|模块名: form_component
类名: FormDimension
方法 or 属性:Dimension_2_1|form_component.d.ts| +|新增|NA|类名:FormDimension
方法or属性:Dimension_2_1|form_component.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: xs?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: sm?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: md?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: lg?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: xl?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColColumnOption
方法 or 属性: xxl?: number,|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColOptions|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColOptions
方法 or 属性: span?: number \| GridColColumnOption;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColOptions
方法 or 属性: offset?: number \| GridColColumnOption;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColOptions
方法 or 属性: order?: number \| GridColColumnOption;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColInterface|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColInterface
方法 or 属性: (option?: GridColOptions): GridColAttribute;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColAttribute|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColAttribute
方法 or 属性: span(value: number \| GridColColumnOption): GridRowAttribute;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColAttribute
方法 or 属性: offset(value: number \| GridColColumnOption): GridRowAttribute;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: GridColAttribute
方法 or 属性: order(value: number \| GridColColumnOption): GridRowAttribute;|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: global
方法 or 属性: declare const GridCol: GridColInterface|grid_col.d.ts| +|新增|NA|模块名: grid_col
类名: global
方法 or 属性: declare const GridColInstance: GridColAttribute;|grid_col.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: xs?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: sm?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: md?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: lg?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: xl?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowSizeOption
方法 or 属性: xxl?: Length,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: xs?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: sm?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: md?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: lg?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: xl?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowColumnOption
方法 or 属性: xxl?: number,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GutterOption|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GutterOption
方法 or 属性: x?: Length \| GridRowSizeOption,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GutterOption
方法 or 属性: y?: Length \| GridRowSizeOption|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakpointsReference|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakpointsReference
方法 or 属性: WindowSize|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakpointsReference
方法 or 属性: ComponentSize|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowDirection|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowDirection
方法 or 属性: Row|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowDirection
方法 or 属性: RowReverse|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakPoints|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakPoints
方法 or 属性: value?: Array\,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: BreakPoints
方法 or 属性: reference?: BreakpointsReference,|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowOptions|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowOptions
方法 or 属性: gutter?: Length \| GutterOption;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowOptions
方法 or 属性: columns?: number \| GridRowColumnOption;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowOptions
方法 or 属性: breakpoints?: BreakPoints;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowOptions
方法 or 属性: direction?: GridRowDirection;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowInterface|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowInterface
方法 or 属性: (option?: GridRowOptions): GridRowAttribute;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowAttribute|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: GridRowAttribute
方法 or 属性: onBreakpointChange(callback: (breakpoints: string) => void): GridRowAttribute;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: global
方法 or 属性: declare const GridRow: GridRowInterface;|grid_row.d.ts| +|新增|NA|模块名: grid_row
类名: global
方法 or 属性: declare const GridRowInstance: GridRowAttribute;|grid_row.d.ts| +|新增|NA|类名:ImageAttribute
方法or属性:colorFilter(value: ColorFilter): ImageAttribute;|image.d.ts| +|新增|NA|类名:ImageAttribute
方法or属性:copyOption(value: CopyOptions): ImageAttribute;|image.d.ts| +|新增|NA|类名:ImageAttribute
方法or属性:draggable(value: boolean): ImageAttribute;|image.d.ts| +|新增|NA|类名:ImageAttribute
方法or属性:onError(callback: (event?: { componentWidth: number; componentHeight: number; message: string }) => void): ImageAttribute;|image.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:src: string \| Resource;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:src: string \| Resource;|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:width?: number \| string;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:width?: number \| string;|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:height?: number \| string;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:height?: number \| string;|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:top?: number \| string;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:top?: number \| string;|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:left?: number \| string;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:left?: number \| string;|image_animator.d.ts| +|新增|NA|模块名: image_animator
类名: ImageFrameInfo
方法 or 属性:duration?: number;|image_animator.d.ts| +|新增|NA|类名:ImageFrameInfo
方法or属性:duration?: number;|image_animator.d.ts| +|新增|NA|模块名: list
类名: ListItemAlign|list.d.ts| +|新增|NA|类名:ListItemAlign
方法or属性:|list.d.ts| +|新增|NA|模块名: list
类名: ListItemAlign
方法 or 属性:Start|list.d.ts| +|新增|NA|类名:ListItemAlign
方法or属性:Start|list.d.ts| +|新增|NA|模块名: list
类名: ListItemAlign
方法 or 属性:Center|list.d.ts| +|新增|NA|类名:ListItemAlign
方法or属性:Center|list.d.ts| +|新增|NA|模块名: list
类名: ListItemAlign
方法 or 属性:End|list.d.ts| +|新增|NA|类名:ListItemAlign
方法or属性:End|list.d.ts| +|新增|NA|模块名: list
类名: StickyStyle|list.d.ts| +|新增|NA|类名:StickyStyle
方法or属性:|list.d.ts| +|新增|NA|模块名: list
类名: StickyStyle
方法 or 属性:None = 0|list.d.ts| +|新增|NA|类名:StickyStyle
方法or属性:None = 0|list.d.ts| +|新增|NA|模块名: list
类名: StickyStyle
方法 or 属性:Header = 1|list.d.ts| +|新增|NA|类名:StickyStyle
方法or属性:Header = 1|list.d.ts| +|新增|NA|模块名: list
类名: StickyStyle
方法 or 属性:Footer = 2|list.d.ts| +|新增|NA|类名:StickyStyle
方法or属性:Footer = 2|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:lanes(value: number \| LengthConstrain): ListAttribute;|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:alignListItem(value: ListItemAlign): ListAttribute;|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:sticky(value: StickyStyle): ListAttribute;|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:onScrollStart(event: () => void): ListAttribute;|list.d.ts| +|新增|NA|类名:ListAttribute
方法or属性:onScrollFrameBegin(event: (offset: number, state: ScrollState) => { offsetRemain: number }): ListAttribute;|list.d.ts| +|新增|NA|模块名: list_item
类名: SwipeEdgeEffect|list_item.d.ts| +|新增|NA|类名:SwipeEdgeEffect
方法or属性:|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeEdgeEffect
方法 or 属性:Spring|list_item.d.ts| +|新增|NA|类名:SwipeEdgeEffect
方法or属性:Spring|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeEdgeEffect
方法 or 属性:None|list_item.d.ts| +|新增|NA|类名:SwipeEdgeEffect
方法or属性:None|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeActionOptions|list_item.d.ts| +|新增|NA|类名:SwipeActionOptions
方法or属性:|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeActionOptions
方法 or 属性:start?: CustomBuilder;|list_item.d.ts| +|新增|NA|类名:SwipeActionOptions
方法or属性:start?: CustomBuilder;|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeActionOptions
方法 or 属性:end?: CustomBuilder;|list_item.d.ts| +|新增|NA|类名:SwipeActionOptions
方法or属性:end?: CustomBuilder;|list_item.d.ts| +|新增|NA|模块名: list_item
类名: SwipeActionOptions
方法 or 属性:edgeEffect?: SwipeEdgeEffect;|list_item.d.ts| +|新增|NA|类名:SwipeActionOptions
方法or属性:edgeEffect?: SwipeEdgeEffect;|list_item.d.ts| +|新增|NA|类名:ListItemAttribute
方法or属性:swipeAction(value: SwipeActionOptions): ListItemAttribute;|list_item.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupOptions|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupOptions
方法 or 属性: header?: CustomBuilder;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupOptions
方法 or 属性: footer?: CustomBuilder;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupOptions
方法 or 属性: space?: number \| string;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupInterface|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupInterface
方法 or 属性: (options?: ListItemGroupOptions): ListItemGroupAttribute;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupAttribute|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: ListItemGroupAttribute
方法 or 属性: divider(
value: {
strokeWidth: Length;
color?: ResourceColor;
startMargin?: Length;
endMargin?: Length;
} \| null,
): ListItemGroupAttribute;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: global
方法 or 属性: declare const ListItemGroupInstance: ListItemGroupAttribute;|list_item_group.d.ts| +|新增|NA|模块名: list_item_group
类名: global
方法 or 属性: declare const ListItemGroup: ListItemGroupInterface;|list_item_group.d.ts| +|新增|NA|模块名: menu
类名: MenuInterface|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuInterface
方法 or 属性: (): MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuAttribute|menu.d.ts| +|新增|NA|模块名: menu
类名: MenuAttribute
方法 or 属性: fontSize(value: Length): MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu
类名: global
方法 or 属性: declare const Menu: MenuInterface;|menu.d.ts| +|新增|NA|模块名: menu
类名: global
方法 or 属性: declare const MenuInstance: MenuAttribute;|menu.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: startIcon?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: content?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: endIcon?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: labelInfo?: ResourceStr;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemOptions
方法 or 属性: builder?: CustomBuilder;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemInterface|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemInterface
方法 or 属性: (value?: MenuItemOptions \| CustomBuilder): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: selected(value: boolean): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: selectIcon(value: boolean): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: MenuItemAttribute
方法 or 属性: onChange(callback: (selected: boolean) => void): MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: global
方法 or 属性: declare const MenuItem: MenuItemInterface;|menu_item.d.ts| +|新增|NA|模块名: menu_item
类名: global
方法 or 属性: declare const MenuItemInstance: MenuItemAttribute;|menu_item.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions
方法 or 属性: header?: ResourceStr \| CustomBuilder;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupOptions
方法 or 属性: footer?: ResourceStr \| CustomBuilder;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupInterface|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupInterface
方法 or 属性: (value?: MenuItemGroupOptions): MenuItemGroupAttribute;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: MenuItemGroupAttribute|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: global
方法 or 属性: declare const MenuItemGroup: MenuItemGroupInterface;|menu_item_group.d.ts| +|新增|NA|模块名: menu_item_group
类名: global
方法 or 属性: declare const MenuItemGroupInstance: MenuItemGroupAttribute;|menu_item_group.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCommonTitle|navigation.d.ts| +|新增|NA|类名:NavigationCommonTitle
方法or属性:|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCommonTitle
方法 or 属性:main: string;|navigation.d.ts| +|新增|NA|类名:NavigationCommonTitle
方法or属性:main: string;|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCommonTitle
方法 or 属性:sub: string;|navigation.d.ts| +|新增|NA|类名:NavigationCommonTitle
方法or属性:sub: string;|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCustomTitle|navigation.d.ts| +|新增|NA|类名:NavigationCustomTitle
方法or属性:|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCustomTitle
方法 or 属性:builder: CustomBuilder;|navigation.d.ts| +|新增|NA|类名:NavigationCustomTitle
方法or属性:builder: CustomBuilder;|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationCustomTitle
方法 or 属性:height: TitleHeight \| Length;|navigation.d.ts| +|新增|NA|类名:NavigationCustomTitle
方法or属性:height: TitleHeight \| Length;|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationMode|navigation.d.ts| +|新增|NA|类名:NavigationMode
方法or属性:|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationMode
方法 or 属性:Stack|navigation.d.ts| +|新增|NA|类名:NavigationMode
方法or属性:Stack|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationMode
方法 or 属性:Split|navigation.d.ts| +|新增|NA|类名:NavigationMode
方法or属性:Split|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavigationMode
方法 or 属性:Auto|navigation.d.ts| +|新增|NA|类名:NavigationMode
方法or属性:Auto|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavBarPosition|navigation.d.ts| +|新增|NA|类名:NavBarPosition
方法or属性:|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavBarPosition
方法 or 属性:Start|navigation.d.ts| +|新增|NA|类名:NavBarPosition
方法or属性:Start|navigation.d.ts| +|新增|NA|模块名: navigation
类名: NavBarPosition
方法 or 属性:End|navigation.d.ts| +|新增|NA|类名:NavBarPosition
方法or属性:End|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:navBarWidth(value: Length): NavigationAttribute;|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:navBarPosition(value: NavBarPosition): NavigationAttribute;|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:mode(value: NavigationMode): NavigationAttribute;|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:backButtonIcon(value: string \| PixelMap \| Resource): NavigationAttribute;|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:hideNavBar(value: boolean): NavigationAttribute;|navigation.d.ts| +|新增|NA|类名:NavigationAttribute
方法or属性:onNavBarStateChange(callback: (isVisible: boolean) => void): NavigationAttribute;|navigation.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCommonTitle|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCommonTitle
方法 or 属性: main: string;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCommonTitle
方法 or 属性: sub: string;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCustomTitle|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCustomTitle
方法 or 属性: builder: CustomBuilder;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationCustomTitle
方法 or 属性: height: TitleHeight \| Length;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationInterface|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationInterface
方法 or 属性: (): NavDestinationAttribute;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationAttribute|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationAttribute
方法 or 属性: title(value: string \| CustomBuilder \| NavDestinationCommonTitle \| NavDestinationCustomTitle): NavDestinationAttribute;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: NavDestinationAttribute
方法 or 属性: hideTitleBar(value: boolean): NavDestinationAttribute;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: global
方法 or 属性: declare const NavDestination: NavDestinationInterface;|nav_destination.d.ts| +|新增|NA|模块名: nav_destination
类名: global
方法 or 属性: declare const NavDestinationInstance: NavDestinationAttribute;|nav_destination.d.ts| +|新增|NA|模块名: nav_router
类名: NavRouterInterface|nav_router.d.ts| +|新增|NA|模块名: nav_router
类名: NavRouterInterface
方法 or 属性: (): NavRouterAttribute;|nav_router.d.ts| +|新增|NA|模块名: nav_router
类名: NavRouterAttribute|nav_router.d.ts| +|新增|NA|模块名: nav_router
类名: NavRouterAttribute
方法 or 属性: onStateChange(callback: (isActivated: boolean) => void): NavRouterAttribute;|nav_router.d.ts| +|新增|NA|模块名: nav_router
类名: global
方法 or 属性: declare const NavRouter: NavRouterInterface;|nav_router.d.ts| +|新增|NA|模块名: nav_router
类名: global
方法 or 属性: declare const NavRouterInstance: NavRouterAttribute;|nav_router.d.ts| +|新增|NA|模块名: panel
类名: PanelAttribute
方法 or 属性:backgroundMask(color: ResourceColor): PanelAttribute;|panel.d.ts| +|新增|NA|类名:PanelAttribute
方法or属性:backgroundMask(color: ResourceColor): PanelAttribute;|panel.d.ts| +|新增|NA|模块名: panel
类名: PanelAttribute
方法 or 属性:onHeightChange(callback: (value: number) => void): PanelAttribute;|panel.d.ts| +|新增|NA|类名:PanelAttribute
方法or属性:onHeightChange(callback: (value: number) => void): PanelAttribute;|panel.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockController|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockController
方法 or 属性: constructor();|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockController
方法 or 属性: reset();|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockInterface|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockInterface
方法 or 属性: (controller?: PatternLockController): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: sideLength(value: Length): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: circleRadius(value: Length): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: backgroundColor(value: ResourceColor): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: regularColor(value: ResourceColor): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: selectedColor(value: ResourceColor): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: activeColor(value: ResourceColor): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: pathColor(value: ResourceColor): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: pathStrokeWidth(value: number \| string): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: onPatternComplete(callback: (input: Array\) => void): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: PatternLockAttribute
方法 or 属性: autoReset(value: boolean): PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: global
方法 or 属性: declare const PatternLock: PatternLockInterface;|pattern_lock.d.ts| +|新增|NA|模块名: pattern_lock
类名: global
方法 or 属性: declare const PatternLockInstance: PatternLockAttribute;|pattern_lock.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentTemplate|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentTemplate
方法 or 属性: source: string;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentTemplate
方法 or 属性: bundleName: string;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentInterface|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentInterface
方法 or 属性: (value: { template: PluginComponentTemplate; data: any }): PluginComponentAttribute;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentAttribute|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentAttribute
方法 or 属性: onComplete(callback: () => void): PluginComponentAttribute;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: PluginComponentAttribute
方法 or 属性: onError(callback: (info: { errcode: number; msg: string }) => void): PluginComponentAttribute;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: global
方法 or 属性: declare const PluginComponent: PluginComponentInterface;|plugin_component.d.ts| +|新增|NA|模块名: plugin_component
类名: global
方法 or 属性: declare const PluginComponentInstance: PluginComponentAttribute;|plugin_component.d.ts| +|新增|NA|类名:global
方法or属性:declare const RectInstance: RectAttribute;|rect.d.ts| +|新增|NA|模块名: relative_container
类名: RelativeContainerInterface|relative_container.d.ts| +|新增|NA|模块名: relative_container
类名: RelativeContainerInterface
方法 or 属性: (): RelativeContainerAttribute;|relative_container.d.ts| +|新增|NA|模块名: relative_container
类名: RelativeContainerAttribute|relative_container.d.ts| +|新增|NA|模块名: relative_container
类名: global
方法 or 属性: declare const RelativeContainer : RelativeContainerInterface;|relative_container.d.ts| +|新增|NA|模块名: relative_container
类名: global
方法 or 属性: declare const RelativeContainerInstance: RelativeContainerAttribute;|relative_container.d.ts| +|新增|NA|模块名: remote_window
类名: RRect|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RRect
方法 or 属性: left: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RRect
方法 or 属性: top: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RRect
方法 or 属性: width: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RRect
方法 or 属性: height: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RRect
方法 or 属性: radius: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: WindowAnimationTarget|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: WindowAnimationTarget
方法 or 属性: readonly bundleName: string;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: WindowAnimationTarget
方法 or 属性: readonly abilityName: string;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: WindowAnimationTarget
方法 or 属性: readonly windowBounds: RRect;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: WindowAnimationTarget
方法 or 属性: readonly missionId: number;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RemoteWindowInterface|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RemoteWindowInterface
方法 or 属性: (target: WindowAnimationTarget): RemoteWindowAttribute;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: RemoteWindowAttribute|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: global
方法 or 属性: declare const RemoteWindow: RemoteWindowInterface;|remote_window.d.ts| +|新增|NA|模块名: remote_window
类名: global
方法 or 属性: declare const RemoteWindowInstance: RemoteWindowAttribute;|remote_window.d.ts| +|新增|NA|类名:Scroller
方法or属性:scrollPage(value: { next: boolean });|scroll.d.ts| +|新增|NA|类名:Scroller
方法or属性:scrollBy(dx: Length, dy: Length);|scroll.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollStart(event: () => void): ScrollAttribute;|scroll.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollStop(event: () => void): ScrollAttribute;|scroll.d.ts| +|新增|NA|类名:ScrollAttribute
方法or属性:onScrollFrameBegin(event: (offset: number, state: ScrollState) => { offsetRemain: number }): ScrollAttribute;|scroll.d.ts| +|新增|NA|模块名: search
类名: SearchAttribute
方法 or 属性:copyOption(value: CopyOptions): SearchAttribute;|search.d.ts| +|新增|NA|类名:SearchAttribute
方法or属性:copyOption(value: CopyOptions): SearchAttribute;|search.d.ts| +|新增|NA|模块名: search
类名: SearchAttribute
方法 or 属性:textAlign(value: TextAlign): SearchAttribute;|search.d.ts| +|新增|NA|类名:SearchAttribute
方法or属性:textAlign(value: TextAlign): SearchAttribute;|search.d.ts| +|新增|NA|类名:ShapeInterface
方法or属性:(value: PixelMap): ShapeAttribute;|shape.d.ts| +|新增|NA|类名:ShapeInterface
方法or属性:(): ShapeAttribute;|shape.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarPosition|sidebar.d.ts| +|新增|NA|类名:SideBarPosition
方法or属性:|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarPosition
方法 or 属性:Start|sidebar.d.ts| +|新增|NA|类名:SideBarPosition
方法or属性:Start|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarPosition
方法 or 属性:End|sidebar.d.ts| +|新增|NA|类名:SideBarPosition
方法or属性:End|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarContainerAttribute
方法 or 属性:sideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|类名:SideBarContainerAttribute
方法or属性:sideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarContainerAttribute
方法 or 属性:minSideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|类名:SideBarContainerAttribute
方法or属性:minSideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarContainerAttribute
方法 or 属性:maxSideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|类名:SideBarContainerAttribute
方法or属性:maxSideBarWidth(value: Length): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarContainerAttribute
方法 or 属性:autoHide(value: boolean): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|类名:SideBarContainerAttribute
方法or属性:autoHide(value: boolean): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|模块名: sidebar
类名: SideBarContainerAttribute
方法 or 属性:sideBarPosition(value: SideBarPosition): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|类名:SideBarContainerAttribute
方法or属性:sideBarPosition(value: SideBarPosition): SideBarContainerAttribute;|sidebar.d.ts| +|新增|NA|模块名: swiper
类名: SwiperAttribute
方法 or 属性:onAnimationStart(event: (index: number) => void): SwiperAttribute;|swiper.d.ts| +|新增|NA|类名:SwiperAttribute
方法or属性:onAnimationStart(event: (index: number) => void): SwiperAttribute;|swiper.d.ts| +|新增|NA|模块名: swiper
类名: SwiperAttribute
方法 or 属性:onAnimationEnd(event: (index: number) => void): SwiperAttribute;|swiper.d.ts| +|新增|NA|类名:SwiperAttribute
方法or属性:onAnimationEnd(event: (index: number) => void): SwiperAttribute;|swiper.d.ts| +|新增|NA|模块名: tabs
类名: TabsAttribute
方法 or 属性:barPosition(value: BarPosition): TabsAttribute;|tabs.d.ts| +|新增|NA|类名:TabsAttribute
方法or属性:barPosition(value: BarPosition): TabsAttribute;|tabs.d.ts| +|新增|NA|模块名: tab_content
类名: SubTabBarStyle|tab_content.d.ts| +|新增|NA|类名:SubTabBarStyle
方法or属性:|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: SubTabBarStyle
方法 or 属性:constructor(content: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:SubTabBarStyle
方法or属性:constructor(content: string \| Resource);|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: BottomTabBarStyle|tab_content.d.ts| +|新增|NA|类名:BottomTabBarStyle
方法or属性:|tab_content.d.ts| +|新增|NA|模块名: tab_content
类名: BottomTabBarStyle
方法 or 属性:constructor(icon: string \| Resource, text: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:BottomTabBarStyle
方法or属性:constructor(icon: string \| Resource, text: string \| Resource);|tab_content.d.ts| +|新增|NA|类名:TabContentAttribute
方法or属性:tabBar(value: SubTabBarStyle \| BottomTabBarStyle): TabContentAttribute;|tab_content.d.ts| +|新增|NA|类名:TextAttribute
方法or属性:copyOption(value: CopyOptions): TextAttribute;|text.d.ts| +|新增|NA|模块名: text_area
类名: TextAreaAttribute
方法 or 属性:copyOption(value: CopyOptions): TextAreaAttribute;|text_area.d.ts| +|新增|NA|类名:TextAreaAttribute
方法or属性:copyOption(value: CopyOptions): TextAreaAttribute;|text_area.d.ts| +|新增|NA|模块名: text_input
类名: InputType
方法 or 属性:PhoneNumber|text_input.d.ts| +|新增|NA|类名:InputType
方法or属性:PhoneNumber|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputStyle|text_input.d.ts| +|新增|NA|类名:TextInputStyle
方法or属性:|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputStyle
方法 or 属性:Default|text_input.d.ts| +|新增|NA|类名:TextInputStyle
方法or属性:Default|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputStyle
方法 or 属性:Inline|text_input.d.ts| +|新增|NA|类名:TextInputStyle
方法or属性:Inline|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputAttribute
方法 or 属性:copyOption(value: CopyOptions): TextInputAttribute;|text_input.d.ts| +|新增|NA|类名:TextInputAttribute
方法or属性:copyOption(value: CopyOptions): TextInputAttribute;|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputAttribute
方法 or 属性:showPasswordIcon(value: boolean): TextInputAttribute;|text_input.d.ts| +|新增|NA|类名:TextInputAttribute
方法or属性:showPasswordIcon(value: boolean): TextInputAttribute;|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputAttribute
方法 or 属性:textAlign(value: TextAlign): TextInputAttribute;|text_input.d.ts| +|新增|NA|类名:TextInputAttribute
方法or属性:textAlign(value: TextAlign): TextInputAttribute;|text_input.d.ts| +|新增|NA|模块名: text_input
类名: TextInputAttribute
方法 or 属性:style(value: TextInputStyle): TextInputAttribute;|text_input.d.ts| +|新增|NA|类名:TextInputAttribute
方法or属性:style(value: TextInputStyle): TextInputAttribute;|text_input.d.ts| +|新增|NA|模块名: units
类名: Resource
方法 or 属性:readonly bundleName: string;|units.d.ts| +|新增|NA|类名:Resource
方法or属性:readonly bundleName: string;|units.d.ts| +|新增|NA|模块名: units
类名: Resource
方法 or 属性:readonly moduleName: string;|units.d.ts| +|新增|NA|类名:Resource
方法or属性:readonly moduleName: string;|units.d.ts| +|新增|NA|类名:BorderOptions
方法or属性:width?: EdgeWidths \| Length;|units.d.ts| +|新增|NA|类名:BorderOptions
方法or属性:color?: EdgeColors \| ResourceColor;|units.d.ts| +|新增|NA|类名:BorderOptions
方法or属性:radius?: BorderRadiuses \| Length;|units.d.ts| +|新增|NA|类名:BorderOptions
方法or属性:style?: EdgeStyles \| BorderStyle;|units.d.ts| +|新增|NA|模块名: units
类名: ColorFilter|units.d.ts| +|新增|NA|类名:ColorFilter
方法or属性:|units.d.ts| +|新增|NA|模块名: units
类名: ColorFilter
方法 or 属性:constructor(value: number[]);|units.d.ts| +|新增|NA|类名:ColorFilter
方法or属性:constructor(value: number[]);|units.d.ts| +|新增|NA|模块名: units
类名: GlobalResource|units.d.ts| +|新增|NA|类名:GlobalResource
方法or属性:|units.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowOptions|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowOptions
方法 or 属性: footer?: CustomBuilder;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowOptions
方法 or 属性: scroller?: Scroller;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowInterface|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowInterface
方法 or 属性: (options?: WaterFlowOptions): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: columnsTemplate(value: string): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: itemConstraintSize(value: ConstraintSizeOptions): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: rowsTemplate(value: string): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: columnsGap(value: Length): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: rowsGap(value: Length): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: layoutDirection(value: FlexDirection): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: onReachStart(event: () => void): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: WaterFlowAttribute
方法 or 属性: onReachEnd(event: () => void): WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: global
方法 or 属性: declare const WaterFlow: WaterFlowInterface;|water_flow.d.ts| +|新增|NA|模块名: water_flow
类名: global
方法 or 属性: declare const WaterFlowInstance: WaterFlowAttribute;|water_flow.d.ts| +|新增|NA|模块名: web
类名: CacheMode
方法 or 属性:Default|web.d.ts| +|新增|NA|类名:CacheMode
方法or属性:Default|web.d.ts| +|新增|NA|模块名: web
类名: WebDarkMode|web.d.ts| +|新增|NA|类名:WebDarkMode
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: WebDarkMode
方法 or 属性:Off|web.d.ts| +|新增|NA|类名:WebDarkMode
方法or属性:Off|web.d.ts| +|新增|NA|模块名: web
类名: WebDarkMode
方法 or 属性:On|web.d.ts| +|新增|NA|类名:WebDarkMode
方法or属性:On|web.d.ts| +|新增|NA|模块名: web
类名: WebDarkMode
方法 or 属性:Auto|web.d.ts| +|新增|NA|类名:WebDarkMode
方法or属性:Auto|web.d.ts| +|新增|NA|模块名: web
类名: FullScreenExitHandler|web.d.ts| +|新增|NA|类名:FullScreenExitHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: FullScreenExitHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:FullScreenExitHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: FullScreenExitHandler
方法 or 属性:exitFullScreen(): void;|web.d.ts| +|新增|NA|类名:FullScreenExitHandler
方法or属性:exitFullScreen(): void;|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason
方法 or 属性:ProcessAbnormalTermination|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:ProcessAbnormalTermination|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason
方法 or 属性:ProcessWasKilled|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:ProcessWasKilled|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason
方法 or 属性:ProcessCrashed|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:ProcessCrashed|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason
方法 or 属性:ProcessOom|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:ProcessOom|web.d.ts| +|新增|NA|模块名: web
类名: RenderExitReason
方法 or 属性:ProcessExitUnknown|web.d.ts| +|新增|NA|类名:RenderExitReason
方法or属性:ProcessExitUnknown|web.d.ts| +|新增|NA|模块名: web
类名: SslError|web.d.ts| +|新增|NA|类名:SslError
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: SslError
方法 or 属性:Invalid|web.d.ts| +|新增|NA|类名:SslError
方法or属性:Invalid|web.d.ts| +|新增|NA|模块名: web
类名: SslError
方法 or 属性:HostMismatch|web.d.ts| +|新增|NA|类名:SslError
方法or属性:HostMismatch|web.d.ts| +|新增|NA|模块名: web
类名: SslError
方法 or 属性:DateInvalid|web.d.ts| +|新增|NA|类名:SslError
方法or属性:DateInvalid|web.d.ts| +|新增|NA|模块名: web
类名: SslError
方法 or 属性:Untrusted|web.d.ts| +|新增|NA|类名:SslError
方法or属性:Untrusted|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorMode|web.d.ts| +|新增|NA|类名:FileSelectorMode
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorMode
方法 or 属性:FileOpenMode|web.d.ts| +|新增|NA|类名:FileSelectorMode
方法or属性:FileOpenMode|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorMode
方法 or 属性:FileOpenMultipleMode|web.d.ts| +|新增|NA|类名:FileSelectorMode
方法or属性:FileOpenMultipleMode|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorMode
方法 or 属性:FileOpenFolderMode|web.d.ts| +|新增|NA|类名:FileSelectorMode
方法or属性:FileOpenFolderMode|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorMode
方法 or 属性:FileSaveMode|web.d.ts| +|新增|NA|类名:FileSelectorMode
方法or属性:FileSaveMode|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam
方法 or 属性:getTitle(): string;|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:getTitle(): string;|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam
方法 or 属性:getMode(): FileSelectorMode;|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:getMode(): FileSelectorMode;|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam
方法 or 属性:getAcceptType(): Array\;|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:getAcceptType(): Array\;|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorParam
方法 or 属性:isCapture(): boolean;|web.d.ts| +|新增|NA|类名:FileSelectorParam
方法or属性:isCapture(): boolean;|web.d.ts| +|新增|NA|模块名: web
类名: JsResult
方法 or 属性:handlePromptConfirm(result: string): void;|web.d.ts| +|新增|NA|类名:JsResult
方法or属性:handlePromptConfirm(result: string): void;|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorResult|web.d.ts| +|新增|NA|类名:FileSelectorResult
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorResult
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:FileSelectorResult
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: FileSelectorResult
方法 or 属性:handleFileList(fileList: Array\): void;|web.d.ts| +|新增|NA|类名:FileSelectorResult
方法or属性:handleFileList(fileList: Array\): void;|web.d.ts| +|新增|NA|模块名: web
类名: HttpAuthHandler|web.d.ts| +|新增|NA|类名:HttpAuthHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: HttpAuthHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:HttpAuthHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: HttpAuthHandler
方法 or 属性:confirm(userName: string, password: string): boolean;|web.d.ts| +|新增|NA|类名:HttpAuthHandler
方法or属性:confirm(userName: string, password: string): boolean;|web.d.ts| +|新增|NA|模块名: web
类名: HttpAuthHandler
方法 or 属性:cancel(): void;|web.d.ts| +|新增|NA|类名:HttpAuthHandler
方法or属性:cancel(): void;|web.d.ts| +|新增|NA|模块名: web
类名: HttpAuthHandler
方法 or 属性:isHttpAuthInfoSaved(): boolean;|web.d.ts| +|新增|NA|类名:HttpAuthHandler
方法or属性:isHttpAuthInfoSaved(): boolean;|web.d.ts| +|新增|NA|模块名: web
类名: SslErrorHandler|web.d.ts| +|新增|NA|类名:SslErrorHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: SslErrorHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:SslErrorHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: SslErrorHandler
方法 or 属性:handleConfirm(): void;|web.d.ts| +|新增|NA|类名:SslErrorHandler
方法or属性:handleConfirm(): void;|web.d.ts| +|新增|NA|模块名: web
类名: SslErrorHandler
方法 or 属性:handleCancel(): void;|web.d.ts| +|新增|NA|类名:SslErrorHandler
方法or属性:handleCancel(): void;|web.d.ts| +|新增|NA|模块名: web
类名: ClientAuthenticationHandler|web.d.ts| +|新增|NA|类名:ClientAuthenticationHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ClientAuthenticationHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:ClientAuthenticationHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: ClientAuthenticationHandler
方法 or 属性:confirm(priKeyFile : string, certChainFile : string): void;|web.d.ts| +|新增|NA|类名:ClientAuthenticationHandler
方法or属性:confirm(priKeyFile : string, certChainFile : string): void;|web.d.ts| +|新增|NA|模块名: web
类名: ClientAuthenticationHandler
方法 or 属性:cancel(): void;|web.d.ts| +|新增|NA|类名:ClientAuthenticationHandler
方法or属性:cancel(): void;|web.d.ts| +|新增|NA|模块名: web
类名: ClientAuthenticationHandler
方法 or 属性:ignore(): void;|web.d.ts| +|新增|NA|类名:ClientAuthenticationHandler
方法or属性:ignore(): void;|web.d.ts| +|新增|NA|模块名: web
类名: ProtectedResourceType|web.d.ts| +|新增|NA|类名:ProtectedResourceType
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ProtectedResourceType
方法 or 属性:MidiSysex = "TYPE_MIDI_SYSEX"|web.d.ts| +|新增|NA|类名:ProtectedResourceType
方法or属性:MidiSysex = "TYPE_MIDI_SYSEX"|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest
方法 or 属性:deny(): void;|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:deny(): void;|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest
方法 or 属性:getOrigin(): string;|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:getOrigin(): string;|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest
方法 or 属性:getAccessibleResource(): Array\;|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:getAccessibleResource(): Array\;|web.d.ts| +|新增|NA|模块名: web
类名: PermissionRequest
方法 or 属性:grant(resources: Array\): void;|web.d.ts| +|新增|NA|类名:PermissionRequest
方法or属性:grant(resources: Array\): void;|web.d.ts| +|新增|NA|模块名: web
类名: DataResubmissionHandler|web.d.ts| +|新增|NA|类名:DataResubmissionHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: DataResubmissionHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:DataResubmissionHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: DataResubmissionHandler
方法 or 属性:resend(): void;|web.d.ts| +|新增|NA|类名:DataResubmissionHandler
方法or属性:resend(): void;|web.d.ts| +|新增|NA|模块名: web
类名: DataResubmissionHandler
方法 or 属性:cancel(): void;|web.d.ts| +|新增|NA|类名:DataResubmissionHandler
方法or属性:cancel(): void;|web.d.ts| +|新增|NA|模块名: web
类名: ControllerHandler|web.d.ts| +|新增|NA|类名:ControllerHandler
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ControllerHandler
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:ControllerHandler
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: ControllerHandler
方法 or 属性:setWebController(controller: WebviewController): void;|web.d.ts| +|新增|NA|类名:ControllerHandler
方法or属性:setWebController(controller: WebviewController): void;|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuSourceType|web.d.ts| +|新增|NA|类名:ContextMenuSourceType
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuSourceType
方法 or 属性:None|web.d.ts| +|新增|NA|类名:ContextMenuSourceType
方法or属性:None|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuSourceType
方法 or 属性:Mouse|web.d.ts| +|新增|NA|类名:ContextMenuSourceType
方法or属性:Mouse|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuSourceType
方法 or 属性:LongPress|web.d.ts| +|新增|NA|类名:ContextMenuSourceType
方法or属性:LongPress|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuMediaType|web.d.ts| +|新增|NA|类名:ContextMenuMediaType
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuMediaType
方法 or 属性:None|web.d.ts| +|新增|NA|类名:ContextMenuMediaType
方法or属性:None|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuMediaType
方法 or 属性:Image|web.d.ts| +|新增|NA|类名:ContextMenuMediaType
方法or属性:Image|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:None|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:None|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:PlainText|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:PlainText|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:Password|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:Password|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:Number|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:Number|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:Telephone|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:Telephone|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuInputFieldType
方法 or 属性:Other|web.d.ts| +|新增|NA|类名:ContextMenuInputFieldType
方法or属性:Other|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags
方法 or 属性:NONE = 0|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:NONE = 0|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags
方法 or 属性:CAN_CUT = 1 \<\< 0|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:CAN_CUT = 1 \<\< 0|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags
方法 or 属性:CAN_COPY = 1 \<\< 1|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:CAN_COPY = 1 \<\< 1|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags
方法 or 属性:CAN_PASTE = 1 \<\< 2|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:CAN_PASTE = 1 \<\< 2|web.d.ts| +|新增|NA|模块名: web
类名: ContextMenuEditStateFlags
方法 or 属性:CAN_SELECT_ALL = 1 \<\< 3|web.d.ts| +|新增|NA|类名:ContextMenuEditStateFlags
方法or属性:CAN_SELECT_ALL = 1 \<\< 3|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:x(): number;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:x(): number;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:y(): number;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:y(): number;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getLinkUrl(): string;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getLinkUrl(): string;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getUnfilteredLinkUrl(): string;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getUnfilteredLinkUrl(): string;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getSourceUrl(): string;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getSourceUrl(): string;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:existsImageContents(): boolean;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:existsImageContents(): boolean;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getMediaType(): ContextMenuMediaType;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getMediaType(): ContextMenuMediaType;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getSelectionText(): string;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getSelectionText(): string;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getSourceType(): ContextMenuSourceType;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getSourceType(): ContextMenuSourceType;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getInputFieldType(): ContextMenuInputFieldType;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getInputFieldType(): ContextMenuInputFieldType;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:isEditable(): boolean;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:isEditable(): boolean;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuParam
方法 or 属性:getEditStateFlags(): number;|web.d.ts| +|新增|NA|类名:WebContextMenuParam
方法or属性:getEditStateFlags(): number;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:constructor();|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:closeContextMenu(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:closeContextMenu(): void;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:copyImage(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:copyImage(): void;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:copy(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:copy(): void;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:paste(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:paste(): void;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:cut(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:cut(): void;|web.d.ts| +|新增|NA|模块名: web
类名: WebContextMenuResult
方法 or 属性:selectAll(): void;|web.d.ts| +|新增|NA|类名:WebContextMenuResult
方法or属性:selectAll(): void;|web.d.ts| +|新增|NA|类名:ConsoleMessage
方法or属性:constructor();|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceRequest
方法 or 属性:getRequestMethod(): string;|web.d.ts| +|新增|NA|类名:WebResourceRequest
方法or属性:getRequestMethod(): string;|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseData(data: string \| number);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseData(data: string \| number);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseEncoding(encoding: string);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseEncoding(encoding: string);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseMimeType(mimeType: string);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseMimeType(mimeType: string);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setReasonMessage(reason: string);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setReasonMessage(reason: string);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseHeader(header: Array\
);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseHeader(header: Array\
);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseCode(code: number);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseCode(code: number);|web.d.ts| +|新增|NA|模块名: web
类名: WebResourceResponse
方法 or 属性:setResponseIsReady(IsReady: boolean);|web.d.ts| +|新增|NA|类名:WebResourceResponse
方法or属性:setResponseIsReady(IsReady: boolean);|web.d.ts| +|新增|NA|类名:WebController
方法or属性:getCookieManager() : WebCookie|web.d.ts| +|新增|NA|类名:WebOptions
方法or属性:controller: WebController \| WebviewController;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:darkMode(mode: WebDarkMode): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:forceDarkAccess(access: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:textZoomRatio(textZoomRatio: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:initialScale(percent: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onPrompt(callback: (event?: {url: string, message: string, value: string, result: JsResult }) => boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onRenderExited(callback: (event?: { renderExitReason: RenderExitReason }) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onShowFileSelector(callback: (event?: { result: FileSelectorResult,
fileSelector: FileSelectorParam }) => boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onResourceLoad(callback: (event: {url: string}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onFullScreenExit(callback: () => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onFullScreenEnter(callback: (event: { handler: FullScreenExitHandler}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onScaleChange(callback: (event: {oldScale: number, newScale: number}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onHttpAuthRequest(callback: (event?: { handler: HttpAuthHandler, host: string, realm: string }) => boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onPermissionRequest(callback: (event?: { request: PermissionRequest }) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onContextMenuShow(callback: (event?: { param: WebContextMenuParam, result: WebContextMenuResult }) => boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:mediaPlayGestureAccess(access: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onSearchResultReceive(callback: (event?: {activeMatchOrdinal: number, numberOfMatches: number, isDoneCounting: boolean}) => void): WebAttribute|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onScroll(callback: (event: {xOffset: number, yOffset: number}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslError }) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationHandler, host : string, port : number,
keyTypes : Array\, issuers : Array\}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onWindowNew(callback: (event: {isAlert: boolean, isUserTrigger: boolean, targetUrl: string,
handler: ControllerHandler}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onWindowExit(callback: () => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:multiWindowAccess(multiWindow: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onInterceptKeyEvent(callback: (event: KeyEvent) => boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webStandardFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webSerifFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webSansSerifFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webFixedFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webFantasyFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:webCursiveFont(family: string): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:defaultFixedFontSize(size: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:defaultFontSize(size: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:minFontSize(size: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:minLogicalFontSize(size: number): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:blockNetwork(block: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:horizontalScrollBarAccess(horizontalScrollBar: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:verticalScrollBarAccess(verticalScrollBar: boolean): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onTouchIconUrlReceived(callback: (event: {url: string,
precomposed: boolean}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onFaviconReceived(callback: (event: {favicon: PixelMap}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onPageVisible(callback: (event: {url: string}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:onDataResubmitted(callback: (event: {handler: DataResubmissionHandler}) => void): WebAttribute;|web.d.ts| +|新增|NA|类名:WebAttribute
方法or属性:pinchSmooth(isEnabled: boolean): WebAttribute;|web.d.ts| +|新增|NA|模块名: viewmodel
类名: OffscreenCanvasRenderingContext2D
方法 or 属性: drawImage(image: image.PixelMap, dx: number, dy: number, dw: number, dh: number): void;|viewmodel.d.ts| +|新增|NA|模块名: viewmodel
类名: OffscreenCanvasRenderingContext2D
方法 or 属性: drawImage(
image: image.PixelMap,
sx: number,
sy: number,
sw: number,
sh: number,
dx: number,
dy: number,
dw: number,
dh: number,
): void;|viewmodel.d.ts| +|新增|NA|模块名: viewmodel
类名: OffscreenCanvasRenderingContext2D
方法 or 属性: getPixelMap(sx: number, sy: number, sw: number, sh: number): image.PixelMap|viewmodel.d.ts| +|新增|NA|模块名: viewmodel
类名: CanvasRenderingContext2D
方法 or 属性: drawImage(image: image.PixelMap, dx: number, dy: number, dWidth: number, dHeight: number): void;|viewmodel.d.ts| +|新增|NA|模块名: viewmodel
类名: CanvasRenderingContext2D
方法 or 属性: drawImage(
image: image.PixelMap,
sx: number,
sy: number,
sWidth: number,
sHeight: number,
dx: number,
dy: number,
dWidth: number,
dHeight: number,
): void;|viewmodel.d.ts| +|新增|NA|模块名: viewmodel
类名: CanvasRenderingContext2D
方法 or 属性: getPixelMap(sx: number, sy: number, sw: number, sh: number): image.PixelMap|viewmodel.d.ts| +|删除|模块名: canvas
类名: CanvasPattern|NA|canvas.d.ts| +|删除|模块名: canvas
类名: CanvasPattern
方法 or 属性:setTransform(transform?: Matrix2D): void;|NA|canvas.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:filter(filter: string): void;|NA|canvas.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:imageSmoothingQuality(quality: ImageSmoothingQuality): void;|NA|canvas.d.ts| +|删除|模块名:canvas
类名:CanvasRenderer
方法 or 属性:direction(direction: CanvasDirection): void;|NA|canvas.d.ts| +|删除|模块名:common
类名:global
方法 or 属性:declare const isSystemplugin: (...args: string[]) => any;|NA|common.d.ts| +|删除|模块名: state_management
类名: IPropertySubscriber|NA|state_management.d.ts| +|删除|模块名: state_management
类名: IPropertySubscriber
方法 or 属性:id(): number;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: IPropertySubscriber
方法 or 属性:aboutToBeDeleted(owningView?: IPropertySubscriber): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: ISinglePropertyChangeSubscriber|NA|state_management.d.ts| +|删除|模块名: state_management
类名: ISinglePropertyChangeSubscriber
方法 or 属性:hasChanged(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:protected subscribers_: Set\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:private id_;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:private info_?;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:constructor(
/**
* Subscriber IPropertySubscriber.
* @since 7
* @systemapi
*/
subscribeMe?: IPropertySubscriber,
/**
* Subscriber info.
* @since 7
* @systemapi
*/
info?: string,
);|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:id(): number;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:info(): string;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:abstract get(): T;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:abstract set(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:createTwoWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyTwoWay\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:createOneWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyOneWay\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:unlinkSuscriber(subscriberId: number): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:protected notifyHasChanged(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:protected notifyPropertyRead(): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribedAbstractProperty
方法 or 属性:numberOfSubscrbers(): number;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:private source_;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:constructor(source: SubscribedAbstractProperty\, subscribeMe?: IPropertySubscriber, info?: string);|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:aboutToBeDeleted(unsubscribeMe?: IPropertySubscriber): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:hasChanged(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:get(): T;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyTwoWay
方法 or 属性:set(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:private wrappedValue_;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:private source_;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:constructor(source: SubscribedAbstractProperty\, subscribeMe?: IPropertySubscriber, info?: string);|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:aboutToBeDeleted(unsubscribeMe?: IPropertySubscriber): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:hasChanged(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:get(): T;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SyncedPropertyOneWay
方法 or 属性:set(newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Link(propName: string): any;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static SetAndLink\(propName: string, defaultValue: T): SubscribedAbstractProperty\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Prop(propName: string): any;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static SetAndProp\(propName: string, defaultValue: S): SubscribedAbstractProperty\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Has(propName: string): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Get\(propName: string): T \| undefined;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Set\(propName: string, newValue: T): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static SetOrCreate\(propName: string, newValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Delete(propName: string): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Keys(): IterableIterator\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static staticClear(): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static IsMutable(propName: string): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: AppStorage
方法 or 属性:static Size(): number;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: Environment|NA|state_management.d.ts| +|删除|模块名: state_management
类名: Environment
方法 or 属性:constructor();|NA|state_management.d.ts| +|删除|模块名: state_management
类名: Environment
方法 or 属性:static EnvProp\(key: string, value: S): boolean;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: Environment
方法 or 属性:static EnvProps(
props: {
key: string;
defaultValue: any;
}[],
): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: Environment
方法 or 属性:static Keys(): Array\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage
方法 or 属性:constructor(appStorage: AppStorage, storage: Storage);|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage
方法 or 属性:static PersistProp\(key: string, defaultValue: T): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage
方法 or 属性:static DeleteProp(key: string): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage
方法 or 属性:static PersistProps(
properties: {
key: string;
defaultValue: any;
}[],
): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: PersistentStorage
方法 or 属性:static Keys(): Array\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:private owningProperties_: Set\;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:constructor();|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:protected notifyPropertyHasChanged(propName: string, newValue: any): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:public addOwningProperty(subscriber: IPropertySubscriber): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:public removeOwningProperty(property: IPropertySubscriber): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: SubscribaleAbstract
方法 or 属性:public removeOwningPropertyById(subscriberId: number): void;|NA|state_management.d.ts| +|删除|模块名: state_management
类名: global
方法 or 属性:declare const appStorage: AppStorage;|NA|state_management.d.ts| +|访问级别有变化|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
访问级别:系统API|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
访问级别:公开API|global.d.ts| +|访问级别有变化|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
访问级别:系统API|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
访问级别:公开API|global.d.ts| +|访问级别有变化|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
访问级别:系统API|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
访问级别:公开API|global.d.ts| +|访问级别有变化|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
访问级别:系统API|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
访问级别:公开API|global.d.ts| +|访问级别有变化|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
访问级别:系统API|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
访问级别:公开API|global.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
访问级别:系统API|animator.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
访问级别:系统API|animator.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
访问级别:系统API|calendar.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
访问级别:系统API|calendar.d.ts| +|访问级别有变化|类名:PreviewParams
访问级别:系统API|类名:PreviewParams
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:title?: string;
访问级别:系统API|类名:PreviewParams
方法 or 属性:title?: string;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:width?: number;
访问级别:系统API|类名:PreviewParams
方法 or 属性:width?: number;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:height?: number;
访问级别:系统API|类名:PreviewParams
方法 or 属性:height?: number;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:locale?: string;
访问级别:系统API|类名:PreviewParams
方法 or 属性:locale?: string;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:colorMode?: string;
访问级别:系统API|类名:PreviewParams
方法 or 属性:colorMode?: string;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:deviceType?: string;
访问级别:系统API|类名:PreviewParams
方法 or 属性:deviceType?: string;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:dpi?: number;
访问级别:系统API|类名:PreviewParams
方法 or 属性:dpi?: number;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:orientation?: string;
访问级别:系统API|类名:PreviewParams
方法 or 属性:orientation?: string;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:PreviewParams
方法 or 属性:roundScreen?: boolean;
访问级别:系统API|类名:PreviewParams
方法 or 属性:roundScreen?: boolean;
访问级别:公开API|common.d.ts| +|访问级别有变化|类名:CommonShapeMethod
方法 or 属性:constructor();
访问级别:公开API|类名:CommonShapeMethod
方法 or 属性:constructor();
访问级别:系统API|common.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
访问级别:公开API|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
访问级别:系统API|form_component.d.ts| +|访问级别有变化|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
访问级别:公开API|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
访问级别:系统API|form_component.d.ts| +|废弃版本有变化|类名:AnimatorResult
方法 or 属性:update(options: AnimatorOptions): void;
废弃版本:N/A|类名:AnimatorResult
方法 or 属性:update(options: AnimatorOptions): void;
废弃版本:9
代替接口:ohos.animator.reset |@ohos.animator.d.ts| +|废弃版本有变化|类名:Animator
方法 or 属性:static createAnimator(options: AnimatorOptions): AnimatorResult;
废弃版本:N/A|类名:Animator
方法 or 属性:static createAnimator(options: AnimatorOptions): AnimatorResult;
废弃版本:9
代替接口:ohos.animator.create |@ohos.animator.d.ts| +|废弃版本有变化|类名:curves
方法 or 属性:function init(curve?: Curve): string;
废弃版本:N/A|类名:curves
方法 or 属性:function init(curve?: Curve): string;
废弃版本:9
代替接口:initCurve |@ohos.curves.d.ts| +|废弃版本有变化|类名:curves
方法 or 属性:function steps(count: number, end: boolean): string;
废弃版本:N/A|类名:curves
方法 or 属性:function steps(count: number, end: boolean): string;
废弃版本:9
代替接口:stepsCurve |@ohos.curves.d.ts| +|废弃版本有变化|类名:curves
方法 or 属性:function cubicBezier(x1: number, y1: number, x2: number, y2: number): string;
废弃版本:N/A|类名:curves
方法 or 属性:function cubicBezier(x1: number, y1: number, x2: number, y2: number): string;
废弃版本:9
代替接口:cubicBezierCurve |@ohos.curves.d.ts| +|废弃版本有变化|类名:curves
方法 or 属性:function spring(velocity: number, mass: number, stiffness: number, damping: number): string;
废弃版本:N/A|类名:curves
方法 or 属性:function spring(velocity: number, mass: number, stiffness: number, damping: number): string;
废弃版本:9
代替接口:springCurve |@ohos.curves.d.ts| +|废弃版本有变化|类名:prompt
废弃版本:N/A|类名:prompt
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:router
方法 or 属性:function push(options: RouterOptions):void;
废弃版本:N/A|类名:router
方法 or 属性:function push(options: RouterOptions):void;
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|类名:router
方法 or 属性:function replace(options: RouterOptions):void;
废弃版本:N/A|类名:router
方法 or 属性:function replace(options: RouterOptions):void;
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|类名:router
方法 or 属性:function enableAlertBeforeBackPage(options: EnableAlertOptions):void;
废弃版本:N/A|类名:router
方法 or 属性:function enableAlertBeforeBackPage(options: EnableAlertOptions):void;
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|类名:router
方法 or 属性:function disableAlertBeforeBackPage():void;
废弃版本:N/A|类名:router
方法 or 属性:function disableAlertBeforeBackPage():void;
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|类名:CommonMethod
方法 or 属性:touchable(value: boolean): T;
废弃版本:N/A|类名:CommonMethod
方法 or 属性:touchable(value: boolean): T;
废弃版本:9
代替接口:hitTestBehavior |common.d.ts| +|废弃版本有变化|类名:Edge
方法 or 属性:Center
废弃版本:N/A|类名:Edge
方法 or 属性:Center
废弃版本:9
代替接口:N/A|enums.d.ts| +|废弃版本有变化|类名:Edge
方法 or 属性:Baseline
废弃版本:N/A|类名:Edge
方法 or 属性:Baseline
废弃版本:9
代替接口:N/A|enums.d.ts| +|废弃版本有变化|类名:Edge
方法 or 属性:Middle
废弃版本:N/A|类名:Edge
方法 or 属性:Middle
废弃版本:9
代替接口:N/A|enums.d.ts| +|废弃版本有变化|类名:GridItemAttribute
方法 or 属性:forceRebuild(value: boolean): GridItemAttribute;
废弃版本:N/A|类名:GridItemAttribute
方法 or 属性:forceRebuild(value: boolean): GridItemAttribute;
废弃版本:9
代替接口:N/A|gridItem.d.ts| +|废弃版本有变化|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
废弃版本:N/A|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
废弃版本:9
代替接口:grid_col/|grid_container.d.ts| +|废弃版本有变化|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
废弃版本:N/A|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
废弃版本:9
代替接口:grid_col/|grid_container.d.ts| +|废弃版本有变化|类名:ImageAnimatorAttribute
方法 or 属性:preDecode(value: number): ImageAnimatorAttribute;
废弃版本:N/A|类名:ImageAnimatorAttribute
方法 or 属性:preDecode(value: number): ImageAnimatorAttribute;
废弃版本:9
代替接口:N/A|image_animator.d.ts| +|废弃版本有变化|类名:ListAttribute
方法 or 属性:editMode(value: boolean): ListAttribute;
废弃版本:N/A|类名:ListAttribute
方法 or 属性:editMode(value: boolean): ListAttribute;
废弃版本:9
代替接口:N/A|list.d.ts| +|废弃版本有变化|类名:ListAttribute
方法 or 属性:onItemDelete(event: (index: number) => boolean): ListAttribute;
废弃版本:N/A|类名:ListAttribute
方法 or 属性:onItemDelete(event: (index: number) => boolean): ListAttribute;
废弃版本:9
代替接口:N/A|list.d.ts| +|废弃版本有变化|类名:EditMode
废弃版本:N/A|类名:EditMode
废弃版本:9
代替接口:N/A|list_item.d.ts| +|废弃版本有变化|类名:ListItemAttribute
方法 or 属性:editable(value: boolean \| EditMode): ListItemAttribute;
废弃版本:N/A|类名:ListItemAttribute
方法 or 属性:editable(value: boolean \| EditMode): ListItemAttribute;
废弃版本:9
代替接口:N/A|list_item.d.ts| +|废弃版本有变化|类名:NavigationAttribute
方法 or 属性:subTitle(value: string): NavigationAttribute;
废弃版本:N/A|类名:NavigationAttribute
方法 or 属性:subTitle(value: string): NavigationAttribute;
废弃版本:9
代替接口:title |navigation.d.ts| +|废弃版本有变化|类名:global
方法 or 属性:declare const RectInStance: RectAttribute;
废弃版本:N/A|类名:global
方法 or 属性:declare const RectInStance: RectAttribute;
废弃版本:9
代替接口:N/A|rect.d.ts| +|废弃版本有变化|类名:ScrollDirection
方法 or 属性:Free
废弃版本:N/A|类名:ScrollDirection
方法 or 属性:Free
废弃版本:9
代替接口:N/A|scroll.d.ts| +|废弃版本有变化|类名:Scroller
方法 or 属性:scrollPage(value: { next: boolean; direction?: Axis });
废弃版本:N/A|类名:Scroller
方法 or 属性:scrollPage(value: { next: boolean; direction?: Axis });
废弃版本:9
代替接口:N/A|scroll.d.ts| +|废弃版本有变化|类名:ScrollAttribute
方法 or 属性:onScrollEnd(event: () => void): ScrollAttribute;
废弃版本:N/A|类名:ScrollAttribute
方法 or 属性:onScrollEnd(event: () => void): ScrollAttribute;
废弃版本:9
代替接口:scroll/Scroll|scroll.d.ts| +|废弃版本有变化|类名:SliderAttribute
方法 or 属性:minLabel(value: string): SliderAttribute;
废弃版本:N/A|类名:SliderAttribute
方法 or 属性:minLabel(value: string): SliderAttribute;
废弃版本:9
代替接口:min |slider.d.ts| +|废弃版本有变化|类名:SliderAttribute
方法 or 属性:maxLabel(value: string): SliderAttribute;
废弃版本:N/A|类名:SliderAttribute
方法 or 属性:maxLabel(value: string): SliderAttribute;
废弃版本:9
代替接口:max |slider.d.ts| +|废弃版本有变化|类名:ConsoleMessage
方法 or 属性:constructor(message: string, sourceId: string, lineNumber: number, messageLevel: MessageLevel);
废弃版本:N/A|类名:ConsoleMessage
方法 or 属性:constructor(message: string, sourceId: string, lineNumber: number, messageLevel: MessageLevel);
废弃版本:9
代替接口:ohos.web.ConsoleMessage|web.d.ts| +|废弃版本有变化|类名:WebCookie
方法 or 属性:setCookie();
废弃版本:N/A|类名:WebCookie
方法 or 属性:setCookie();
废弃版本:9
代替接口:ohos.web.webview.webview.WebCookieManager|web.d.ts| +|废弃版本有变化|类名:WebCookie
方法 or 属性:saveCookie();
废弃版本:N/A|类名:WebCookie
方法 or 属性:saveCookie();
废弃版本:9
代替接口:ohos.web.webview.webview.WebCookieManager|web.d.ts| +|废弃版本有变化|类名:WebController
废弃版本:N/A|类名:WebController
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:constructor();
废弃版本:N/A|类名:WebController
方法 or 属性:constructor();
废弃版本:9
代替接口:N/A|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:onInactive(): void;
废弃版本:N/A|类名:WebController
方法 or 属性:onInactive(): void;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:onActive(): void;
废弃版本:N/A|类名:WebController
方法 or 属性:onActive(): void;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:zoom(factor: number): void;
废弃版本:N/A|类名:WebController
方法 or 属性:zoom(factor: number): void;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:clearHistory(): void;
废弃版本:N/A|类名:WebController
方法 or 属性:clearHistory(): void;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:runJavaScript(options: { script: string, callback?: (result: string) => void });
废弃版本:N/A|类名:WebController
方法 or 属性:runJavaScript(options: { script: string, callback?: (result: string) => void });
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:loadData(options: { data: string, mimeType: string, encoding: string, baseUrl?: string, historyUrl?: string });
废弃版本:N/A|类名:WebController
方法 or 属性:loadData(options: { data: string, mimeType: string, encoding: string, baseUrl?: string, historyUrl?: string });
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:loadUrl(options: { url: string \| Resource, headers?: Array\
});
废弃版本:N/A|类名:WebController
方法 or 属性:loadUrl(options: { url: string \| Resource, headers?: Array\
});
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:refresh();
废弃版本:N/A|类名:WebController
方法 or 属性:refresh();
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:stop();
废弃版本:N/A|类名:WebController
方法 or 属性:stop();
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:registerJavaScriptProxy(options: { object: object, name: string, methodList: Array\ });
废弃版本:N/A|类名:WebController
方法 or 属性:registerJavaScriptProxy(options: { object: object, name: string, methodList: Array\ });
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:deleteJavaScriptRegister(name: string);
废弃版本:N/A|类名:WebController
方法 or 属性:deleteJavaScriptRegister(name: string);
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:getHitTest(): HitTestType;
废弃版本:N/A|类名:WebController
方法 or 属性:getHitTest(): HitTestType;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:requestFocus();
废弃版本:N/A|类名:WebController
方法 or 属性:requestFocus();
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:accessBackward(): boolean;
废弃版本:N/A|类名:WebController
方法 or 属性:accessBackward(): boolean;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:accessForward(): boolean;
废弃版本:N/A|类名:WebController
方法 or 属性:accessForward(): boolean;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:accessStep(step: number): boolean;
废弃版本:N/A|类名:WebController
方法 or 属性:accessStep(step: number): boolean;
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:backward();
废弃版本:N/A|类名:WebController
方法 or 属性:backward();
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebController
方法 or 属性:forward();
废弃版本:N/A|类名:WebController
方法 or 属性:forward();
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|类名:WebAttribute
方法 or 属性:textZoomAtio(textZoomAtio: number): WebAttribute;
废弃版本:N/A|类名:WebAttribute
方法 or 属性:textZoomAtio(textZoomAtio: number): WebAttribute;
废弃版本:9
代替接口:ohos.web.WebAttribute|web.d.ts| +|废弃版本有变化|类名:WebAttribute
方法 or 属性:onSslErrorReceive(callback: (event?: { handler: Function, error: object }) => void): WebAttribute;
废弃版本:N/A|类名:WebAttribute
方法 or 属性:onSslErrorReceive(callback: (event?: { handler: Function, error: object }) => void): WebAttribute;
废弃版本:9
代替接口:ohos.web.WebAttribute|web.d.ts| +|废弃版本有变化|类名:WebAttribute
方法 or 属性:onRenderExited(callback: (event?: { detail: object }) => boolean): WebAttribute;
废弃版本:N/A|类名:WebAttribute
方法 or 属性:onRenderExited(callback: (event?: { detail: object }) => boolean): WebAttribute;
废弃版本:9
代替接口:ohos.web.WebAttribute|web.d.ts| +|废弃版本有变化|类名:WebAttribute
方法 or 属性:onFileSelectorShow(callback: (event?: { callback: Function, fileSelector: object }) => void): WebAttribute;
废弃版本:N/A|类名:WebAttribute
方法 or 属性:onFileSelectorShow(callback: (event?: { callback: Function, fileSelector: object }) => void): WebAttribute;
废弃版本:9
代替接口:ohos.web.WebAttribute|web.d.ts| +|起始版本有变化|类名:console
起始版本:7|类名:console
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
起始版本:7|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
起始版本:9|global.d.ts| +|起始版本有变化|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
起始版本:8|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
起始版本:9|global.d.ts| +|起始版本有变化|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
起始版本:8|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
起始版本:9|global.d.ts| +|起始版本有变化|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
起始版本:8|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
起始版本:9|global.d.ts| +|起始版本有变化|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
起始版本:8|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
起始版本:9|global.d.ts| +|起始版本有变化|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
起始版本:8|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
起始版本:9|global.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AlphabetIndexer: AlphabetIndexerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const AlphabetIndexer: AlphabetIndexerInterface;
起始版本:7|alphabet_indexer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AlphabetIndexerInstance: AlphabetIndexerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const AlphabetIndexerInstance: AlphabetIndexerAttribute;
起始版本:7|alphabet_indexer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Animator: AnimatorInterface;
起始版本:7|animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const AnimatorInstance: AnimatorAttribute;
起始版本:7|animator.d.ts| +|起始版本有变化|类名:BadgePosition
起始版本:7|类名:BadgePosition
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:RightTop
起始版本:7|类名:BadgePosition
方法 or 属性:RightTop
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:Right
起始版本:7|类名:BadgePosition
方法 or 属性:Right
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgePosition
方法 or 属性:Left
起始版本:7|类名:BadgePosition
方法 or 属性:Left
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
起始版本:7|类名:BadgeStyle
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:color?: ResourceColor;
起始版本:7|类名:BadgeStyle
方法 or 属性:color?: ResourceColor;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:fontSize?: number \| string;
起始版本:7|类名:BadgeStyle
方法 or 属性:fontSize?: number \| string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:badgeSize?: number \| string;
起始版本:7|类名:BadgeStyle
方法 or 属性:badgeSize?: number \| string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeStyle
方法 or 属性:badgeColor?: ResourceColor;
起始版本:7|类名:BadgeStyle
方法 or 属性:badgeColor?: ResourceColor;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
起始版本:7|类名:BadgeParam
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
方法 or 属性:position?: BadgePosition;
起始版本:7|类名:BadgeParam
方法 or 属性:position?: BadgePosition;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParam
方法 or 属性:style: BadgeStyle;
起始版本:7|类名:BadgeParam
方法 or 属性:style: BadgeStyle;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
起始版本:7|类名:BadgeParamWithNumber
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
方法 or 属性:count: number;
起始版本:7|类名:BadgeParamWithNumber
方法 or 属性:count: number;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithNumber
方法 or 属性:maxCount?: number;
起始版本:7|类名:BadgeParamWithNumber
方法 or 属性:maxCount?: number;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithString
起始版本:7|类名:BadgeParamWithString
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeParamWithString
方法 or 属性:value: string;
起始版本:7|类名:BadgeParamWithString
方法 or 属性:value: string;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
起始版本:7|类名:BadgeInterface
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithNumber): BadgeAttribute;
起始版本:7|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithNumber): BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithString): BadgeAttribute;
起始版本:7|类名:BadgeInterface
方法 or 属性:(value: BadgeParamWithString): BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BadgeAttribute
起始版本:7|类名:BadgeAttribute
起始版本:9|badge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Badge: BadgeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Badge: BadgeInterface;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BadgeInstance: BadgeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const BadgeInstance: BadgeAttribute;
起始版本:9|badge.d.ts| +|起始版本有变化|类名:BlankInterface
起始版本:7|类名:BlankInterface
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankInterface
方法 or 属性:(min?: number \| string): BlankAttribute;
起始版本:7|类名:BlankInterface
方法 or 属性:(min?: number \| string): BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankAttribute
起始版本:7|类名:BlankAttribute
起始版本:9|blank.d.ts| +|起始版本有变化|类名:BlankAttribute
方法 or 属性:color(value: ResourceColor): BlankAttribute;
起始版本:7|类名:BlankAttribute
方法 or 属性:color(value: ResourceColor): BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Blank: BlankInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Blank: BlankInterface;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BlankInstance: BlankAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const BlankInstance: BlankAttribute;
起始版本:9|blank.d.ts| +|起始版本有变化|类名:ButtonType
起始版本:7|类名:ButtonType
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Capsule
起始版本:7|类名:ButtonType
方法 or 属性:Capsule
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Circle
起始版本:7|类名:ButtonType
方法 or 属性:Circle
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonType
方法 or 属性:Normal
起始版本:7|类名:ButtonType
方法 or 属性:Normal
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
起始版本:7|类名:ButtonOptions
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
方法 or 属性:type?: ButtonType;
起始版本:7|类名:ButtonOptions
方法 or 属性:type?: ButtonType;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonOptions
方法 or 属性:stateEffect?: boolean;
起始版本:7|类名:ButtonOptions
方法 or 属性:stateEffect?: boolean;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
起始版本:7|类名:ButtonInterface
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(options: ButtonOptions): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(options: ButtonOptions): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonInterface
方法 or 属性:(label: ResourceStr, options?: ButtonOptions): ButtonAttribute;
起始版本:7|类名:ButtonInterface
方法 or 属性:(label: ResourceStr, options?: ButtonOptions): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
起始版本:7|类名:ButtonAttribute
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:type(value: ButtonType): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:type(value: ButtonType): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:stateEffect(value: boolean): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:stateEffect(value: boolean): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontColor(value: ResourceColor): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontColor(value: ResourceColor): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontSize(value: Length): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontSize(value: Length): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): ButtonAttribute;
起始版本:7|类名:ButtonAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontStyle(value: FontStyle): ButtonAttribute;
起始版本:8|类名:ButtonAttribute
方法 or 属性:fontStyle(value: FontStyle): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:ButtonAttribute
方法 or 属性:fontFamily(value: string \| Resource): ButtonAttribute;
起始版本:8|类名:ButtonAttribute
方法 or 属性:fontFamily(value: string \| Resource): ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Button: ButtonInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Button: ButtonInterface;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ButtonInstance: ButtonAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ButtonInstance: ButtonAttribute;
起始版本:9|button.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Calendar: CalendarInterface;
起始版本:7|calendar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CalendarInstance: CalendarAttribute;
起始版本:7|calendar.d.ts| +|起始版本有变化|类名:CanvasGradient
起始版本:8|类名:CanvasGradient
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasGradient
方法 or 属性:addColorStop(offset: number, color: string): void;
起始版本:8|类名:CanvasGradient
方法 or 属性:addColorStop(offset: number, color: string): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
起始版本:8|类名:CanvasPath
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
起始版本:8|类名:CanvasPath
方法 or 属性:arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:closePath(): void;
起始版本:8|类名:CanvasPath
方法 or 属性:closePath(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:ellipse(
x: number,
y: number,
radiusX: number,
radiusY: number,
rotation: number,
startAngle: number,
endAngle: number,
counterclockwise?: boolean,
): void;
起始版本:8|类名:CanvasPath
方法 or 属性:ellipse(
x: number,
y: number,
radiusX: number,
radiusY: number,
rotation: number,
startAngle: number,
endAngle: number,
counterclockwise?: boolean,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:lineTo(x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:lineTo(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:moveTo(x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:moveTo(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasPath
方法 or 属性:rect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasPath
方法 or 属性:rect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
起始版本:8|类名:Path2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:addPath(path: Path2D, transform?: Matrix2D): void;
起始版本:8|类名:Path2D
方法 or 属性:addPath(path: Path2D, transform?: Matrix2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor();
起始版本:8|类名:Path2D
方法 or 属性:constructor();
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor(path: Path2D);
起始版本:8|类名:Path2D
方法 or 属性:constructor(path: Path2D);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:Path2D
方法 or 属性:constructor(d: string);
起始版本:8|类名:Path2D
方法 or 属性:constructor(d: string);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
起始版本:8|类名:TextMetrics
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxLeft: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxLeft: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxRight: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly actualBoundingBoxRight: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly alphabeticBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly alphabeticBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly emHeightAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly emHeightAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly emHeightDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly emHeightDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxAscent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxAscent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxDescent: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly fontBoundingBoxDescent: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly hangingBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly hangingBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly ideographicBaseline: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly ideographicBaseline: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly width: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:TextMetrics
方法 or 属性:readonly height: number;
起始版本:8|类名:TextMetrics
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
起始版本:8|类名:ImageBitmap
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:readonly height: number;
起始版本:8|类名:ImageBitmap
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:readonly width: number;
起始版本:8|类名:ImageBitmap
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:close(): void;
起始版本:8|类名:ImageBitmap
方法 or 属性:close(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageBitmap
方法 or 属性:constructor(src: string);
起始版本:8|类名:ImageBitmap
方法 or 属性:constructor(src: string);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
起始版本:8|类名:ImageData
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly data: Uint8ClampedArray;
起始版本:8|类名:ImageData
方法 or 属性:readonly data: Uint8ClampedArray;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly height: number;
起始版本:8|类名:ImageData
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:readonly width: number;
起始版本:8|类名:ImageData
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:ImageData
方法 or 属性:constructor(width: number, height: number, data?: Uint8ClampedArray);
起始版本:8|类名:ImageData
方法 or 属性:constructor(width: number, height: number, data?: Uint8ClampedArray);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
起始版本:8|类名:RenderingContextSettings
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
方法 or 属性:antialias?: boolean;
起始版本:8|类名:RenderingContextSettings
方法 or 属性:antialias?: boolean;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:RenderingContextSettings
方法 or 属性:constructor(antialias?: boolean);
起始版本:8|类名:RenderingContextSettings
方法 or 属性:constructor(antialias?: boolean);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
起始版本:8|类名:CanvasRenderer
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:globalAlpha: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:globalAlpha: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:globalCompositeOperation: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:globalCompositeOperation: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number, dw: number, dh: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(image: ImageBitmap \| PixelMap, dx: number, dy: number, dw: number, dh: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:drawImage(
image: ImageBitmap \| PixelMap,
sx: number,
sy: number,
sw: number,
sh: number,
dx: number,
dy: number,
dw: number,
dh: number,
): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:drawImage(
image: ImageBitmap \| PixelMap,
sx: number,
sy: number,
sw: number,
sh: number,
dx: number,
dy: number,
dw: number,
dh: number,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:beginPath(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:beginPath(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clip(fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clip(fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clip(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clip(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fill(fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fill(fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fill(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fill(path: Path2D, fillRule?: CanvasFillRule): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:stroke(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:stroke(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:stroke(path: Path2D): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:stroke(path: Path2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeStyle: string \| CanvasGradient \| CanvasPattern;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createPattern(image: ImageBitmap, repetition: string \| null): CanvasPattern \| null;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createPattern(image: ImageBitmap, repetition: string \| null): CanvasPattern \| null;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createImageData(sw: number, sh: number): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createImageData(sw: number, sh: number): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:createImageData(imagedata: ImageData): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:createImageData(imagedata: ImageData): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;
起始版本:8|类名:CanvasRenderer
方法 or 属性:getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:putImageData(imagedata: ImageData, dx: number, dy: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:putImageData(imagedata: ImageData, dx: number, dy: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:putImageData(
imagedata: ImageData,
dx: number,
dy: number,
dirtyX: number,
dirtyY: number,
dirtyWidth: number,
dirtyHeight: number,
): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:putImageData(
imagedata: ImageData,
dx: number,
dy: number,
dirtyX: number,
dirtyY: number,
dirtyWidth: number,
dirtyHeight: number,
): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:imageSmoothingEnabled: boolean;
起始版本:8|类名:CanvasRenderer
方法 or 属性:imageSmoothingEnabled: boolean;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineCap: CanvasLineCap;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineCap: CanvasLineCap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineDashOffset: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineDashOffset: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineJoin: CanvasLineJoin;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineJoin: CanvasLineJoin;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:lineWidth: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:lineWidth: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:miterLimit: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:miterLimit: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getLineDash(): number[];
起始版本:8|类名:CanvasRenderer
方法 or 属性:getLineDash(): number[];
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setLineDash(segments: number[]): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setLineDash(segments: number[]): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:clearRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:clearRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeRect(x: number, y: number, w: number, h: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeRect(x: number, y: number, w: number, h: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowBlur: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowBlur: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowColor: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowColor: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowOffsetX: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowOffsetX: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:shadowOffsetY: number;
起始版本:8|类名:CanvasRenderer
方法 or 属性:shadowOffsetY: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:restore(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:restore(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:save(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:save(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:fillText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:fillText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:measureText(text: string): TextMetrics;
起始版本:8|类名:CanvasRenderer
方法 or 属性:measureText(text: string): TextMetrics;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:strokeText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:strokeText(text: string, x: number, y: number, maxWidth?: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:font: string;
起始版本:8|类名:CanvasRenderer
方法 or 属性:font: string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:textAlign: CanvasTextAlign;
起始版本:8|类名:CanvasRenderer
方法 or 属性:textAlign: CanvasTextAlign;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:textBaseline: CanvasTextBaseline;
起始版本:8|类名:CanvasRenderer
方法 or 属性:textBaseline: CanvasTextBaseline;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:getTransform(): Matrix2D;
起始版本:8|类名:CanvasRenderer
方法 or 属性:getTransform(): Matrix2D;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:resetTransform(): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:resetTransform(): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:rotate(angle: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:rotate(angle: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:scale(x: number, y: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:scale(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:setTransform(transform?: Matrix2D): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:transform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:transform(a: number, b: number, c: number, d: number, e: number, f: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:translate(x: number, y: number): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:translate(x: number, y: number): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderer
方法 or 属性:transferFromImageBitmap(bitmap: ImageBitmap): void;
起始版本:8|类名:CanvasRenderer
方法 or 属性:transferFromImageBitmap(bitmap: ImageBitmap): void;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
起始版本:8|类名:CanvasRenderingContext2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:readonly height: number;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:readonly height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:readonly width: number;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:readonly width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasRenderingContext2D
方法 or 属性:constructor(settings?: RenderingContextSettings);
起始版本:8|类名:CanvasRenderingContext2D
方法 or 属性:constructor(settings?: RenderingContextSettings);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
起始版本:8|类名:OffscreenCanvasRenderingContext2D
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:toDataURL(type?: string, quality?: any): string;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:constructor(width: number, height: number, settings?: RenderingContextSettings);
起始版本:8|类名:OffscreenCanvasRenderingContext2D
方法 or 属性:constructor(width: number, height: number, settings?: RenderingContextSettings);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
起始版本:8|类名:OffscreenCanvas
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:height: number;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:height: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:width: number;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:width: number;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:8|类名:OffscreenCanvas
方法 or 属性:transferToImageBitmap(): ImageBitmap;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:OffscreenCanvas
方法 or 属性:constructor(width: number, height: number);
起始版本:8|类名:OffscreenCanvas
方法 or 属性:constructor(width: number, height: number);
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasInterface
起始版本:8|类名:CanvasInterface
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasInterface
方法 or 属性:(context?: CanvasRenderingContext2D): CanvasAttribute;
起始版本:8|类名:CanvasInterface
方法 or 属性:(context?: CanvasRenderingContext2D): CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CanvasAttribute
方法 or 属性:onReady(event: () => void): CanvasAttribute;
起始版本:8|类名:CanvasAttribute
方法 or 属性:onReady(event: () => void): CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Canvas: CanvasInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Canvas: CanvasInterface;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CanvasInstance: CanvasAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CanvasInstance: CanvasAttribute;
起始版本:9|canvas.d.ts| +|起始版本有变化|类名:CheckboxOptions
起始版本:8|类名:CheckboxOptions
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxOptions
方法 or 属性:name?: string;
起始版本:8|类名:CheckboxOptions
方法 or 属性:name?: string;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxOptions
方法 or 属性:group?: string;
起始版本:8|类名:CheckboxOptions
方法 or 属性:group?: string;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxInterface
起始版本:8|类名:CheckboxInterface
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxInterface
方法 or 属性:(options?: CheckboxOptions): CheckboxAttribute;
起始版本:8|类名:CheckboxInterface
方法 or 属性:(options?: CheckboxOptions): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
起始版本:8|类名:CheckboxAttribute
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:select(value: boolean): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:select(value: boolean): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:CheckboxAttribute
方法 or 属性:onChange(callback: (value: boolean) => void): CheckboxAttribute;
起始版本:8|类名:CheckboxAttribute
方法 or 属性:onChange(callback: (value: boolean) => void): CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Checkbox: CheckboxInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Checkbox: CheckboxInterface;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxInstance: CheckboxAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxInstance: CheckboxAttribute;
起始版本:9|checkbox.d.ts| +|起始版本有变化|类名:SelectStatus
起始版本:8|类名:SelectStatus
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:All
起始版本:8|类名:SelectStatus
方法 or 属性:All
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:Part
起始版本:8|类名:SelectStatus
方法 or 属性:Part
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:SelectStatus
方法 or 属性:None
起始版本:8|类名:SelectStatus
方法 or 属性:None
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupOptions
起始版本:8|类名:CheckboxGroupOptions
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupOptions
方法 or 属性:group?: string;
起始版本:8|类名:CheckboxGroupOptions
方法 or 属性:group?: string;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
起始版本:8|类名:CheckboxGroupResult
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
方法 or 属性:name: Array\;
起始版本:8|类名:CheckboxGroupResult
方法 or 属性:name: Array\;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupResult
方法 or 属性:status: SelectStatus;
起始版本:8|类名:CheckboxGroupResult
方法 or 属性:status: SelectStatus;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupInterface
起始版本:8|类名:CheckboxGroupInterface
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupInterface
方法 or 属性:(options?: CheckboxGroupOptions): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupInterface
方法 or 属性:(options?: CheckboxGroupOptions): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
起始版本:8|类名:CheckboxGroupAttribute
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:selectAll(value: boolean): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:selectAll(value: boolean): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:selectedColor(value: ResourceColor): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CheckboxGroupAttribute
方法 or 属性:onChange(callback: (event: CheckboxGroupResult) => void): CheckboxGroupAttribute;
起始版本:8|类名:CheckboxGroupAttribute
方法 or 属性:onChange(callback: (event: CheckboxGroupResult) => void): CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxGroup: CheckboxGroupInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxGroup: CheckboxGroupInterface;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CheckboxGroupInstance: CheckboxGroupAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CheckboxGroupInstance: CheckboxGroupAttribute;
起始版本:9|checkboxgroup.d.ts| +|起始版本有变化|类名:CircleOptions
起始版本:7|类名:CircleOptions
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleOptions
方法 or 属性:width?: string \| number;
起始版本:7|类名:CircleOptions
方法 or 属性:width?: string \| number;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleOptions
方法 or 属性:height?: string \| number;
起始版本:7|类名:CircleOptions
方法 or 属性:height?: string \| number;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
起始版本:7|类名:CircleInterface
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
方法 or 属性:new (value?: CircleOptions): CircleAttribute;
起始版本:7|类名:CircleInterface
方法 or 属性:new (value?: CircleOptions): CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleInterface
方法 or 属性:(value?: CircleOptions): CircleAttribute;
起始版本:7|类名:CircleInterface
方法 or 属性:(value?: CircleOptions): CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:CircleAttribute
起始版本:7|类名:CircleAttribute
起始版本:9|circle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Circle: CircleInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Circle: CircleInterface;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CircleInstance: CircleAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CircleInstance: CircleAttribute;
起始版本:9|circle.d.ts| +|起始版本有变化|类名:ColumnInterface
起始版本:7|类名:ColumnInterface
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnInterface
方法 or 属性:(value?: { space?: string \| number }): ColumnAttribute;
起始版本:7|类名:ColumnInterface
方法 or 属性:(value?: { space?: string \| number }): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
起始版本:7|类名:ColumnAttribute
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
方法 or 属性:alignItems(value: HorizontalAlign): ColumnAttribute;
起始版本:7|类名:ColumnAttribute
方法 or 属性:alignItems(value: HorizontalAlign): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:ColumnAttribute
方法 or 属性:justifyContent(value: FlexAlign): ColumnAttribute;
起始版本:8|类名:ColumnAttribute
方法 or 属性:justifyContent(value: FlexAlign): ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Column: ColumnInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Column: ColumnInterface;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnInstance: ColumnAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnInstance: ColumnAttribute;
起始版本:9|column.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnSplitInstance: ColumnSplitAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnSplitInstance: ColumnSplitAttribute;
起始版本:7|column_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ColumnSplit: ColumnSplitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ColumnSplit: ColumnSplitInterface;
起始版本:7|column_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Component: ClassDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Component: ClassDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Observed: ClassDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Observed: ClassDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Preview: ClassDecorator & ((value: PreviewParams) => ClassDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Preview: ClassDecorator & ((value: PreviewParams) => ClassDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const BuilderParam: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const BuilderParam: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const State: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const State: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Prop: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Prop: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Link: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Link: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ObjectLink: PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const ObjectLink: PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Provide: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Provide: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Watch: (value: string) => PropertyDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Watch: (value: string) => PropertyDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Builder: MethodDecorator;
起始版本:7|类名:global
方法 or 属性:declare const Builder: MethodDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Styles: MethodDecorator;
起始版本:8|类名:global
方法 or 属性:declare const Styles: MethodDecorator;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Extend: MethodDecorator & ((value: any) => MethodDecorator);
起始版本:7|类名:global
方法 or 属性:declare const Extend: MethodDecorator & ((value: any) => MethodDecorator);
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
起始版本:7|类名:Configuration
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:readonly colorMode: string;
起始版本:7|类名:Configuration
方法 or 属性:readonly colorMode: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Configuration
方法 or 属性:readonly fontScale: number;
起始版本:7|类名:Configuration
方法 or 属性:readonly fontScale: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
起始版本:8|类名:Rectangle
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:x?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:x?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:y?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:y?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:width?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:width?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:Rectangle
方法 or 属性:height?: Length;
起始版本:8|类名:Rectangle
方法 or 属性:height?: Length;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function $r(value: string, ...params: any[]): Resource;
起始版本:7|类名:
方法 or 属性:function $r(value: string, ...params: any[]): Resource;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function $rawfile(value: string): Resource;
起始版本:7|类名:
方法 or 属性:function $rawfile(value: string): Resource;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
起始版本:7|类名:AnimateParam
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:duration?: number;
起始版本:7|类名:AnimateParam
方法 or 属性:duration?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:playMode?: PlayMode;
起始版本:7|类名:AnimateParam
方法 or 属性:playMode?: PlayMode;
起始版本:9|common.d.ts| +|起始版本有变化|类名:AnimateParam
方法 or 属性:onFinish?: () => void;
起始版本:7|类名:AnimateParam
方法 or 属性:onFinish?: () => void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
起始版本:7|类名:TranslateOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:x?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:x?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:y?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:y?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TranslateOptions
方法 or 属性:z?: number \| string;
起始版本:7|类名:TranslateOptions
方法 or 属性:z?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
起始版本:7|类名:ScaleOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:x?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:y?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:z?: number;
起始版本:7|类名:ScaleOptions
方法 or 属性:z?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:centerX?: number \| string;
起始版本:7|类名:ScaleOptions
方法 or 属性:centerX?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ScaleOptions
方法 or 属性:centerY?: number \| string;
起始版本:7|类名:ScaleOptions
方法 or 属性:centerY?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:x?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:y?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:7|类名:RotateOptions
方法 or 属性:z?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:centerX?: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:centerX?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:centerY?: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:centerY?: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:RotateOptions
方法 or 属性:angle: number \| string;
起始版本:7|类名:RotateOptions
方法 or 属性:angle: number \| string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
起始版本:7|类名:TransitionOptions
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:type?: TransitionType;
起始版本:7|类名:TransitionOptions
方法 or 属性:type?: TransitionType;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:opacity?: number;
起始版本:7|类名:TransitionOptions
方法 or 属性:opacity?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:translate?: TranslateOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:translate?: TranslateOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:scale?: ScaleOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:scale?: ScaleOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:TransitionOptions
方法 or 属性:rotate?: RotateOptions;
起始版本:7|类名:TransitionOptions
方法 or 属性:rotate?: RotateOptions;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
起始版本:8|类名:PreviewParams
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:title?: string;
起始版本:8|类名:PreviewParams
方法 or 属性:title?: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:width?: number;
起始版本:8|类名:PreviewParams
方法 or 属性:width?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:height?: number;
起始版本:8|类名:PreviewParams
方法 or 属性:height?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:locale?: string;
起始版本:8|类名:PreviewParams
方法 or 属性:locale?: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:colorMode?: string;
起始版本:8|类名:PreviewParams
方法 or 属性:colorMode?: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:deviceType?: string;
起始版本:8|类名:PreviewParams
方法 or 属性:deviceType?: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:dpi?: number;
起始版本:8|类名:PreviewParams
方法 or 属性:dpi?: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:orientation?: string;
起始版本:8|类名:PreviewParams
方法 or 属性:orientation?: string;
起始版本:9|common.d.ts| +|起始版本有变化|类名:PreviewParams
方法 or 属性:roundScreen?: boolean;
起始版本:8|类名:PreviewParams
方法 or 属性:roundScreen?: boolean;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function animateTo(value: AnimateParam, event: () => void): void;
起始版本:7|类名:
方法 or 属性:function animateTo(value: AnimateParam, event: () => void): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function vp2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function vp2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2vp(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2vp(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function fp2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function fp2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2fp(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2fp(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function lpx2px(value: number): number;
起始版本:7|类名:
方法 or 属性:function lpx2px(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:
方法 or 属性:function px2lpx(value: number): number;
起始版本:7|类名:
方法 or 属性:function px2lpx(value: number): number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:EventTarget
起始版本:8|类名:EventTarget
起始版本:9|common.d.ts| +|起始版本有变化|类名:EventTarget
方法 or 属性:area: Area;
起始版本:8|类名:EventTarget
方法 or 属性:area: Area;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
起始版本:8|类名:BaseEvent
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:target: EventTarget;
起始版本:8|类名:BaseEvent
方法 or 属性:target: EventTarget;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:timestamp: number;
起始版本:8|类名:BaseEvent
方法 or 属性:timestamp: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:BaseEvent
方法 or 属性:source: SourceType;
起始版本:8|类名:BaseEvent
方法 or 属性:source: SourceType;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
起始版本:7|类名:ClickEvent
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:screenX: number;
起始版本:7|类名:ClickEvent
方法 or 属性:screenX: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:screenY: number;
起始版本:7|类名:ClickEvent
方法 or 属性:screenY: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:x: number;
起始版本:7|类名:ClickEvent
方法 or 属性:x: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:ClickEvent
方法 or 属性:y: number;
起始版本:7|类名:ClickEvent
方法 or 属性:y: number;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
起始版本:8|类名:StateStyles
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:normal?: any;
起始版本:8|类名:StateStyles
方法 or 属性:normal?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:pressed?: any;
起始版本:8|类名:StateStyles
方法 or 属性:pressed?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:disabled?: any;
起始版本:8|类名:StateStyles
方法 or 属性:disabled?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:focused?: any;
起始版本:8|类名:StateStyles
方法 or 属性:focused?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:StateStyles
方法 or 属性:clicked?: any;
起始版本:8|类名:StateStyles
方法 or 属性:clicked?: any;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
起始版本:7|类名:CommonMethod
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:constructor();
起始版本:7|类名:CommonMethod
方法 or 属性:constructor();
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:width(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:width(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:height(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:height(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:responseRegion(value: Array\ \| Rectangle): T;
起始版本:8|类名:CommonMethod
方法 or 属性:responseRegion(value: Array\ \| Rectangle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:size(value: SizeOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:size(value: SizeOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:constraintSize(value: ConstraintSizeOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:constraintSize(value: ConstraintSizeOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:layoutWeight(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:layoutWeight(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:padding(value: Padding \| Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:padding(value: Padding \| Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:margin(value: Margin \| Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:margin(value: Margin \| Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundColor(value: ResourceColor): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundColor(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImage(src: ResourceStr, repeat?: ImageRepeat): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImage(src: ResourceStr, repeat?: ImageRepeat): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImageSize(value: SizeOptions \| ImageSize): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImageSize(value: SizeOptions \| ImageSize): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backgroundImagePosition(value: Position \| Alignment): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backgroundImagePosition(value: Position \| Alignment): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:opacity(value: number \| Resource): T;
起始版本:7|类名:CommonMethod
方法 or 属性:opacity(value: number \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:border(value: BorderOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:border(value: BorderOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderStyle(value: BorderStyle): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderStyle(value: BorderStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderWidth(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderWidth(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderColor(value: ResourceColor): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderColor(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:borderRadius(value: Length): T;
起始版本:7|类名:CommonMethod
方法 or 属性:borderRadius(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onClick(event: (event?: ClickEvent) => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onClick(event: (event?: ClickEvent) => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:animation(value: AnimateParam): T;
起始版本:7|类名:CommonMethod
方法 or 属性:animation(value: AnimateParam): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:transition(value: TransitionOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:transition(value: TransitionOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:blur(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:blur(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:brightness(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:brightness(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:contrast(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:contrast(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:grayscale(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:grayscale(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:colorBlend(value: Color \| string \| Resource): T;
起始版本:7|类名:CommonMethod
方法 or 属性:colorBlend(value: Color \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:saturate(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:saturate(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:sepia(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:sepia(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:invert(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:invert(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:hueRotate(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:hueRotate(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:backdropBlur(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:backdropBlur(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:translate(value: TranslateOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:translate(value: TranslateOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:scale(value: ScaleOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:scale(value: ScaleOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:rotate(value: RotateOptions): T;
起始版本:7|类名:CommonMethod
方法 or 属性:rotate(value: RotateOptions): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onAppear(event: () => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onAppear(event: () => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:onDisAppear(event: () => void): T;
起始版本:7|类名:CommonMethod
方法 or 属性:onDisAppear(event: () => void): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:visibility(value: Visibility): T;
起始版本:7|类名:CommonMethod
方法 or 属性:visibility(value: Visibility): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexGrow(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexGrow(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexShrink(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexShrink(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:flexBasis(value: number \| string): T;
起始版本:7|类名:CommonMethod
方法 or 属性:flexBasis(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:alignSelf(value: ItemAlign): T;
起始版本:7|类名:CommonMethod
方法 or 属性:alignSelf(value: ItemAlign): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:displayPriority(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:displayPriority(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:zIndex(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:zIndex(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:direction(value: Direction): T;
起始版本:7|类名:CommonMethod
方法 or 属性:direction(value: Direction): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:align(value: Alignment): T;
起始版本:7|类名:CommonMethod
方法 or 属性:align(value: Alignment): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:position(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:position(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:markAnchor(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:markAnchor(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:offset(value: Position): T;
起始版本:7|类名:CommonMethod
方法 or 属性:offset(value: Position): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:enabled(value: boolean): T;
起始版本:7|类名:CommonMethod
方法 or 属性:enabled(value: boolean): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:aspectRatio(value: number): T;
起始版本:7|类名:CommonMethod
方法 or 属性:aspectRatio(value: number): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:overlay(value: string, options?: { align?: Alignment; offset?: { x?: number; y?: number } }): T;
起始版本:7|类名:CommonMethod
方法 or 属性:overlay(value: string, options?: { align?: Alignment; offset?: { x?: number; y?: number } }): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:linearGradient(value: {
angle?: number \| string;
direction?: GradientDirection;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:linearGradient(value: {
angle?: number \| string;
direction?: GradientDirection;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:sweepGradient(value: {
center: Array\;
start?: number \| string;
end?: number \| string;
rotation?: number \| string;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:sweepGradient(value: {
center: Array\;
start?: number \| string;
end?: number \| string;
rotation?: number \| string;
colors: Array\;
repeating?: boolean;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:radialGradient(value: { center: Array\; radius: number \| string; colors: Array\; repeating?: boolean }): T;
起始版本:7|类名:CommonMethod
方法 or 属性:radialGradient(value: { center: Array\; radius: number \| string; colors: Array\; repeating?: boolean }): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:shadow(value: {
radius: number \| Resource;
color?: Color \| string \| Resource;
offsetX?: number \| Resource;
offsetY?: number \| Resource;
}): T;
起始版本:7|类名:CommonMethod
方法 or 属性:shadow(value: {
radius: number \| Resource;
color?: Color \| string \| Resource;
offsetX?: number \| Resource;
offsetY?: number \| Resource;
}): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:clip(value: boolean \| CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:7|类名:CommonMethod
方法 or 属性:clip(value: boolean \| CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:mask(value: CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:7|类名:CommonMethod
方法 or 属性:mask(value: CircleAttribute \| EllipseAttribute \| PathAttribute \| RectAttribute): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:id(value: string): T;
起始版本:8|类名:CommonMethod
方法 or 属性:id(value: string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonMethod
方法 or 属性:stateStyles(value: StateStyles): T;
起始版本:8|类名:CommonMethod
方法 or 属性:stateStyles(value: StateStyles): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonAttribute
起始版本:7|类名:CommonAttribute
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonInterface
起始版本:7|类名:CommonInterface
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CommonInstance: CommonAttribute;
起始版本:7|类名:global
方法 or 属性:declare const CommonInstance: CommonAttribute;
起始版本:9|common.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Common: CommonInterface;
起始版本:7|类名:global
方法 or 属性:declare const Common: CommonInterface;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
起始版本:7|类名:CommonShapeMethod
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:constructor();
起始版本:7|类名:CommonShapeMethod
方法 or 属性:constructor();
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:stroke(value: ResourceColor): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:stroke(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:fill(value: ResourceColor): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:fill(value: ResourceColor): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeDashOffset(value: number \| string): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeDashOffset(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeLineCap(value: LineCapStyle): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeLineCap(value: LineCapStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeLineJoin(value: LineJoinStyle): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeLineJoin(value: LineJoinStyle): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeMiterLimit(value: number \| string): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeMiterLimit(value: number \| string): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeOpacity(value: number \| string \| Resource): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeOpacity(value: number \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:fillOpacity(value: number \| string \| Resource): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:fillOpacity(value: number \| string \| Resource): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeWidth(value: Length): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeWidth(value: Length): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:antiAlias(value: boolean): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:antiAlias(value: boolean): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CommonShapeMethod
方法 or 属性:strokeDashArray(value: Array\): T;
起始版本:7|类名:CommonShapeMethod
方法 or 属性:strokeDashArray(value: Array\): T;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
起始版本:7|类名:CustomComponent
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:build(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:build(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:aboutToAppear?(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:aboutToAppear?(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:CustomComponent
方法 or 属性:aboutToDisappear?(): void;
起始版本:7|类名:CustomComponent
方法 or 属性:aboutToDisappear?(): void;
起始版本:9|common.d.ts| +|起始版本有变化|类名:View
起始版本:7|类名:View
起始版本:9|common.d.ts| +|起始版本有变化|类名:CounterInterface
起始版本:7|类名:CounterInterface
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterInterface
方法 or 属性:(): CounterAttribute;
起始版本:7|类名:CounterInterface
方法 or 属性:(): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
起始版本:7|类名:CounterAttribute
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
方法 or 属性:onInc(event: () => void): CounterAttribute;
起始版本:7|类名:CounterAttribute
方法 or 属性:onInc(event: () => void): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:CounterAttribute
方法 or 属性:onDec(event: () => void): CounterAttribute;
起始版本:7|类名:CounterAttribute
方法 or 属性:onDec(event: () => void): CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const CounterInstance: CounterAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const CounterInstance: CounterAttribute;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Counter: CounterInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Counter: CounterInterface;
起始版本:9|counter.d.ts| +|起始版本有变化|类名:DataPanelType
起始版本:8|类名:DataPanelType
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelType
方法 or 属性:Line
起始版本:8|类名:DataPanelType
方法 or 属性:Line
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelType
方法 or 属性:Circle
起始版本:8|类名:DataPanelType
方法 or 属性:Circle
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
起始版本:7|类名:DataPanelOptions
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:values: number[];
起始版本:7|类名:DataPanelOptions
方法 or 属性:values: number[];
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:max?: number;
起始版本:7|类名:DataPanelOptions
方法 or 属性:max?: number;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelOptions
方法 or 属性:type?: DataPanelType;
起始版本:8|类名:DataPanelOptions
方法 or 属性:type?: DataPanelType;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelInterface
起始版本:7|类名:DataPanelInterface
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelInterface
方法 or 属性:(options: DataPanelOptions): DataPanelAttribute;
起始版本:7|类名:DataPanelInterface
方法 or 属性:(options: DataPanelOptions): DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelAttribute
起始版本:7|类名:DataPanelAttribute
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:DataPanelAttribute
方法 or 属性:closeEffect(value: boolean): DataPanelAttribute;
起始版本:7|类名:DataPanelAttribute
方法 or 属性:closeEffect(value: boolean): DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DataPanel: DataPanelInterface
起始版本:N/A|类名:global
方法 or 属性:declare const DataPanel: DataPanelInterface
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DataPanelInstance: DataPanelAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DataPanelInstance: DataPanelAttribute;
起始版本:9|data_panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DatePicker: DatePickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const DatePicker: DatePickerInterface;
起始版本:8|date_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DatePickerInstance: DatePickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DatePickerInstance: DatePickerAttribute;
起始版本:8|date_picker.d.ts| +|起始版本有变化|类名:DividerInterface
起始版本:7|类名:DividerInterface
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerInterface
方法 or 属性:(): DividerAttribute;
起始版本:7|类名:DividerInterface
方法 or 属性:(): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
起始版本:7|类名:DividerAttribute
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:vertical(value: boolean): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:vertical(value: boolean): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:color(value: ResourceColor): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:color(value: ResourceColor): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:strokeWidth(value: number \| string): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:strokeWidth(value: number \| string): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:DividerAttribute
方法 or 属性:lineCap(value: LineCapStyle): DividerAttribute;
起始版本:7|类名:DividerAttribute
方法 or 属性:lineCap(value: LineCapStyle): DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Divider: DividerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Divider: DividerInterface;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const DividerInstance: DividerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const DividerInstance: DividerAttribute;
起始版本:9|divider.d.ts| +|起始版本有变化|类名:EllipseInterface
起始版本:7|类名:EllipseInterface
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:7|类名:EllipseInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:7|类名:EllipseInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:EllipseAttribute
起始版本:7|类名:EllipseAttribute
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Ellipse: EllipseInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Ellipse: EllipseInterface;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const EllipseInstance: EllipseAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const EllipseInstance: EllipseAttribute;
起始版本:9|ellipse.d.ts| +|起始版本有变化|类名:Color
起始版本:7|类名:Color
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:White
起始版本:7|类名:Color
方法 or 属性:White
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Black
起始版本:7|类名:Color
方法 or 属性:Black
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Blue
起始版本:7|类名:Color
方法 or 属性:Blue
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Brown
起始版本:7|类名:Color
方法 or 属性:Brown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Gray
起始版本:7|类名:Color
方法 or 属性:Gray
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Green
起始版本:7|类名:Color
方法 or 属性:Green
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Grey
起始版本:7|类名:Color
方法 or 属性:Grey
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Orange
起始版本:7|类名:Color
方法 or 属性:Orange
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Pink
起始版本:7|类名:Color
方法 or 属性:Pink
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Red
起始版本:7|类名:Color
方法 or 属性:Red
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Color
方法 or 属性:Yellow
起始版本:7|类名:Color
方法 or 属性:Yellow
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
起始版本:7|类名:ImageFit
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Contain
起始版本:7|类名:ImageFit
方法 or 属性:Contain
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Cover
起始版本:7|类名:ImageFit
方法 or 属性:Cover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Auto
起始版本:7|类名:ImageFit
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:Fill
起始版本:7|类名:ImageFit
方法 or 属性:Fill
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:ScaleDown
起始版本:7|类名:ImageFit
方法 or 属性:ScaleDown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageFit
方法 or 属性:None
起始版本:7|类名:ImageFit
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
起始版本:7|类名:BorderStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Dotted
起始版本:7|类名:BorderStyle
方法 or 属性:Dotted
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Dashed
起始版本:7|类名:BorderStyle
方法 or 属性:Dashed
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BorderStyle
方法 or 属性:Solid
起始版本:7|类名:BorderStyle
方法 or 属性:Solid
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
起始版本:7|类名:LineJoinStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Miter
起始版本:7|类名:LineJoinStyle
方法 or 属性:Miter
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Round
起始版本:7|类名:LineJoinStyle
方法 or 属性:Round
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineJoinStyle
方法 or 属性:Bevel
起始版本:7|类名:LineJoinStyle
方法 or 属性:Bevel
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
起始版本:7|类名:TouchType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Down
起始版本:7|类名:TouchType
方法 or 属性:Down
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Up
起始版本:7|类名:TouchType
方法 or 属性:Up
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Move
起始版本:7|类名:TouchType
方法 or 属性:Move
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TouchType
方法 or 属性:Cancel
起始版本:7|类名:TouchType
方法 or 属性:Cancel
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
起始版本:8|类名:MouseButton
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Left
起始版本:8|类名:MouseButton
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Right
起始版本:8|类名:MouseButton
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Middle
起始版本:8|类名:MouseButton
方法 or 属性:Middle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Back
起始版本:8|类名:MouseButton
方法 or 属性:Back
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:Forward
起始版本:8|类名:MouseButton
方法 or 属性:Forward
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseButton
方法 or 属性:None
起始版本:8|类名:MouseButton
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
起始版本:8|类名:MouseAction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Press
起始版本:8|类名:MouseAction
方法 or 属性:Press
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Release
起始版本:8|类名:MouseAction
方法 or 属性:Release
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Move
起始版本:8|类名:MouseAction
方法 or 属性:Move
起始版本:9|enums.d.ts| +|起始版本有变化|类名:MouseAction
方法 or 属性:Hover
起始版本:8|类名:MouseAction
方法 or 属性:Hover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
起始版本:7|类名:AnimationStatus
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Initial
起始版本:7|类名:AnimationStatus
方法 or 属性:Initial
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Running
起始版本:7|类名:AnimationStatus
方法 or 属性:Running
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Paused
起始版本:7|类名:AnimationStatus
方法 or 属性:Paused
起始版本:9|enums.d.ts| +|起始版本有变化|类名:AnimationStatus
方法 or 属性:Stopped
起始版本:7|类名:AnimationStatus
方法 or 属性:Stopped
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
起始版本:7|类名:Curve
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Linear
起始版本:7|类名:Curve
方法 or 属性:Linear
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Ease
起始版本:7|类名:Curve
方法 or 属性:Ease
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseIn
起始版本:7|类名:Curve
方法 or 属性:EaseIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseOut
起始版本:7|类名:Curve
方法 or 属性:EaseOut
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:EaseInOut
起始版本:7|类名:Curve
方法 or 属性:EaseInOut
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:FastOutSlowIn
起始版本:7|类名:Curve
方法 or 属性:FastOutSlowIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:LinearOutSlowIn
起始版本:7|类名:Curve
方法 or 属性:LinearOutSlowIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:FastOutLinearIn
起始版本:7|类名:Curve
方法 or 属性:FastOutLinearIn
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:ExtremeDeceleration
起始版本:7|类名:Curve
方法 or 属性:ExtremeDeceleration
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Sharp
起始版本:7|类名:Curve
方法 or 属性:Sharp
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Rhythm
起始版本:7|类名:Curve
方法 or 属性:Rhythm
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Smooth
起始版本:7|类名:Curve
方法 or 属性:Smooth
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Curve
方法 or 属性:Friction
起始版本:7|类名:Curve
方法 or 属性:Friction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
起始版本:7|类名:FillMode
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:None
起始版本:7|类名:FillMode
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Forwards
起始版本:7|类名:FillMode
方法 or 属性:Forwards
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Backwards
起始版本:7|类名:FillMode
方法 or 属性:Backwards
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FillMode
方法 or 属性:Both
起始版本:7|类名:FillMode
方法 or 属性:Both
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
起始版本:7|类名:PlayMode
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Normal
起始版本:7|类名:PlayMode
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Reverse
起始版本:7|类名:PlayMode
方法 or 属性:Reverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:Alternate
起始版本:7|类名:PlayMode
方法 or 属性:Alternate
起始版本:9|enums.d.ts| +|起始版本有变化|类名:PlayMode
方法 or 属性:AlternateReverse
起始版本:7|类名:PlayMode
方法 or 属性:AlternateReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
起始版本:7|类名:KeyType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
方法 or 属性:Down
起始版本:7|类名:KeyType
方法 or 属性:Down
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeyType
方法 or 属性:Up
起始版本:7|类名:KeyType
方法 or 属性:Up
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
起始版本:7|类名:KeySource
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
方法 or 属性:Unknown
起始版本:7|类名:KeySource
方法 or 属性:Unknown
起始版本:9|enums.d.ts| +|起始版本有变化|类名:KeySource
方法 or 属性:Keyboard
起始版本:7|类名:KeySource
方法 or 属性:Keyboard
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
起始版本:7|类名:Edge
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Top
起始版本:7|类名:Edge
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Bottom
起始版本:7|类名:Edge
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:Start
起始版本:7|类名:Edge
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Edge
方法 or 属性:End
起始版本:7|类名:Edge
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
起始版本:7|类名:Week
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Mon
起始版本:7|类名:Week
方法 or 属性:Mon
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Tue
起始版本:7|类名:Week
方法 or 属性:Tue
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Wed
起始版本:7|类名:Week
方法 or 属性:Wed
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Thur
起始版本:7|类名:Week
方法 or 属性:Thur
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Fri
起始版本:7|类名:Week
方法 or 属性:Fri
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Sat
起始版本:7|类名:Week
方法 or 属性:Sat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Week
方法 or 属性:Sun
起始版本:7|类名:Week
方法 or 属性:Sun
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
起始版本:7|类名:Direction
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Ltr
起始版本:7|类名:Direction
方法 or 属性:Ltr
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Rtl
起始版本:7|类名:Direction
方法 or 属性:Rtl
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Direction
方法 or 属性:Auto
起始版本:7|类名:Direction
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
起始版本:7|类名:BarState
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:Off
起始版本:7|类名:BarState
方法 or 属性:Off
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:Auto
起始版本:7|类名:BarState
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:BarState
方法 or 属性:On
起始版本:7|类名:BarState
方法 or 属性:On
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
起始版本:7|类名:EdgeEffect
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:Spring
起始版本:7|类名:EdgeEffect
方法 or 属性:Spring
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:Fade
起始版本:7|类名:EdgeEffect
方法 or 属性:Fade
起始版本:9|enums.d.ts| +|起始版本有变化|类名:EdgeEffect
方法 or 属性:None
起始版本:7|类名:EdgeEffect
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
起始版本:7|类名:Alignment
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:TopStart
起始版本:7|类名:Alignment
方法 or 属性:TopStart
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Top
起始版本:7|类名:Alignment
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:TopEnd
起始版本:7|类名:Alignment
方法 or 属性:TopEnd
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Start
起始版本:7|类名:Alignment
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Center
起始版本:7|类名:Alignment
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:End
起始版本:7|类名:Alignment
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:BottomStart
起始版本:7|类名:Alignment
方法 or 属性:BottomStart
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:Bottom
起始版本:7|类名:Alignment
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Alignment
方法 or 属性:BottomEnd
起始版本:7|类名:Alignment
方法 or 属性:BottomEnd
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
起始版本:7|类名:TransitionType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:All
起始版本:7|类名:TransitionType
方法 or 属性:All
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:Insert
起始版本:7|类名:TransitionType
方法 or 属性:Insert
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TransitionType
方法 or 属性:Delete
起始版本:7|类名:TransitionType
方法 or 属性:Delete
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
起始版本:7|类名:RelateType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
方法 or 属性:FILL
起始版本:7|类名:RelateType
方法 or 属性:FILL
起始版本:9|enums.d.ts| +|起始版本有变化|类名:RelateType
方法 or 属性:FIT
起始版本:7|类名:RelateType
方法 or 属性:FIT
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
起始版本:7|类名:Visibility
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:Visible
起始版本:7|类名:Visibility
方法 or 属性:Visible
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:Hidden
起始版本:7|类名:Visibility
方法 or 属性:Hidden
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Visibility
方法 or 属性:None
起始版本:7|类名:Visibility
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
起始版本:7|类名:LineCapStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Butt
起始版本:7|类名:LineCapStyle
方法 or 属性:Butt
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Round
起始版本:7|类名:LineCapStyle
方法 or 属性:Round
起始版本:9|enums.d.ts| +|起始版本有变化|类名:LineCapStyle
方法 or 属性:Square
起始版本:7|类名:LineCapStyle
方法 or 属性:Square
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
起始版本:7|类名:Axis
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
方法 or 属性:Vertical
起始版本:7|类名:Axis
方法 or 属性:Vertical
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Axis
方法 or 属性:Horizontal
起始版本:7|类名:Axis
方法 or 属性:Horizontal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
起始版本:7|类名:HorizontalAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:Start
起始版本:7|类名:HorizontalAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:Center
起始版本:7|类名:HorizontalAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HorizontalAlign
方法 or 属性:End
起始版本:7|类名:HorizontalAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
起始版本:7|类名:FlexAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:Start
起始版本:7|类名:FlexAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:Center
起始版本:7|类名:FlexAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:End
起始版本:7|类名:FlexAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceBetween
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceBetween
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceAround
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceAround
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexAlign
方法 or 属性:SpaceEvenly
起始版本:7|类名:FlexAlign
方法 or 属性:SpaceEvenly
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
起始版本:7|类名:ItemAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Auto
起始版本:7|类名:ItemAlign
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Start
起始版本:7|类名:ItemAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Center
起始版本:7|类名:ItemAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:End
起始版本:7|类名:ItemAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Baseline
起始版本:7|类名:ItemAlign
方法 or 属性:Baseline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ItemAlign
方法 or 属性:Stretch
起始版本:7|类名:ItemAlign
方法 or 属性:Stretch
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
起始版本:7|类名:FlexDirection
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:Row
起始版本:7|类名:FlexDirection
方法 or 属性:Row
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:Column
起始版本:7|类名:FlexDirection
方法 or 属性:Column
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:RowReverse
起始版本:7|类名:FlexDirection
方法 or 属性:RowReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexDirection
方法 or 属性:ColumnReverse
起始版本:7|类名:FlexDirection
方法 or 属性:ColumnReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
起始版本:7|类名:FlexWrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:NoWrap
起始版本:7|类名:FlexWrap
方法 or 属性:NoWrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:Wrap
起始版本:7|类名:FlexWrap
方法 or 属性:Wrap
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexWrap
方法 or 属性:WrapReverse
起始版本:7|类名:FlexWrap
方法 or 属性:WrapReverse
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
起始版本:7|类名:VerticalAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Top
起始版本:7|类名:VerticalAlign
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Center
起始版本:7|类名:VerticalAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:VerticalAlign
方法 or 属性:Bottom
起始版本:7|类名:VerticalAlign
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
起始版本:7|类名:ImageRepeat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:NoRepeat
起始版本:7|类名:ImageRepeat
方法 or 属性:NoRepeat
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:X
起始版本:7|类名:ImageRepeat
方法 or 属性:X
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:Y
起始版本:7|类名:ImageRepeat
方法 or 属性:Y
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageRepeat
方法 or 属性:XY
起始版本:7|类名:ImageRepeat
方法 or 属性:XY
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
起始版本:7|类名:ImageSize
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Auto
起始版本:7|类名:ImageSize
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Cover
起始版本:7|类名:ImageSize
方法 or 属性:Cover
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ImageSize
方法 or 属性:Contain
起始版本:7|类名:ImageSize
方法 or 属性:Contain
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
起始版本:7|类名:GradientDirection
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Left
起始版本:7|类名:GradientDirection
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Top
起始版本:7|类名:GradientDirection
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Right
起始版本:7|类名:GradientDirection
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:Bottom
起始版本:7|类名:GradientDirection
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:LeftTop
起始版本:7|类名:GradientDirection
方法 or 属性:LeftTop
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:LeftBottom
起始版本:7|类名:GradientDirection
方法 or 属性:LeftBottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:RightTop
起始版本:7|类名:GradientDirection
方法 or 属性:RightTop
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:RightBottom
起始版本:7|类名:GradientDirection
方法 or 属性:RightBottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:GradientDirection
方法 or 属性:None
起始版本:7|类名:GradientDirection
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
起始版本:7|类名:SharedTransitionEffectType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
方法 or 属性:Static
起始版本:7|类名:SharedTransitionEffectType
方法 or 属性:Static
起始版本:9|enums.d.ts| +|起始版本有变化|类名:SharedTransitionEffectType
方法 or 属性:Exchange
起始版本:7|类名:SharedTransitionEffectType
方法 or 属性:Exchange
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
起始版本:7|类名:FontStyle
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
方法 or 属性:Normal
起始版本:7|类名:FontStyle
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontStyle
方法 or 属性:Italic
起始版本:7|类名:FontStyle
方法 or 属性:Italic
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
起始版本:7|类名:FontWeight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Lighter
起始版本:7|类名:FontWeight
方法 or 属性:Lighter
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Normal
起始版本:7|类名:FontWeight
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Regular
起始版本:7|类名:FontWeight
方法 or 属性:Regular
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Medium
起始版本:7|类名:FontWeight
方法 or 属性:Medium
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Bold
起始版本:7|类名:FontWeight
方法 or 属性:Bold
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FontWeight
方法 or 属性:Bolder
起始版本:7|类名:FontWeight
方法 or 属性:Bolder
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
起始版本:7|类名:TextAlign
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:Center
起始版本:7|类名:TextAlign
方法 or 属性:Center
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:Start
起始版本:7|类名:TextAlign
方法 or 属性:Start
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextAlign
方法 or 属性:End
起始版本:7|类名:TextAlign
方法 or 属性:End
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
起始版本:7|类名:TextOverflow
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:Clip
起始版本:7|类名:TextOverflow
方法 or 属性:Clip
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:Ellipsis
起始版本:7|类名:TextOverflow
方法 or 属性:Ellipsis
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextOverflow
方法 or 属性:None
起始版本:7|类名:TextOverflow
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
起始版本:7|类名:TextDecorationType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:None
起始版本:7|类名:TextDecorationType
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:Underline
起始版本:7|类名:TextDecorationType
方法 or 属性:Underline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:Overline
起始版本:7|类名:TextDecorationType
方法 or 属性:Overline
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextDecorationType
方法 or 属性:LineThrough
起始版本:7|类名:TextDecorationType
方法 or 属性:LineThrough
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
起始版本:7|类名:TextCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:Normal
起始版本:7|类名:TextCase
方法 or 属性:Normal
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:LowerCase
起始版本:7|类名:TextCase
方法 or 属性:LowerCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:TextCase
方法 or 属性:UpperCase
起始版本:7|类名:TextCase
方法 or 属性:UpperCase
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
起始版本:8|类名:ResponseType
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
方法 or 属性:RightClick
起始版本:8|类名:ResponseType
方法 or 属性:RightClick
起始版本:9|enums.d.ts| +|起始版本有变化|类名:ResponseType
方法 or 属性:LongPress
起始版本:8|类名:ResponseType
方法 or 属性:LongPress
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
起始版本:8|类名:HoverEffect
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Auto
起始版本:8|类名:HoverEffect
方法 or 属性:Auto
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Scale
起始版本:8|类名:HoverEffect
方法 or 属性:Scale
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:Highlight
起始版本:8|类名:HoverEffect
方法 or 属性:Highlight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:HoverEffect
方法 or 属性:None
起始版本:8|类名:HoverEffect
方法 or 属性:None
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
起始版本:8|类名:Placement
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Left
起始版本:8|类名:Placement
方法 or 属性:Left
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Right
起始版本:8|类名:Placement
方法 or 属性:Right
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Top
起始版本:8|类名:Placement
方法 or 属性:Top
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:Bottom
起始版本:8|类名:Placement
方法 or 属性:Bottom
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:TopLeft
起始版本:8|类名:Placement
方法 or 属性:TopLeft
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:TopRight
起始版本:8|类名:Placement
方法 or 属性:TopRight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:BottomLeft
起始版本:8|类名:Placement
方法 or 属性:BottomLeft
起始版本:9|enums.d.ts| +|起始版本有变化|类名:Placement
方法 or 属性:BottomRight
起始版本:8|类名:Placement
方法 or 属性:BottomRight
起始版本:9|enums.d.ts| +|起始版本有变化|类名:FlexOptions
起始版本:7|类名:FlexOptions
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:direction?: FlexDirection;
起始版本:7|类名:FlexOptions
方法 or 属性:direction?: FlexDirection;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:wrap?: FlexWrap;
起始版本:7|类名:FlexOptions
方法 or 属性:wrap?: FlexWrap;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:justifyContent?: FlexAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:justifyContent?: FlexAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:alignItems?: ItemAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:alignItems?: ItemAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexOptions
方法 or 属性:alignContent?: FlexAlign;
起始版本:7|类名:FlexOptions
方法 or 属性:alignContent?: FlexAlign;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexInterface
起始版本:7|类名:FlexInterface
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexInterface
方法 or 属性:(value?: FlexOptions): FlexAttribute;
起始版本:7|类名:FlexInterface
方法 or 属性:(value?: FlexOptions): FlexAttribute;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:FlexAttribute
起始版本:7|类名:FlexAttribute
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Flex: FlexInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Flex: FlexInterface;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FlexInstance: FlexAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const FlexInstance: FlexAttribute;
起始版本:9|flex.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const FormComponent: FormComponentInterface;
起始版本:7|form_component.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const FormComponentInstance: FormComponentAttribute;
起始版本:7|form_component.d.ts| +|起始版本有变化|类名:ForEachInterface
起始版本:7|类名:ForEachInterface
起始版本:9|for_each.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ForEach: ForEachInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ForEach: ForEachInterface;
起始版本:9|for_each.d.ts| +|起始版本有变化|类名:GaugeInterface
起始版本:8|类名:GaugeInterface
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeInterface
方法 or 属性:(options: { value: number; min?: number; max?: number }): GaugeAttribute;
起始版本:8|类名:GaugeInterface
方法 or 属性:(options: { value: number; min?: number; max?: number }): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
起始版本:8|类名:GaugeAttribute
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:value(value: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:value(value: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:startAngle(angle: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:startAngle(angle: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:endAngle(angle: number): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:endAngle(angle: number): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:colors(colors: Array\): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:colors(colors: Array\): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:GaugeAttribute
方法 or 属性:strokeWidth(length: Length): GaugeAttribute;
起始版本:8|类名:GaugeAttribute
方法 or 属性:strokeWidth(length: Length): GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Gauge: GaugeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Gauge: GaugeInterface;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GaugeInstance: GaugeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GaugeInstance: GaugeAttribute;
起始版本:9|gauge.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TapGesture: TapGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TapGesture: TapGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LongPressGesture: LongPressGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const LongPressGesture: LongPressGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PanGesture: PanGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PanGesture: PanGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SwipeGesture: SwipeGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const SwipeGesture: SwipeGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PinchGesture: PinchGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PinchGesture: PinchGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RotationGesture: RotationGestureInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RotationGesture: RotationGestureInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GestureGroup: GestureGroupInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const GestureGroup: GestureGroupInterface;
起始版本:7|gesture.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Grid: GridInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Grid: GridInterface;
起始版本:7|grid.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridInstance: GridAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridInstance: GridAttribute;
起始版本:7|grid.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridItem: GridItemInterface
起始版本:N/A|类名:global
方法 or 属性:declare const GridItem: GridItemInterface
起始版本:7|gridItem.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridItemInstance: GridItemAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridItemInstance: GridItemAttribute;
起始版本:7|gridItem.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
起始版本:N/A|类名:global
方法 or 属性:declare const GridContainer: GridContainerInterface
起始版本:7|grid_container.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const GridContainerInstance: GridContainerAttribute;
起始版本:7|grid_container.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Hyperlink: HyperlinkInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Hyperlink: HyperlinkInterface;
起始版本:7|hyperlink.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const HyperlinkInterface: HyperlinkAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const HyperlinkInterface: HyperlinkAttribute;
起始版本:7|hyperlink.d.ts| +|起始版本有变化|类名:ImageRenderMode
起始版本:7|类名:ImageRenderMode
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageRenderMode
方法 or 属性:Original
起始版本:7|类名:ImageRenderMode
方法 or 属性:Original
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageRenderMode
方法 or 属性:Template
起始版本:7|类名:ImageRenderMode
方法 or 属性:Template
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
起始版本:7|类名:ImageInterpolation
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:None
起始版本:7|类名:ImageInterpolation
方法 or 属性:None
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:Low
起始版本:7|类名:ImageInterpolation
方法 or 属性:Low
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:Medium
起始版本:7|类名:ImageInterpolation
方法 or 属性:Medium
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterpolation
方法 or 属性:High
起始版本:7|类名:ImageInterpolation
方法 or 属性:High
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterface
起始版本:7|类名:ImageInterface
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageInterface
方法 or 属性:(src: string \| PixelMap \| Resource): ImageAttribute;
起始版本:7|类名:ImageInterface
方法 or 属性:(src: string \| PixelMap \| Resource): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
起始版本:7|类名:ImageAttribute
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:alt(value: string \| Resource): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:alt(value: string \| Resource): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:matchTextDirection(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:matchTextDirection(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:fitOriginalSize(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:fitOriginalSize(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:fillColor(value: ResourceColor): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:fillColor(value: ResourceColor): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:objectFit(value: ImageFit): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:objectFit(value: ImageFit): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:objectRepeat(value: ImageRepeat): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:objectRepeat(value: ImageRepeat): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:autoResize(value: boolean): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:autoResize(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:renderMode(value: ImageRenderMode): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:renderMode(value: ImageRenderMode): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:interpolation(value: ImageInterpolation): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:interpolation(value: ImageInterpolation): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:sourceSize(value: { width: number; height: number }): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:sourceSize(value: { width: number; height: number }): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:syncLoad(value: boolean): ImageAttribute;
起始版本:8|类名:ImageAttribute
方法 or 属性:syncLoad(value: boolean): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onComplete(
callback: (event?: {
width: number;
height: number;
componentWidth: number;
componentHeight: number;
loadingStatus: number;
}) => void,
): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onComplete(
callback: (event?: {
width: number;
height: number;
componentWidth: number;
componentHeight: number;
loadingStatus: number;
}) => void,
): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onError(callback: (event?: { componentWidth: number; componentHeight: number }) => void): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onError(callback: (event?: { componentWidth: number; componentHeight: number }) => void): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:ImageAttribute
方法 or 属性:onFinish(event: () => void): ImageAttribute;
起始版本:7|类名:ImageAttribute
方法 or 属性:onFinish(event: () => void): ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Image: ImageInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Image: ImageInterface;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageInstance: ImageAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageInstance: ImageAttribute;
起始版本:9|image.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageAnimator: ImageAnimatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageAnimator: ImageAnimatorInterface;
起始版本:7|image_animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ImageAnimatorInstance: ImageAnimatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ImageAnimatorInstance: ImageAnimatorAttribute;
起始版本:7|image_animator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LazyForEach: LazyForEachInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const LazyForEach: LazyForEachInterface;
起始版本:7|lazy_for_each.d.ts| +|起始版本有变化|类名:LineInterface
起始版本:7|类名:LineInterface
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:7|类名:LineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:7|类名:LineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
起始版本:7|类名:LineAttribute
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
方法 or 属性:startPoint(value: Array\): LineAttribute;
起始版本:7|类名:LineAttribute
方法 or 属性:startPoint(value: Array\): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:LineAttribute
方法 or 属性:endPoint(value: Array\): LineAttribute;
起始版本:7|类名:LineAttribute
方法 or 属性:endPoint(value: Array\): LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Line: LineInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Line: LineInterface;
起始版本:9|line.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LineInstance: LineAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const LineInstance: LineAttribute;
起始版本:9|line.d.ts| +|起始版本有变化|类名:ScrollState
起始版本:7|类名:ScrollState
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Idle
起始版本:7|类名:ScrollState
方法 or 属性:Idle
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Scroll
起始版本:7|类名:ScrollState
方法 or 属性:Scroll
起始版本:9|list.d.ts| +|起始版本有变化|类名:ScrollState
方法 or 属性:Fling
起始版本:7|类名:ScrollState
方法 or 属性:Fling
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListInterface
起始版本:7|类名:ListInterface
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListInterface
方法 or 属性:(value?: { initialIndex?: number; space?: number \| string; scroller?: Scroller }): ListAttribute;
起始版本:7|类名:ListInterface
方法 or 属性:(value?: { initialIndex?: number; space?: number \| string; scroller?: Scroller }): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
起始版本:7|类名:ListAttribute
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:listDirection(value: Axis): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:listDirection(value: Axis): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:scrollBar(value: BarState): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:scrollBar(value: BarState): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:edgeEffect(value: EdgeEffect): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:edgeEffect(value: EdgeEffect): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:divider(
value: {
strokeWidth: Length;
color?: ResourceColor;
startMargin?: Length;
endMargin?: Length;
} \| null,
): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:divider(
value: {
strokeWidth: Length;
color?: ResourceColor;
startMargin?: Length;
endMargin?: Length;
} \| null,
): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:multiSelectable(value: boolean): ListAttribute;
起始版本:8|类名:ListAttribute
方法 or 属性:multiSelectable(value: boolean): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:cachedCount(value: number): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:cachedCount(value: number): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:chainAnimation(value: boolean): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:chainAnimation(value: boolean): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScroll(event: (scrollOffset: number, scrollState: ScrollState) => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScroll(event: (scrollOffset: number, scrollState: ScrollState) => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScrollIndex(event: (start: number, end: number) => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScrollIndex(event: (start: number, end: number) => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onReachStart(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onReachStart(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onReachEnd(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onReachEnd(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListAttribute
方法 or 属性:onScrollStop(event: () => void): ListAttribute;
起始版本:7|类名:ListAttribute
方法 or 属性:onScrollStop(event: () => void): ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const List: ListInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const List: ListInterface;
起始版本:9|list.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListInstance: ListAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ListInstance: ListAttribute;
起始版本:9|list.d.ts| +|起始版本有变化|类名:ListItemInterface
起始版本:7|类名:ListItemInterface
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemInterface
方法 or 属性:(value?: string): ListItemAttribute;
起始版本:7|类名:ListItemInterface
方法 or 属性:(value?: string): ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemAttribute
起始版本:7|类名:ListItemAttribute
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:ListItemAttribute
方法 or 属性:onSelect(event: (isSelected: boolean) => void): ListItemAttribute;
起始版本:8|类名:ListItemAttribute
方法 or 属性:onSelect(event: (isSelected: boolean) => void): ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListItemInstance: ListItemAttribute;
起始版本:7|类名:global
方法 or 属性:declare const ListItemInstance: ListItemAttribute;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ListItem: ListItemInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ListItem: ListItemInterface;
起始版本:9|list_item.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
起始版本:8|类名:LoadingProgressStyle
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Default
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Default
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Circular
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Circular
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressStyle
方法 or 属性:Orbital
起始版本:8|类名:LoadingProgressStyle
方法 or 属性:Orbital
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressInterface
起始版本:8|类名:LoadingProgressInterface
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressInterface
方法 or 属性:(): LoadingProgressAttribute;
起始版本:8|类名:LoadingProgressInterface
方法 or 属性:(): LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressAttribute
起始版本:8|类名:LoadingProgressAttribute
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:LoadingProgressAttribute
方法 or 属性:color(value: ResourceColor): LoadingProgressAttribute;
起始版本:8|类名:LoadingProgressAttribute
方法 or 属性:color(value: ResourceColor): LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LoadingProgress: LoadingProgressInterface;
起始版本:8|类名:global
方法 or 属性:declare const LoadingProgress: LoadingProgressInterface;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const LoadingProgressInstance: LoadingProgressAttribute;
起始版本:8|类名:global
方法 or 属性:declare const LoadingProgressInstance: LoadingProgressAttribute;
起始版本:9|loading_progress.d.ts| +|起始版本有变化|类名:MarqueeInterface
起始版本:8|类名:MarqueeInterface
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeInterface
方法 or 属性:(value: { start: boolean; step?: number; loop?: number; fromStart?: boolean; src: string }): MarqueeAttribute;
起始版本:8|类名:MarqueeInterface
方法 or 属性:(value: { start: boolean; step?: number; loop?: number; fromStart?: boolean; src: string }): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
起始版本:8|类名:MarqueeAttribute
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontColor(value: ResourceColor): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontColor(value: ResourceColor): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontSize(value: Length): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontSize(value: Length): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:allowScale(value: boolean): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:allowScale(value: boolean): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:fontFamily(value: string \| Resource): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:fontFamily(value: string \| Resource): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onStart(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onStart(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onBounce(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onBounce(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:MarqueeAttribute
方法 or 属性:onFinish(event: () => void): MarqueeAttribute;
起始版本:8|类名:MarqueeAttribute
方法 or 属性:onFinish(event: () => void): MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Marquee: MarqueeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Marquee: MarqueeInterface;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const MarqueeInstance: MarqueeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const MarqueeInstance: MarqueeAttribute;
起始版本:9|marquee.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Navigation: NavigationInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Navigation: NavigationInterface;
起始版本:8|navigation.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavigationInstance: NavigationAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavigationInstance: NavigationAttribute;
起始版本:8|navigation.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Navigator: NavigatorInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Navigator: NavigatorInterface;
起始版本:7|navigator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const NavigatorInstance: NavigatorAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const NavigatorInstance: NavigatorAttribute;
起始版本:7|navigator.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PageTransitionEnter: PageTransitionEnterInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PageTransitionEnter: PageTransitionEnterInterface;
起始版本:7|page_transition.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PageTransitionExit: PageTransitionExitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const PageTransitionExit: PageTransitionExitInterface;
起始版本:7|page_transition.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Panel: PanelInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Panel: PanelInterface;
起始版本:7|panel.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PanelInstance: PanelAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PanelInstance: PanelAttribute;
起始版本:7|panel.d.ts| +|起始版本有变化|类名:PathInterface
起始版本:7|类名:PathInterface
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathInterface
方法 or 属性:new (value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:7|类名:PathInterface
方法 or 属性:new (value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathInterface
方法 or 属性:(value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:7|类名:PathInterface
方法 or 属性:(value?: { width?: number \| string; height?: number \| string; commands?: string }): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathAttribute
起始版本:7|类名:PathAttribute
起始版本:9|path.d.ts| +|起始版本有变化|类名:PathAttribute
方法 or 属性:commands(value: string): PathAttribute;
起始版本:7|类名:PathAttribute
方法 or 属性:commands(value: string): PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Path: PathInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Path: PathInterface;
起始版本:9|path.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PathInstance: PathAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PathInstance: PathAttribute;
起始版本:9|path.d.ts| +|起始版本有变化|类名:PolygonInterface
起始版本:7|类名:PolygonInterface
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:7|类名:PolygonInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:7|类名:PolygonInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolygonAttribute
方法 or 属性:points(value: Array\): PolygonAttribute;
起始版本:7|类名:PolygonAttribute
方法 or 属性:points(value: Array\): PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Polygon: PolygonInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Polygon: PolygonInterface;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PolygonInstance: PolygonAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PolygonInstance: PolygonAttribute;
起始版本:9|polygon.d.ts| +|起始版本有变化|类名:PolylineInterface
起始版本:7|类名:PolylineInterface
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:7|类名:PolylineInterface
方法 or 属性:new (value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:7|类名:PolylineInterface
方法 or 属性:(value?: { width?: string \| number; height?: string \| number }): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineAttribute
起始版本:7|类名:PolylineAttribute
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:PolylineAttribute
方法 or 属性:points(value: Array\): PolylineAttribute;
起始版本:7|类名:PolylineAttribute
方法 or 属性:points(value: Array\): PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Polyline: PolylineInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Polyline: PolylineInterface;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const PolylineInstance: PolylineAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const PolylineInstance: PolylineAttribute;
起始版本:9|polyline.d.ts| +|起始版本有变化|类名:ProgressOptions
起始版本:7|类名:ProgressOptions
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:value: number;
起始版本:7|类名:ProgressOptions
方法 or 属性:value: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:total?: number;
起始版本:7|类名:ProgressOptions
方法 or 属性:total?: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressOptions
方法 or 属性:type?: ProgressType
起始版本:8|类名:ProgressOptions
方法 or 属性:type?: ProgressType
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
起始版本:8|类名:ProgressType
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Linear
起始版本:8|类名:ProgressType
方法 or 属性:Linear
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Ring
起始版本:8|类名:ProgressType
方法 or 属性:Ring
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Eclipse
起始版本:8|类名:ProgressType
方法 or 属性:Eclipse
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:ScaleRing
起始版本:8|类名:ProgressType
方法 or 属性:ScaleRing
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressType
方法 or 属性:Capsule
起始版本:8|类名:ProgressType
方法 or 属性:Capsule
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
起始版本:8|类名:ProgressStyleOptions
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:strokeWidth?: Length;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:strokeWidth?: Length;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:scaleCount?: number;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:scaleCount?: number;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyleOptions
方法 or 属性:scaleWidth?: Length;
起始版本:8|类名:ProgressStyleOptions
方法 or 属性:scaleWidth?: Length;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
起始版本:7|类名:ProgressStyle
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Linear
起始版本:7|类名:ProgressStyle
方法 or 属性:Linear
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Ring
起始版本:8|类名:ProgressStyle
方法 or 属性:Ring
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Eclipse
起始版本:7|类名:ProgressStyle
方法 or 属性:Eclipse
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:ScaleRing
起始版本:8|类名:ProgressStyle
方法 or 属性:ScaleRing
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressStyle
方法 or 属性:Capsule
起始版本:8|类名:ProgressStyle
方法 or 属性:Capsule
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressInterface
起始版本:7|类名:ProgressInterface
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressInterface
方法 or 属性:(options: ProgressOptions): ProgressAttribute;
起始版本:7|类名:ProgressInterface
方法 or 属性:(options: ProgressOptions): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
起始版本:7|类名:ProgressAttribute
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:value(value: number): ProgressAttribute;
起始版本:7|类名:ProgressAttribute
方法 or 属性:value(value: number): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:color(value: ResourceColor): ProgressAttribute;
起始版本:7|类名:ProgressAttribute
方法 or 属性:color(value: ResourceColor): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:ProgressAttribute
方法 or 属性:style(value: ProgressStyleOptions): ProgressAttribute;
起始版本:8|类名:ProgressAttribute
方法 or 属性:style(value: ProgressStyleOptions): ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Progress: ProgressInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Progress: ProgressInterface;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ProgressInstance: ProgressAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ProgressInstance: ProgressAttribute;
起始版本:9|progress.d.ts| +|起始版本有变化|类名:QRCodeInterface
起始版本:7|类名:QRCodeInterface
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeInterface
方法 or 属性:(value: string): QRCodeAttribute;
起始版本:7|类名:QRCodeInterface
方法 or 属性:(value: string): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
起始版本:7|类名:QRCodeAttribute
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
方法 or 属性:color(value: ResourceColor): QRCodeAttribute;
起始版本:7|类名:QRCodeAttribute
方法 or 属性:color(value: ResourceColor): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:QRCodeAttribute
方法 or 属性:backgroundColor(value: ResourceColor): QRCodeAttribute;
起始版本:7|类名:QRCodeAttribute
方法 or 属性:backgroundColor(value: ResourceColor): QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const QRCode: QRCodeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const QRCode: QRCodeInterface;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const QRCodeInstance: QRCodeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const QRCodeInstance: QRCodeAttribute;
起始版本:9|qrcode.d.ts| +|起始版本有变化|类名:RadioOptions
起始版本:8|类名:RadioOptions
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioOptions
方法 or 属性:group: string;
起始版本:8|类名:RadioOptions
方法 or 属性:group: string;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioOptions
方法 or 属性:value: string;
起始版本:8|类名:RadioOptions
方法 or 属性:value: string;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioInterface
起始版本:8|类名:RadioInterface
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioInterface
方法 or 属性:(options: RadioOptions): RadioAttribute;
起始版本:8|类名:RadioInterface
方法 or 属性:(options: RadioOptions): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
起始版本:8|类名:RadioAttribute
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
方法 or 属性:checked(value: boolean): RadioAttribute;
起始版本:8|类名:RadioAttribute
方法 or 属性:checked(value: boolean): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RadioAttribute
方法 or 属性:onChange(callback: (isChecked: boolean) => void): RadioAttribute;
起始版本:8|类名:RadioAttribute
方法 or 属性:onChange(callback: (isChecked: boolean) => void): RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Radio: RadioInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Radio: RadioInterface;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RadioInstance: RadioAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RadioInstance: RadioAttribute;
起始版本:9|radio.d.ts| +|起始版本有变化|类名:RatingInterface
起始版本:7|类名:RatingInterface
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingInterface
方法 or 属性:(options?: { rating: number; indicator?: boolean }): RatingAttribute;
起始版本:7|类名:RatingInterface
方法 or 属性:(options?: { rating: number; indicator?: boolean }): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
起始版本:7|类名:RatingAttribute
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:stars(value: number): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:stars(value: number): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:stepSize(value: number): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:stepSize(value: number): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:starStyle(value: { backgroundUri: string; foregroundUri: string; secondaryUri?: string }): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:starStyle(value: { backgroundUri: string; foregroundUri: string; secondaryUri?: string }): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RatingAttribute
方法 or 属性:onChange(callback: (value: number) => void): RatingAttribute;
起始版本:7|类名:RatingAttribute
方法 or 属性:onChange(callback: (value: number) => void): RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Rating: RatingInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Rating: RatingInterface;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RatingInstance: RatingAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RatingInstance: RatingAttribute;
起始版本:9|rating.d.ts| +|起始版本有变化|类名:RectInterface
起始版本:7|类名:RectInterface
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectInterface
方法 or 属性:new (
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:7|类名:RectInterface
方法 or 属性:new (
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectInterface
方法 or 属性:(
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:7|类名:RectInterface
方法 or 属性:(
value?:
{
width?: number \| string;
height?: number \| string;
radius?: number \| string \| Array\;
}
\| {
width?: number \| string;
height?: number \| string;
radiusWidth?: number \| string;
radiusHeight?: number \| string;
},
): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
起始版本:7|类名:RectAttribute
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radiusWidth(value: number \| string): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radiusWidth(value: number \| string): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radiusHeight(value: number \| string): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radiusHeight(value: number \| string): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:RectAttribute
方法 or 属性:radius(value: number \| string \| Array\): RectAttribute;
起始版本:7|类名:RectAttribute
方法 or 属性:radius(value: number \| string \| Array\): RectAttribute;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Rect: RectInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Rect: RectInterface;
起始版本:9|rect.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Refresh: RefreshInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Refresh: RefreshInterface;
起始版本:8|refresh.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RefreshInstance: RefreshAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RefreshInstance: RefreshAttribute;
起始版本:8|refresh.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RichText: RichTextInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RichText: RichTextInterface;
起始版本:8|rich_text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RichTextInstance: RichTextAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RichTextInstance: RichTextAttribute;
起始版本:8|rich_text.d.ts| +|起始版本有变化|类名:RowInterface
起始版本:7|类名:RowInterface
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowInterface
方法 or 属性:(value?: { space?: string \| number }): RowAttribute;
起始版本:7|类名:RowInterface
方法 or 属性:(value?: { space?: string \| number }): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
起始版本:7|类名:RowAttribute
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
方法 or 属性:alignItems(value: VerticalAlign): RowAttribute;
起始版本:7|类名:RowAttribute
方法 or 属性:alignItems(value: VerticalAlign): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:RowAttribute
方法 or 属性:justifyContent(value: FlexAlign): RowAttribute;
起始版本:8|类名:RowAttribute
方法 or 属性:justifyContent(value: FlexAlign): RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Row: RowInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Row: RowInterface;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowInstance: RowAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RowInstance: RowAttribute;
起始版本:9|row.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowSplit: RowSplitInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const RowSplit: RowSplitInterface;
起始版本:7|row_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const RowSplitInstance: RowSplitAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const RowSplitInstance: RowSplitAttribute;
起始版本:7|row_split.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Scroll: ScrollInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Scroll: ScrollInterface;
起始版本:7|scroll.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollInstance: ScrollAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollInstance: ScrollAttribute;
起始版本:7|scroll.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollBar: ScrollBarInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollBar: ScrollBarInterface;
起始版本:8|scroll_bar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ScrollBarInstance: ScrollBarAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ScrollBarInstance: ScrollBarAttribute;
起始版本:8|scroll_bar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Search: SearchInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Search: SearchInterface;
起始版本:8|search.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SearchInstance: SearchAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SearchInstance: SearchAttribute;
起始版本:8|search.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Select: SelectInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Select: SelectInterface;
起始版本:8|select.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SelectInstance: SelectAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SelectInstance: SelectAttribute;
起始版本:8|select.d.ts| +|起始版本有变化|类名:ShapeInterface
起始版本:7|类名:ShapeInterface
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
起始版本:7|类名:ShapeAttribute
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:viewPort(value: { x?: number \| string; y?: number \| string; width?: number \| string; height?: number \| string }): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:viewPort(value: { x?: number \| string; y?: number \| string; width?: number \| string; height?: number \| string }): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:stroke(value: ResourceColor): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:stroke(value: ResourceColor): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:fill(value: ResourceColor): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:fill(value: ResourceColor): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeDashOffset(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeDashOffset(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeDashArray(value: Array\): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeDashArray(value: Array\): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeLineCap(value: LineCapStyle): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeLineCap(value: LineCapStyle): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeLineJoin(value: LineJoinStyle): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeLineJoin(value: LineJoinStyle): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeMiterLimit(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeMiterLimit(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:fillOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:fillOpacity(value: number \| string \| Resource): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:strokeWidth(value: number \| string): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:strokeWidth(value: number \| string): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:antiAlias(value: boolean): ShapeAttribute;
起始版本:7|类名:ShapeAttribute
方法 or 属性:antiAlias(value: boolean): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:ShapeAttribute
方法 or 属性:mesh(value: Array\, column: number, row: number): ShapeAttribute;
起始版本:8|类名:ShapeAttribute
方法 or 属性:mesh(value: Array\, column: number, row: number): ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Shape: ShapeInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Shape: ShapeInterface;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ShapeInstance: ShapeAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ShapeInstance: ShapeAttribute;
起始版本:9|shape.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SideBarContainer: SideBarContainerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const SideBarContainer: SideBarContainerInterface;
起始版本:8|sidebar.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SideBarContainerInstance: SideBarContainerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SideBarContainerInstance: SideBarContainerAttribute;
起始版本:8|sidebar.d.ts| +|起始版本有变化|类名:SliderStyle
起始版本:7|类名:SliderStyle
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderStyle
方法 or 属性:OutSet
起始版本:7|类名:SliderStyle
方法 or 属性:OutSet
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderStyle
方法 or 属性:InSet
起始版本:7|类名:SliderStyle
方法 or 属性:InSet
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
起始版本:7|类名:SliderChangeMode
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Begin
起始版本:7|类名:SliderChangeMode
方法 or 属性:Begin
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Moving
起始版本:7|类名:SliderChangeMode
方法 or 属性:Moving
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:End
起始版本:7|类名:SliderChangeMode
方法 or 属性:End
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderChangeMode
方法 or 属性:Click
起始版本:8|类名:SliderChangeMode
方法 or 属性:Click
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
起始版本:7|类名:SliderOptions
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:value?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:value?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:min?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:min?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:max?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:max?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:step?: number;
起始版本:7|类名:SliderOptions
方法 or 属性:step?: number;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:style?: SliderStyle;
起始版本:7|类名:SliderOptions
方法 or 属性:style?: SliderStyle;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:direction?: Axis;
起始版本:8|类名:SliderOptions
方法 or 属性:direction?: Axis;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderOptions
方法 or 属性:reverse?: boolean;
起始版本:8|类名:SliderOptions
方法 or 属性:reverse?: boolean;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderInterface
起始版本:7|类名:SliderInterface
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderInterface
方法 or 属性:(options?: SliderOptions): SliderAttribute;
起始版本:7|类名:SliderInterface
方法 or 属性:(options?: SliderOptions): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
起始版本:7|类名:SliderAttribute
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:blockColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:blockColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:trackColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:trackColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:selectedColor(value: ResourceColor): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:selectedColor(value: ResourceColor): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:showSteps(value: boolean): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:showSteps(value: boolean): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:showTips(value: boolean): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:showTips(value: boolean): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:trackThickness(value: Length): SliderAttribute;
起始版本:8|类名:SliderAttribute
方法 or 属性:trackThickness(value: Length): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SliderAttribute
方法 or 属性:onChange(callback: (value: number, mode: SliderChangeMode) => void): SliderAttribute;
起始版本:7|类名:SliderAttribute
方法 or 属性:onChange(callback: (value: number, mode: SliderChangeMode) => void): SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Slider: SliderInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Slider: SliderInterface;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SliderInstance: SliderAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SliderInstance: SliderAttribute;
起始版本:9|slider.d.ts| +|起始版本有变化|类名:SpanInterface
起始版本:7|类名:SpanInterface
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanInterface
方法 or 属性:(value: string \| Resource): SpanAttribute;
起始版本:7|类名:SpanInterface
方法 or 属性:(value: string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
起始版本:7|类名:SpanAttribute
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontColor(value: ResourceColor): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontColor(value: ResourceColor): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontStyle(value: FontStyle): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontStyle(value: FontStyle): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:fontFamily(value: string \| Resource): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:fontFamily(value: string \| Resource): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:letterSpacing(value: number \| string): SpanAttribute;
起始版本:7|类名:SpanAttribute
方法 or 属性:letterSpacing(value: number \| string): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:SpanAttribute
方法 or 属性:textCase(value: TextCase): SpanAttribute;
起始版本:N/A|类名:SpanAttribute
方法 or 属性:textCase(value: TextCase): SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Span: SpanInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Span: SpanInterface;
起始版本:9|span.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SpanInstance: SpanAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SpanInstance: SpanAttribute;
起始版本:9|span.d.ts| +|起始版本有变化|类名:StackInterface
起始版本:7|类名:StackInterface
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackInterface
方法 or 属性:(value?: { alignContent?: Alignment }): StackAttribute;
起始版本:7|类名:StackInterface
方法 or 属性:(value?: { alignContent?: Alignment }): StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackAttribute
起始版本:7|类名:StackAttribute
起始版本:9|stack.d.ts| +|起始版本有变化|类名:StackAttribute
方法 or 属性:alignContent(value: Alignment): StackAttribute;
起始版本:7|类名:StackAttribute
方法 or 属性:alignContent(value: Alignment): StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Stack: StackInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Stack: StackInterface;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StackInstance: StackAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StackInstance: StackAttribute;
起始版本:9|stack.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Stepper: StepperInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Stepper: StepperInterface;
起始版本:8|stepper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperInstance: StepperAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperInstance: StepperAttribute;
起始版本:8|stepper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperItemInstance: StepperItemAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperItemInstance: StepperItemAttribute;
起始版本:8|stepper_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const StepperItem: StepperItemInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const StepperItem: StepperItemInterface;
起始版本:8|stepper_item.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Swiper: SwiperInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Swiper: SwiperInterface;
起始版本:7|swiper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const SwiperInstance: SwiperAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const SwiperInstance: SwiperAttribute;
起始版本:7|swiper.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Tabs: TabsInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Tabs: TabsInterface;
起始版本:7|tabs.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabsInstance: TabsAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TabsInstance: TabsAttribute;
起始版本:7|tabs.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
起始版本:7|tab_content.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
起始版本:7|tab_content.d.ts| +|起始版本有变化|类名:TextInterface
起始版本:7|类名:TextInterface
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextInterface
方法 or 属性:(content?: string \| Resource): TextAttribute;
起始版本:7|类名:TextInterface
方法 or 属性:(content?: string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
起始版本:7|类名:TextAttribute
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontColor(value: ResourceColor): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontColor(value: ResourceColor): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:minFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:minFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:maxFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:maxFontSize(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontStyle(value: FontStyle): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontStyle(value: FontStyle): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontWeight(value: number \| FontWeight \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textAlign(value: TextAlign): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textAlign(value: TextAlign): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:lineHeight(value: number \| string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:lineHeight(value: number \| string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textOverflow(value: { overflow: TextOverflow }): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textOverflow(value: { overflow: TextOverflow }): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:fontFamily(value: string \| Resource): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:fontFamily(value: string \| Resource): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:maxLines(value: number): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:maxLines(value: number): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:decoration(value: { type: TextDecorationType; color?: ResourceColor }): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:letterSpacing(value: number \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:letterSpacing(value: number \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:textCase(value: TextCase): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:textCase(value: TextCase): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:TextAttribute
方法 or 属性:baselineOffset(value: number \| string): TextAttribute;
起始版本:7|类名:TextAttribute
方法 or 属性:baselineOffset(value: number \| string): TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInstance: TextAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInstance: TextAttribute;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Text: TextInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Text: TextInterface;
起始版本:9|text.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextArea: TextAreaInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextArea: TextAreaInterface;
起始版本:7|text_area.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextAreaInstance: TextAreaAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextAreaInstance: TextAreaAttribute;
起始版本:7|text_area.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextClock: TextClockInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextClock: TextClockInterface;
起始版本:8|text_clock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextClockInstance: TextClockAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextClockInstance: TextClockAttribute;
起始版本:8|text_clock.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInput: TextInputInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInput: TextInputInterface;
起始版本:7|text_input.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextInputInstance: TextInputAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextInputInstance: TextInputAttribute;
起始版本:7|text_input.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextPicker: TextPickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextPicker: TextPickerInterface;
起始版本:8|text_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextPickerInstance: TextPickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextPickerInstance: TextPickerAttribute;
起始版本:8|text_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextTimer: TextTimerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TextTimer: TextTimerInterface;
起始版本:8|text_timer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TextTimerInstance: TextTimerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TextTimerInstance: TextTimerAttribute;
起始版本:8|text_timer.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TimePicker: TimePickerInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const TimePicker: TimePickerInterface;
起始版本:8|time_picker.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const TimePickerInstance: TimePickerAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const TimePickerInstance: TimePickerAttribute;
起始版本:8|time_picker.d.ts| +|起始版本有变化|类名:ToggleType
起始版本:8|类名:ToggleType
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Checkbox
起始版本:8|类名:ToggleType
方法 or 属性:Checkbox
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Switch
起始版本:8|类名:ToggleType
方法 or 属性:Switch
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleType
方法 or 属性:Button
起始版本:8|类名:ToggleType
方法 or 属性:Button
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleInterface
起始版本:8|类名:ToggleInterface
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleInterface
方法 or 属性:(options: { type: ToggleType; isOn?: boolean }): ToggleAttribute;
起始版本:8|类名:ToggleInterface
方法 or 属性:(options: { type: ToggleType; isOn?: boolean }): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
起始版本:8|类名:ToggleAttribute
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:onChange(callback: (isOn: boolean) => void): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:onChange(callback: (isOn: boolean) => void): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:selectedColor(value: ResourceColor): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:selectedColor(value: ResourceColor): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:ToggleAttribute
方法 or 属性:switchPointColor(color: ResourceColor): ToggleAttribute;
起始版本:8|类名:ToggleAttribute
方法 or 属性:switchPointColor(color: ResourceColor): ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Toggle: ToggleInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Toggle: ToggleInterface;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const ToggleInstance: ToggleAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const ToggleInstance: ToggleAttribute;
起始版本:9|toggle.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Video: VideoInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Video: VideoInterface;
起始版本:7|video.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const VideoInstance: VideoAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const VideoInstance: VideoAttribute;
起始版本:7|video.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const Web: WebInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const Web: WebInterface;
起始版本:8|web.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const WebInstance: WebAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const WebInstance: WebAttribute;
起始版本:8|web.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const XComponent: XComponentInterface;
起始版本:N/A|类名:global
方法 or 属性:declare const XComponent: XComponentInterface;
起始版本:8|xcomponent.d.ts| +|起始版本有变化|类名:global
方法 or 属性:declare const XComponentInstance: XComponentAttribute;
起始版本:N/A|类名:global
方法 or 属性:declare const XComponentInstance: XComponentAttribute;
起始版本:8|xcomponent.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static debug(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static log(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static info(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static warn(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:console
方法 or 属性:static error(message: string, ...arguments: any[]): void;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function getInspectorByKey(id: string): string;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function sendEventByKey(id: string, action: number, params: string): boolean;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function sendTouchEvent(event: TouchObject): boolean;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function sendKeyEvent(event: KeyEvent): boolean;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function sendMouseEvent(event: MouseEvent): boolean;
SysCap:N/A|global.d.ts| +|SysCap有变化|类名:RouterOptions
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:RouterOptions
SysCap:SystemCapability.ArkUI.ArkUI.Lite|@ohos.router.d.ts| +|SysCap有变化|类名:router
方法 or 属性:function replace(options: RouterOptions):void;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:router
方法 or 属性:function replace(options: RouterOptions):void;
SysCap:SystemCapability.ArkUI.ArkUI.Lite|@ohos.router.d.ts| +|SysCap有变化|类名:TabContentInterface
SysCap:N/A|类名:TabContentInterface
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentInterface
方法 or 属性:(): TabContentAttribute;
SysCap:N/A|类名:TabContentInterface
方法 or 属性:(): TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentAttribute
SysCap:N/A|类名:TabContentAttribute
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:TabContentAttribute
方法 or 属性:tabBar(value: string \| Resource \| CustomBuilder \|
{ icon?: string \| Resource; text?: string \| Resource }): TabContentAttribute;
SysCap:N/A|类名:TabContentAttribute
方法 or 属性:tabBar(value: string \| Resource \| CustomBuilder \|
{ icon?: string \| Resource; text?: string \| Resource }): TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
SysCap:N/A|类名:global
方法 or 属性:declare const TabContent: TabContentInterface;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
SysCap:N/A|类名:global
方法 or 属性:declare const TabContentInstance: TabContentAttribute;
SysCap:SystemCapability.ArkUI.ArkUI.Full|tab_content.d.ts| +|SysCap有变化|类名:
方法 or 属性: function createLocalParticleAbility(name?: string): any;
SysCap:SystemCapability.ArkUI.ArkUI.Full|类名:
方法 or 属性: function createLocalParticleAbility(name?: string): any;
SysCap:N/A|global.d.ts| +|函数有变化|类名:
方法 or 属性: function getInspectorTree(): string;
|类名:
方法 or 属性: function getInspectorTree(): Object;
|global.d.ts| +|函数有变化|类名:FormComponentInterface
方法 or 属性:(value: {
id: number;
name: string;
bundle: string;
ability: string;
module: string;
dimension?: FormDimension;
temporary?: boolean;
}): FormComponentAttribute;
|类名:FormComponentInterface
方法 or 属性:(value: {
id: number;
name: string;
bundle: string;
ability: string;
module: string;
dimension?: FormDimension;
temporary?: boolean;
want?: import('../api/@ohos.app.ability.Want').default;
}): FormComponentAttribute;
|form_component.d.ts| +|函数有变化|类名:ImageAnimatorAttribute
方法 or 属性:images(
value: Array\<{
src: string;
width?: number \| string;
height?: number \| string;
top?: number \| string;
left?: number \| string;
duration?: number;
}>,
): ImageAnimatorAttribute;
|类名:ImageAnimatorAttribute
方法 or 属性:images(value: Array\): ImageAnimatorAttribute;
|image_animator.d.ts| +|函数有变化|类名:NavigationAttribute
方法 or 属性:title(value: string \| CustomBuilder): NavigationAttribute;
|类名:NavigationAttribute
方法 or 属性:title(value: string \| CustomBuilder \| NavigationCommonTitle \| NavigationCustomTitle): NavigationAttribute;
|navigation.d.ts| +|函数有变化|类名:WebAttribute
方法 or 属性:javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\,
controller: WebController }): WebAttribute;
|类名:WebAttribute
方法 or 属性:javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\,
controller: WebController \| WebviewController }): WebAttribute;
|web.d.ts| +|函数有变化|类名:WebAttribute
方法 or 属性:onRefreshAccessedHistory(callback: (event?: { url: string, refreshed: boolean }) => void): WebAttribute;
|类名:WebAttribute
方法 or 属性:onRefreshAccessedHistory(callback: (event?: { url: string, isRefreshed: boolean }) => void): WebAttribute;
|web.d.ts| +|函数有变化|类名:XComponentController
方法 or 属性:getXComponentSurfaceId();
|类名:XComponentController
方法 or 属性:getXComponentSurfaceId(): string;
|xcomponent.d.ts| +|函数有变化|类名:XComponentController
方法 or 属性:getXComponentContext();
|类名:XComponentController
方法 or 属性:getXComponentContext(): Object;
|xcomponent.d.ts| +|函数有变化|类名:XComponentController
方法 or 属性:setXComponentSurfaceSize(value: {
surfaceWidth: number;
surfaceHeight: number;
});
|类名:XComponentController
方法 or 属性:setXComponentSurfaceSize(value: {
surfaceWidth: number;
surfaceHeight: number;
}): void;
|xcomponent.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-battery.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-battery.md new file mode 100644 index 0000000000000000000000000000000000000000..ffe747302a62d35e974d78e95e522cabbef56131 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-battery.md @@ -0,0 +1,115 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.batteryInfo
类名: batteryInfo
方法 or 属性: const batteryCapacityLevel: BatteryCapacityLevel;|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: batteryInfo
方法 or 属性: const estimatedRemainingChargeTime: number;|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: batteryInfo
方法 or 属性: const totalEnergy: number;|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: batteryInfo
方法 or 属性: const nowCurrent: number;|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: batteryInfo
方法 or 属性: const remainingEnergy: number;|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_FULL|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_HIGH|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_NORMAL|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_LOW|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_WARNING|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_CRITICAL|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: BatteryCapacityLevel
方法 or 属性: LEVEL_SHUTDOWN|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_SOC = "soc"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_CHARGE_STATE = "chargeState"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_HEALTH_STATE = "healthState"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_PLUGGED_TYPE = "pluggedType"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_VOLTAGE = "voltage"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_TECHNOLOGY = "technology"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_TEMPERATURE = "temperature"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_PRESENT = "present"|@ohos.batteryInfo.d.ts| +|新增|NA|模块名: ohos.batteryInfo
类名: CommonEventBatteryChangedKey
方法 or 属性: EXTRA_CAPACITY_LEVEL = "capacityLevel"|@ohos.batteryInfo.d.ts| +|新增|NA|类名:power
方法or属性:function shutdown(reason: string): void;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function reboot(reason: string): void;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function isActive(): boolean;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function wakeup(detail: string): void;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function suspend(): void;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function getPowerMode(): DevicePowerMode;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function setPowerMode(mode: DevicePowerMode, callback: AsyncCallback\): void;|@ohos.power.d.ts| +|新增|NA|类名:power
方法or属性:function setPowerMode(mode: DevicePowerMode): Promise\;|@ohos.power.d.ts| +|新增|NA|模块名: ohos.power
类名: DevicePowerMode|@ohos.power.d.ts| +|新增|NA|类名:DevicePowerMode
方法or属性:|@ohos.power.d.ts| +|新增|NA|模块名: ohos.power
类名: DevicePowerMode
方法 or 属性:MODE_NORMAL = 600|@ohos.power.d.ts| +|新增|NA|类名:DevicePowerMode
方法or属性:MODE_NORMAL = 600|@ohos.power.d.ts| +|新增|NA|模块名: ohos.power
类名: DevicePowerMode
方法 or 属性:MODE_POWER_SAVE|@ohos.power.d.ts| +|新增|NA|类名:DevicePowerMode
方法or属性:MODE_POWER_SAVE|@ohos.power.d.ts| +|新增|NA|模块名: ohos.power
类名: DevicePowerMode
方法 or 属性:MODE_PERFORMANCE|@ohos.power.d.ts| +|新增|NA|类名:DevicePowerMode
方法or属性:MODE_PERFORMANCE|@ohos.power.d.ts| +|新增|NA|模块名: ohos.power
类名: DevicePowerMode
方法 or 属性:MODE_EXTREME_POWER_SAVE|@ohos.power.d.ts| +|新增|NA|类名:DevicePowerMode
方法or属性:MODE_EXTREME_POWER_SAVE|@ohos.power.d.ts| +|新增|NA|类名:RunningLock
方法or属性:hold(timeout: number): void;|@ohos.runningLock.d.ts| +|新增|NA|类名:RunningLock
方法or属性:isHolding(): boolean;|@ohos.runningLock.d.ts| +|新增|NA|类名:RunningLock
方法or属性:unhold(): void;|@ohos.runningLock.d.ts| +|新增|NA|类名:runningLock
方法or属性:function isSupported(type: RunningLockType): boolean;|@ohos.runningLock.d.ts| +|新增|NA|类名:runningLock
方法or属性:function create(name: string, type: RunningLockType, callback: AsyncCallback\): void;|@ohos.runningLock.d.ts| +|新增|NA|类名:runningLock
方法or属性:function create(name: string, type: RunningLockType): Promise\;|@ohos.runningLock.d.ts| +|新增|NA|类名:thermal
方法or属性:function registerThermalLevelCallback(callback: Callback\): void;|@ohos.thermal.d.ts| +|新增|NA|类名:thermal
方法or属性:function unregisterThermalLevelCallback(callback?: Callback\): void;|@ohos.thermal.d.ts| +|新增|NA|类名:thermal
方法or属性:function getLevel(): ThermalLevel;|@ohos.thermal.d.ts| +|删除|模块名:ohos.power
类名:power
方法 or 属性:function shutdownDevice(reason: string): void;|NA|@ohos.power.d.ts| +|访问级别有变化|类名:brightness
访问级别:公开API|类名:brightness
访问级别:系统API|@ohos.brightness.d.ts| +|废弃版本有变化|类名:power
方法 or 属性:function rebootDevice(reason: string): void;
废弃版本:N/A|类名:power
方法 or 属性:function rebootDevice(reason: string): void;
废弃版本:9
代替接口:{@link power|@ohos.power.d.ts| +|废弃版本有变化|类名:power
方法 or 属性:function isScreenOn(callback: AsyncCallback\): void;
废弃版本:N/A|类名:power
方法 or 属性:function isScreenOn(callback: AsyncCallback\): void;
废弃版本:9
代替接口:{@link power|@ohos.power.d.ts| +|废弃版本有变化|类名:power
方法 or 属性:function isScreenOn(): Promise\;
废弃版本:N/A|类名:power
方法 or 属性:function isScreenOn(): Promise\;
废弃版本:9
代替接口:{@link power|@ohos.power.d.ts| +|废弃版本有变化|类名:RunningLock
方法 or 属性:lock(timeout: number): void;
废弃版本:N/A|类名:RunningLock
方法 or 属性:lock(timeout: number): void;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:RunningLock
方法 or 属性:isUsed(): boolean;
废弃版本:N/A|类名:RunningLock
方法 or 属性:isUsed(): boolean;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:RunningLock
方法 or 属性:unlock(): void;
废弃版本:N/A|类名:RunningLock
方法 or 属性:unlock(): void;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:runningLock
方法 or 属性:function isRunningLockTypeSupported(type: RunningLockType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:runningLock
方法 or 属性:function isRunningLockTypeSupported(type: RunningLockType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:runningLock
方法 or 属性:function isRunningLockTypeSupported(type: RunningLockType): Promise\;
废弃版本:N/A|类名:runningLock
方法 or 属性:function isRunningLockTypeSupported(type: RunningLockType): Promise\;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:runningLock
方法 or 属性:function createRunningLock(name: string, type: RunningLockType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:runningLock
方法 or 属性:function createRunningLock(name: string, type: RunningLockType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:runningLock
方法 or 属性:function createRunningLock(name: string, type: RunningLockType): Promise\;
废弃版本:N/A|类名:runningLock
方法 or 属性:function createRunningLock(name: string, type: RunningLockType): Promise\;
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|类名:thermal
方法 or 属性:function subscribeThermalLevel(callback: AsyncCallback\): void;
废弃版本:N/A|类名:thermal
方法 or 属性:function subscribeThermalLevel(callback: AsyncCallback\): void;
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|类名:thermal
方法 or 属性:function unsubscribeThermalLevel(callback?: AsyncCallback\): void;
废弃版本:N/A|类名:thermal
方法 or 属性:function unsubscribeThermalLevel(callback?: AsyncCallback\): void;
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|类名:thermal
方法 or 属性:function getThermalLevel(): ThermalLevel;
废弃版本:N/A|类名:thermal
方法 or 属性:function getThermalLevel(): ThermalLevel;
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|类名:BatteryResponse
废弃版本:N/A|类名:BatteryResponse
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:BatteryResponse
方法 or 属性:charging: boolean;
废弃版本:N/A|类名:BatteryResponse
方法 or 属性:charging: boolean;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:BatteryResponse
方法 or 属性:level: number;
废弃版本:N/A|类名:BatteryResponse
方法 or 属性:level: number;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:GetStatusOptions
废弃版本:N/A|类名:GetStatusOptions
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:GetStatusOptions
方法 or 属性:success?: (data: BatteryResponse) => void;
废弃版本:N/A|类名:GetStatusOptions
方法 or 属性:success?: (data: BatteryResponse) => void;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:GetStatusOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:GetStatusOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:GetStatusOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:GetStatusOptions
方法 or 属性:complete?: () => void;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:Battery
废弃版本:N/A|类名:Battery
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:Battery
方法 or 属性:static getStatus(options?: GetStatusOptions): void;
废弃版本:N/A|类名:Battery
方法 or 属性:static getStatus(options?: GetStatusOptions): void;
废弃版本:6
代替接口:N/A|@system.battery.d.ts| +|废弃版本有变化|类名:BrightnessResponse
废弃版本:N/A|类名:BrightnessResponse
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:BrightnessResponse
方法 or 属性:value: number;
废弃版本:N/A|类名:BrightnessResponse
方法 or 属性:value: number;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessOptions
废弃版本:N/A|类名:GetBrightnessOptions
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessOptions
方法 or 属性:success?: (data: BrightnessResponse) => void;
废弃版本:N/A|类名:GetBrightnessOptions
方法 or 属性:success?: (data: BrightnessResponse) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:GetBrightnessOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:GetBrightnessOptions
方法 or 属性:complete?: () => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
废弃版本:N/A|类名:SetBrightnessOptions
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
方法 or 属性:value: number;
废弃版本:N/A|类名:SetBrightnessOptions
方法 or 属性:value: number;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:SetBrightnessOptions
方法 or 属性:success?: () => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:SetBrightnessOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
方法 or 属性:complete?: () => void
废弃版本:N/A|类名:SetBrightnessOptions
方法 or 属性:complete?: () => void
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:BrightnessModeResponse
废弃版本:N/A|类名:BrightnessModeResponse
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:BrightnessModeResponse
方法 or 属性:mode: number;
废弃版本:N/A|类名:BrightnessModeResponse
方法 or 属性:mode: number;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessModeOptions
废弃版本:N/A|类名:GetBrightnessModeOptions
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessModeOptions
方法 or 属性:success?: (data: BrightnessModeResponse) => void;
废弃版本:N/A|类名:GetBrightnessModeOptions
方法 or 属性:success?: (data: BrightnessModeResponse) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessModeOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:GetBrightnessModeOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessModeOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:GetBrightnessModeOptions
方法 or 属性:complete?: () => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
废弃版本:N/A|类名:SetBrightnessModeOptions
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
方法 or 属性:mode: number;
废弃版本:N/A|类名:SetBrightnessModeOptions
方法 or 属性:mode: number;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:SetBrightnessModeOptions
方法 or 属性:success?: () => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:SetBrightnessModeOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
方法 or 属性:complete?: () => void
废弃版本:N/A|类名:SetBrightnessModeOptions
方法 or 属性:complete?: () => void
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
废弃版本:N/A|类名:SetKeepScreenOnOptions
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
方法 or 属性:keepScreenOn: boolean;
废弃版本:N/A|类名:SetKeepScreenOnOptions
方法 or 属性:keepScreenOn: boolean;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:SetKeepScreenOnOptions
方法 or 属性:success?: () => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:SetKeepScreenOnOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
方法 or 属性:complete?: () => void
废弃版本:N/A|类名:SetKeepScreenOnOptions
方法 or 属性:complete?: () => void
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
废弃版本:N/A|类名:Brightness
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
方法 or 属性:static getValue(options?: GetBrightnessOptions): void;
废弃版本:N/A|类名:Brightness
方法 or 属性:static getValue(options?: GetBrightnessOptions): void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
方法 or 属性:static setValue(options?: SetBrightnessOptions): void;
废弃版本:N/A|类名:Brightness
方法 or 属性:static setValue(options?: SetBrightnessOptions): void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
方法 or 属性:static getMode(options?: GetBrightnessModeOptions): void;
废弃版本:N/A|类名:Brightness
方法 or 属性:static getMode(options?: GetBrightnessModeOptions): void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
方法 or 属性:static setMode(options?: SetBrightnessModeOptions): void;
废弃版本:N/A|类名:Brightness
方法 or 属性:static setMode(options?: SetBrightnessModeOptions): void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
方法 or 属性:static setKeepScreenOn(options?: SetKeepScreenOnOptions): void;
废弃版本:N/A|类名:Brightness
方法 or 属性:static setKeepScreenOn(options?: SetKeepScreenOnOptions): void;
废弃版本:7
代替接口:N/A|@system.brightness.d.ts| +|新增(错误码)|NA|类名:batteryStats
方法 or 属性:function getBatteryStats(callback: AsyncCallback\>): void;
错误码内容: 401|@ohos.batteryStatistics.d.ts| +|新增(错误码)|NA|类名:batteryStats
方法 or 属性:function getAppPowerValue(uid: number): number;
错误码内容: 4600101|@ohos.batteryStatistics.d.ts| +|新增(错误码)|NA|类名:batteryStats
方法 or 属性:function getAppPowerPercent(uid: number): number;
错误码内容: 4600101|@ohos.batteryStatistics.d.ts| +|新增(错误码)|NA|类名:batteryStats
方法 or 属性:function getHardwareUnitPowerValue(type: ConsumptionType): number;
错误码内容: 401, 4600101|@ohos.batteryStatistics.d.ts| +|新增(错误码)|NA|类名:batteryStats
方法 or 属性:function getHardwareUnitPowerPercent(type: ConsumptionType): number;
错误码内容: 401, 4600101|@ohos.batteryStatistics.d.ts| +|新增(错误码)|NA|类名:brightness
方法 or 属性:function setValue(value: number): void;
错误码内容: 401, 4700101|@ohos.brightness.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-bundle.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-bundle.md new file mode 100644 index 0000000000000000000000000000000000000000..befebbdffd9f14965bf30c81779de193cf2ac9bb --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-bundle.md @@ -0,0 +1,547 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function setDisposedStatus(appId: string, disposedWant: Want, callback: AsyncCallback\): void;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function setDisposedStatus(appId: string, disposedWant: Want): Promise\;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function getDisposedStatus(appId: string, callback: AsyncCallback\): void;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function getDisposedStatus(appId: string): Promise\;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function deleteDisposedStatus(appId: string, callback: AsyncCallback\): void;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.appControl
类名: appControl
方法 or 属性: function deleteDisposedStatus(appId: string): Promise\;|@ohos.bundle.appControl.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_DEFAULT = 0x00000000|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_APPLICATION = 0x00000001|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_HAP_MODULE = 0x00000002|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_ABILITY = 0x00000004|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_EXTENSION_ABILITY = 0x00000008|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_REQUESTED_PERMISSION = 0x00000010|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_METADATA = 0x00000020|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_DISABLE = 0x00000040|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法 or 属性: GET_BUNDLE_INFO_WITH_SIGNATURE_INFO = 0x00000080|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ApplicationFlag|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法 or 属性: GET_APPLICATION_INFO_DEFAULT = 0x00000000|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法 or 属性: GET_APPLICATION_INFO_WITH_PERMISSION = 0x00000001|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法 or 属性: GET_APPLICATION_INFO_WITH_METADATA = 0x00000002|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法 or 属性: GET_APPLICATION_INFO_WITH_DISABLE = 0x00000004|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_DEFAULT = 0x00000000|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_WITH_PERMISSION = 0x00000001|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_WITH_APPLICATION = 0x00000002|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_WITH_METADATA = 0x00000004|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_WITH_DISABLE = 0x00000008|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法 or 属性: GET_ABILITY_INFO_ONLY_SYSTEM_APP = 0x00000010|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法 or 属性: GET_EXTENSION_ABILITY_INFO_DEFAULT = 0x00000000|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法 or 属性: GET_EXTENSION_ABILITY_INFO_WITH_PERMISSION = 0x00000001|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法 or 属性: GET_EXTENSION_ABILITY_INFO_WITH_APPLICATION = 0x00000002|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法 or 属性: GET_EXTENSION_ABILITY_INFO_WITH_METADATA = 0x00000004|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: FORM = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: WORK_SCHEDULER = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: INPUT_METHOD = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: SERVICE = 3|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: ACCESSIBILITY = 4|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: DATA_SHARE = 5|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: FILE_SHARE = 6|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: STATIC_SUBSCRIBER = 7|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: WALLPAPER = 8|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: BACKUP = 9|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: WINDOW = 10|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: ENTERPRISE_ADMIN = 11|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: THUMBNAIL = 13|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: PREVIEW = 14|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法 or 属性: UNSPECIFIED = 255|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: PermissionGrantState|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: PermissionGrantState
方法 or 属性: PERMISSION_DENIED = -1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: PermissionGrantState
方法 or 属性: PERMISSION_GRANTED = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: SupportWindowMode|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法 or 属性: FULL_SCREEN = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法 or 属性: SPLIT = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法 or 属性: FLOATING = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: LaunchType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: LaunchType
方法 or 属性: SINGLETON = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: LaunchType
方法 or 属性: MULTITON = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: LaunchType
方法 or 属性: SPECIFIED = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityType
方法 or 属性: PAGE = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityType
方法 or 属性: SERVICE = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: AbilityType
方法 or 属性: DATA = 3|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: UNSPECIFIED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: LANDSCAPE|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: PORTRAIT|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: FOLLOW_RECENT|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: LANDSCAPE_INVERTED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: PORTRAIT_INVERTED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION_LANDSCAPE|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION_PORTRAIT|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION_LANDSCAPE_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: AUTO_ROTATION_PORTRAIT_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法 or 属性: LOCKED|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性: ENTRY = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性: FEATURE = 2|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: ModuleType
方法 or 属性: SHARED = 3|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType
方法 or 属性: APP = 0|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: BundleType
方法 or 属性: ATOMIC_SERVICE = 1|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfoForSelf(bundleFlags: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfoForSelf(bundleFlags: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfo(bundleName: string, bundleFlags: number, userId?: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getApplicationInfo(bundleName: string, appFlags: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getApplicationInfo(bundleName: string, appFlags: number, userId: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getApplicationInfo(bundleName: string, appFlags: number, userId?: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllBundleInfo(bundleFlags: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllBundleInfo(bundleFlags: number, userId: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllBundleInfo(bundleFlags: number, userId?: number): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllApplicationInfo(appFlags: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllApplicationInfo(appFlags: number, userId: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAllApplicationInfo(appFlags: number, userId?: number): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryAbilityInfo(want: Want, abilityFlags: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryAbilityInfo(want: Want, abilityFlags: number, userId: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryAbilityInfo(want: Want, abilityFlags: number, userId?: number): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, userId: number, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, userId?: number): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleNameByUid(uid: number, callback: AsyncCallback\): void|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleNameByUid(uid: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback\): void|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function cleanBundleCacheFiles(bundleName: string): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function setApplicationEnabled(bundleName: string, isEnabled: boolean, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function setApplicationEnabled(bundleName: string, isEnabled: boolean): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function isApplicationEnabled(bundleName: string, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function isApplicationEnabled(bundleName: string): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function isAbilityEnabled(info: AbilityInfo): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getLaunchWantForBundle(bundleName: string, userId: number, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getLaunchWantForBundle(bundleName: string, userId?: number): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getProfileByAbility(moduleName: string, abilityName: string, metadataName: string, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getProfileByAbility(moduleName: string, abilityName: string, metadataName?: string): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getProfileByExtensionAbility(moduleName: string, extensionAbilityName: string, metadataName: string, callback: AsyncCallback\>): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getProfileByExtensionAbility(moduleName: string, extensionAbilityName: string, metadataName?: string): Promise\>;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getPermissionDef(permissionName: string, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getPermissionDef(permissionName: string): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string, callback: AsyncCallback\): void;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string): Promise\;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getApplicationInfoSync(bundleName: string, applicationFlags: number, userId: number) : ApplicationInfo;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getApplicationInfoSync(bundleName: string, applicationFlags: number) : ApplicationInfo;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfoSync(bundleName: string, bundleFlags: number, userId: number): BundleInfo;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleManager
类名: bundleManager
方法 or 属性: function getBundleInfoSync(bundleName: string, bundleFlags: number): BundleInfo;|@ohos.bundle.bundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedEvent
方法 or 属性: type BundleChangedEvent = 'add' \| 'update' \| 'remove';|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedEvent
方法 or 属性: type BundleChangedEvent = 'add' \| 'update' \| 'remove';|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedEvent
方法 or 属性: type BundleChangedEvent = 'add' \| 'update' \| 'remove';|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo
方法 or 属性: readonly bundleName: string;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo
方法 or 属性: readonly userId: number;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function on(type: BundleChangedEvent, callback: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function on(type: BundleChangedEvent, callback: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function on(type: BundleChangedEvent, callback: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function off(type: BundleChangedEvent, callback?: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function off(type: BundleChangedEvent, callback?: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法 or 属性: function off(type: BundleChangedEvent, callback?: Callback\): void;|@ohos.bundle.bundleMonitor.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: BROWSER = "Web Browser"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: IMAGE = "Image Gallery"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: AUDIO = "Audio Player"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: VIDEO = "Video Player"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: PDF = "PDF Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: WORD = "Word Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: EXCEL = "Excel Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: ApplicationType
方法 or 属性: PPT = "PPT Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function isDefaultApplication(type: string, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function isDefaultApplication(type: string) : Promise\;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function getDefaultApplication(type: string, userId: number, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function getDefaultApplication(type: string, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function getDefaultApplication(type: string, userId?: number) : Promise\;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function setDefaultApplication(type: string, elementName: ElementName, userId: number, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function setDefaultApplication(type: string, elementName: ElementName, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function setDefaultApplication(type: string, elementName: ElementName, userId?: number) : Promise\;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function resetDefaultApplication(type: string, userId: number, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function resetDefaultApplication(type: string, callback: AsyncCallback\) : void;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.defaultAppManager
类名: defaultAppManager
方法 or 属性: function resetDefaultApplication(type: string, userId?: number) : Promise\;|@ohos.bundle.defaultAppManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback\): void;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementName: ElementName): Promise\;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementNames: Array\, callback: AsyncCallback\>): void;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementNames: Array\): Promise\>;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementName: ElementName, locale: string, callback: AsyncCallback\): void;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementName: ElementName, locale: string): Promise\;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementNames: Array\, locale: string, callback: AsyncCallback\>): void;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.distributedBundleManager
类名: distributedBundleManager
方法 or 属性: function getRemoteAbilityInfo(elementNames: Array\, locale: string): Promise\>;|@ohos.bundle.distributedBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: UpgradeFlag|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法 or 属性: NOT_UPGRADE = 0|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法 or 属性: SINGLE_UPGRADE = 1|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法 or 属性: RELATION_UPGRADE = 2|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: BundlePackFlag|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法 or 属性: GET_PACK_INFO_ALL = 0x00000000|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法 or 属性: GET_PACKAGES = 0x00000001|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法 or 属性: GET_BUNDLE_SUMMARY = 0x00000002|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法 or 属性: GET_MODULE_SUMMARY = 0x00000004|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function setHapModuleUpgradeFlag(bundleName: string, moduleName: string, upgradeFlag: UpgradeFlag, callback: AsyncCallback\) : void;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function setHapModuleUpgradeFlag(bundleName: string, moduleName: string, upgradeFlag: UpgradeFlag): Promise\;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function isHapModuleRemovable(bundleName: string, moduleName: string, callback: AsyncCallback\): void;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function isHapModuleRemovable(bundleName: string, moduleName: string): Promise\;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function getBundlePackInfo(bundleName: string, bundlePackFlag : BundlePackFlag, callback: AsyncCallback\): void;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function getBundlePackInfo(bundleName: string, bundlePackFlag : BundlePackFlag): Promise\;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function getDispatchInfo(callback: AsyncCallback\): void;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.freeInstall
类名: freeInstall
方法 or 属性: function getDispatchInfo(): Promise\;|@ohos.bundle.freeInstall.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: installer|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: installer
方法 or 属性: function getBundleInstaller(callback: AsyncCallback\): void|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: installer
方法 or 属性: function getBundleInstaller(): Promise\;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: install(hapFilePaths: Array\, installParam: InstallParam, callback: AsyncCallback\) : void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: install(hapFilePaths: Array\, callback: AsyncCallback\) : void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: install(hapFilePaths: Array\, installParam?: InstallParam) : Promise\;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: uninstall(bundleName: string, installParam: InstallParam, callback : AsyncCallback\) : void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: uninstall(bundleName: string, callback : AsyncCallback\) : void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: uninstall(bundleName: string, installParam?: InstallParam) : Promise\;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: recover(bundleName: string, installParam: InstallParam, callback: AsyncCallback\): void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: recover(bundleName: string, callback: AsyncCallback\): void;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: BundleInstaller
方法 or 属性: recover(bundleName: string, installParam?: InstallParam) : Promise\;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: HashParam|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: HashParam
方法 or 属性: moduleName: string;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: HashParam
方法 or 属性: hashValue: string;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam
方法 or 属性: userId?: number;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam
方法 or 属性: installFlag?: number;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam
方法 or 属性: isKeepData?: boolean;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam
方法 or 属性: hashParams?: Array\;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.installer
类名: InstallParam
方法 or 属性: crowdtestDeadline?: number;|@ohos.bundle.installer.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getLauncherAbilityInfo(bundleName: string, userId: number, callback: AsyncCallback\>) : void;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getLauncherAbilityInfo(bundleName: string, userId: number) : Promise\>;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getAllLauncherAbilityInfo(userId: number, callback: AsyncCallback\>) : void;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getAllLauncherAbilityInfo(userId: number) : Promise\>;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getShortcutInfo(bundleName :string, callback: AsyncCallback\>) : void;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法 or 属性: function getShortcutInfo(bundleName : string) : Promise\>;|@ohos.bundle.launcherBundleManager.d.ts| +|新增|NA|类名:zlib
方法or属性:function compressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback\): void;|@ohos.zlib.d.ts| +|新增|NA|类名:zlib
方法or属性:function compressFile(inFile:string, outFile:string, options: Options): Promise\;|@ohos.zlib.d.ts| +|新增|NA|类名:zlib
方法or属性:function decompressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback\): void;|@ohos.zlib.d.ts| +|新增|NA|类名:zlib
方法or属性:function decompressFile(inFile: string, outFile: string, options: Options): Promise\;|@ohos.zlib.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly bundleName: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly moduleName: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly name: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly label: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly labelId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly description: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly descriptionId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly icon: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly iconId: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly process: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly exported: boolean;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly type: bundleManager.AbilityType;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly orientation: bundleManager.DisplayOrientation;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly launchType: bundleManager.LaunchType;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly permissions: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly readPermission: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly writePermission: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly uri: string;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly deviceTypes: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly metadata: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly enabled: boolean;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly supportWindowModes: Array\;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: AbilityInfo
方法 or 属性: readonly windowSize: WindowSize;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowRatio: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowRatio: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowWidth: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowWidth: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly maxWindowHeight: number;|AbilityInfo.d.ts| +|新增|NA|模块名: AbilityInfo
类名: WindowSize
方法 or 属性: readonly minWindowHeight: number;|AbilityInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly name: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly description: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly descriptionId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly enabled: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly label: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly labelId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly icon: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly iconId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly process: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly permissions: Array\;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly codePath: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly metadata: Map\>;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly removable: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly accessTokenId: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly uid: number;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly iconResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly labelResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly descriptionResource: Resource;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly appDistributionType: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly appProvisionType: string;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly systemApp: boolean;|ApplicationInfo.d.ts| +|新增|NA|模块名: ApplicationInfo
类名: ApplicationInfo
方法 or 属性: readonly bundleType: bundleManager.BundleType;|ApplicationInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly name: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly vendor: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly versionCode: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly versionName: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly minCompatibleVersionCode: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly targetVersion: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly appInfo: ApplicationInfo;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly hapModulesInfo: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly reqPermissionDetails: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly permissionGrantStates: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly signatureInfo: SignatureInfo;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly installTime: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: BundleInfo
方法 or 属性: readonly updateTime: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: name: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: reason: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: reasonId: number;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: ReqPermissionDetail
方法 or 属性: usedScene: UsedScene;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene
方法 or 属性: abilities: Array\;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: UsedScene
方法 or 属性: when: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo
方法 or 属性: readonly appId: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundleInfo
类名: SignatureInfo
方法 or 属性: readonly fingerprint: string;|BundleInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo
方法 or 属性: readonly packages: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundlePackInfo
方法 or 属性: readonly summary: PackageSummary;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly deviceTypes: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly moduleType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageConfig
方法 or 属性: readonly deliveryWithInstall: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary
方法 or 属性: readonly app: BundleConfigInfo;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: PackageSummary
方法 or 属性: readonly modules: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo
方法 or 属性: readonly bundleName: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: BundleConfigInfo
方法 or 属性: readonly version: Version;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ExtensionAbility
方法 or 属性: readonly forms: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly mainAbility: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly apiVersion: ApiVersion;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly deviceTypes: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly distro: ModuleDistroInfo;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly abilities: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleConfigInfo
方法 or 属性: readonly extensionAbilities: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly deliveryWithInstall: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly installationFree: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly moduleName: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleDistroInfo
方法 or 属性: readonly moduleType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly label: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly exported: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ModuleAbilityInfo
方法 or 属性: readonly forms: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly type: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly updateEnabled: boolean;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly scheduledUpdateTime: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly updateDuration: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly supportDimensions: Array\;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: AbilityFormInfo
方法 or 属性: readonly defaultDimension: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly minCompatibleVersionCode: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly name: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: Version
方法 or 属性: readonly code: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly releaseType: string;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly compatible: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: BundlePackInfo
类名: ApiVersion
方法 or 属性: readonly target: number;|BundlePackInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo|DispatchInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo
方法 or 属性: readonly version: string;|DispatchInfo.d.ts| +|新增|NA|模块名: DispatchInfo
类名: DispatchInfo
方法 or 属性: readonly dispatchAPIVersion: string;|DispatchInfo.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: deviceId?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: bundleName: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: moduleName?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: abilityName: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: uri?: string;|ElementName.d.ts| +|新增|NA|模块名: ElementName
类名: ElementName
方法 or 属性: shortName?: string;|ElementName.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly bundleName: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly moduleName: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly name: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly labelId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly descriptionId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly iconId: number;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly exported: boolean;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly extensionAbilityType: bundleManager.ExtensionAbilityType;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly permissions: Array\;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly metadata: Array\;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly enabled: boolean;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly readPermission: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: ExtensionAbilityInfo
类名: ExtensionAbilityInfo
方法 or 属性: readonly writePermission: string;|ExtensionAbilityInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly name: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly icon: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly iconId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly label: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly labelId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly description: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly descriptionId: number;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly mainElementName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly abilitiesInfo: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly extensionAbilitiesInfo: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly metadata: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly deviceTypes: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly installationFree: boolean;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly hashValue: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly type: bundleManager.ModuleType;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly dependencies: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: HapModuleInfo
方法 or 属性: readonly preloads: Array\;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: Dependency|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: Dependency
方法 or 属性: readonly moduleName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: PreloadItem|HapModuleInfo.d.ts| +|新增|NA|模块名: HapModuleInfo
类名: PreloadItem
方法 or 属性: readonly moduleName: string;|HapModuleInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly applicationInfo: ApplicationInfo;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly elementName : ElementName;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly labelId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly iconId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly userId: number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: LauncherAbilityInfo
类名: LauncherAbilityInfo
方法 or 属性: readonly installTime : number;|LauncherAbilityInfo.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: name: string;|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: value: string;|Metadata.d.ts| +|新增|NA|模块名: Metadata
类名: Metadata
方法 or 属性: resource: string;|Metadata.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly permissionName: string;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly grantMode: number;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly labelId: number;|PermissionDef.d.ts| +|新增|NA|模块名: PermissionDef
类名: PermissionDef
方法 or 属性: readonly descriptionId: number;|PermissionDef.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly elementName: ElementName;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly label: string;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: RemoteAbilityInfo
类名: RemoteAbilityInfo
方法 or 属性: readonly icon: string;|RemoteAbilityInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly id: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly bundleName: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly moduleName: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly hostAbility: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly icon: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly iconId: number;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly label: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly labelId: number;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutInfo
方法 or 属性: readonly wants: Array\;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetBundle: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetModule: string;|ShortcutInfo.d.ts| +|新增|NA|模块名: ShortcutInfo
类名: ShortcutWant
方法 or 属性: readonly targetAbility: string;|ShortcutInfo.d.ts| +|model有变化|类名:AbilityInfo
方法 or 属性:readonly orientation: bundle.DisplayOrientation;
model:@FAModelOnly|类名:AbilityInfo
方法 or 属性:readonly orientation: bundle.DisplayOrientation;
model:N/A|abilityInfo.d.ts| +|访问级别有变化|类名:LauncherAbilityInfo
访问级别:公开API|类名:LauncherAbilityInfo
访问级别:系统API|launcherAbilityInfo.d.ts| +|废弃版本有变化|类名:bundle
废弃版本:N/A|类名:bundle
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|类名:BundleFlag
废弃版本:N/A|类名:BundleFlag
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|类名:ColorMode
废弃版本:N/A|类名:ColorMode
废弃版本:9
代替接口:N/A|@ohos.bundle.d.ts| +|废弃版本有变化|类名:GrantStatus
废弃版本:N/A|类名:GrantStatus
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionGrantState |@ohos.bundle.d.ts| +|废弃版本有变化|类名:AbilityType
废弃版本:N/A|类名:AbilityType
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|类名:AbilitySubType
废弃版本:N/A|类名:AbilitySubType
废弃版本:9
代替接口:N/A|@ohos.bundle.d.ts| +|废弃版本有变化|类名:DisplayOrientation
废弃版本:N/A|类名:DisplayOrientation
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|类名:LaunchMode
废弃版本:N/A|类名:LaunchMode
废弃版本:9
代替接口:ohos.bundle.bundleManager.LaunchType |@ohos.bundle.d.ts| +|废弃版本有变化|类名:BundleOptions
废弃版本:N/A|类名:BundleOptions
废弃版本:9
代替接口:N/A|@ohos.bundle.d.ts| +|废弃版本有变化|类名:InstallErrorCode
废弃版本:N/A|类名:InstallErrorCode
废弃版本:9
代替接口:N/A|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, options: BundleOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, options: BundleOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, options?: BundleOptions): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleInfo(bundleName: string, bundleFlags: number, options?: BundleOptions): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleInstaller(callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleInstaller(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.installer|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleInstaller(): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleInstaller(): Promise\;
废弃版本:9
代替接口:ohos.bundle.installer|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityInfo(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityInfo(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityInfo(bundleName: string, abilityName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityInfo(bundleName: string, abilityName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, userId?: number) : Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getApplicationInfo(bundleName: string, bundleFlags: number, userId?: number) : Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, userId: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, userId: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, userId?:number): Promise\>;
废弃版本:N/A|类名:bundle
方法 or 属性:function queryAbilityByWant(want: Want, bundleFlags: number, userId?:number): Promise\>;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, userId: number, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, userId: number, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, userId?: number) : Promise\>;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllBundleInfo(bundleFlag: BundleFlag, userId?: number) : Promise\>;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, userId: number, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, userId: number, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, userId?: number) : Promise\>;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAllApplicationInfo(bundleFlags: number, userId?: number) : Promise\>;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getNameForUid(uid: number, callback: AsyncCallback\) : void
废弃版本:N/A|类名:bundle
方法 or 属性:function getNameForUid(uid: number, callback: AsyncCallback\) : void
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getNameForUid(uid: number) : Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getNameForUid(uid: number) : Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback\) : void
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback\) : void
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number) : Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number) : Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getLaunchWantForBundle(bundleName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getLaunchWantForBundle(bundleName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function cleanBundleCacheFiles(bundleName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function cleanBundleCacheFiles(bundleName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function setApplicationEnabled(bundleName: string, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function setApplicationEnabled(bundleName: string, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function setApplicationEnabled(bundleName: string, isEnable: boolean): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function setApplicationEnabled(bundleName: string, isEnable: boolean): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function setAbilityEnabled(info: AbilityInfo, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function setAbilityEnabled(info: AbilityInfo, isEnable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function setAbilityEnabled(info: AbilityInfo, isEnable: boolean): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function setAbilityEnabled(info: AbilityInfo, isEnable: boolean): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getPermissionDef(permissionName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getPermissionDef(permissionName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getPermissionDef(permissionName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getPermissionDef(permissionName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityLabel(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityLabel(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityLabel(bundleName: string, abilityName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityLabel(bundleName: string, abilityName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityIcon(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityIcon(bundleName: string, abilityName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function getAbilityIcon(bundleName: string, abilityName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function getAbilityIcon(bundleName: string, abilityName: string): Promise\;
废弃版本:9
代替接口:ohos.resourceManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function isAbilityEnabled(info: AbilityInfo): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function isAbilityEnabled(info: AbilityInfo): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function isApplicationEnabled(bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundle
方法 or 属性:function isApplicationEnabled(bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:bundle
方法 or 属性:function isApplicationEnabled(bundleName: string): Promise\;
废弃版本:N/A|类名:bundle
方法 or 属性:function isApplicationEnabled(bundleName: string): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|类名:innerBundleManager
废弃版本:N/A|类名:innerBundleManager
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager |@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getLauncherAbilityInfos(bundleName: string, userId: number, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getLauncherAbilityInfos(bundleName: string, userId: number, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getLauncherAbilityInfos(bundleName: string, userId: number) : Promise\>;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getLauncherAbilityInfos(bundleName: string, userId: number) : Promise\>;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback): Promise\;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function off(type:"BundleStatusChange", callback: AsyncCallback\) : void;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function off(type:"BundleStatusChange", callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function off(type:"BundleStatusChange"): Promise\;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function off(type:"BundleStatusChange"): Promise\;
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getAllLauncherAbilityInfos(userId: number, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getAllLauncherAbilityInfos(userId: number, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getAllLauncherAbilityInfos(userId: number) : Promise\>;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getAllLauncherAbilityInfos(userId: number) : Promise\>;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getShortcutInfos(bundleName :string, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getShortcutInfos(bundleName :string, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
方法 or 属性:function getShortcutInfos(bundleName : string) : Promise\>;
废弃版本:N/A|类名:innerBundleManager
方法 or 属性:function getShortcutInfos(bundleName : string) : Promise\>;
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:distributedBundle
废弃版本:N/A|类名:distributedBundle
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager |@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback\): void;
废弃版本:N/A|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager|@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfo(elementName: ElementName): Promise\;
废弃版本:N/A|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfo(elementName: ElementName): Promise\;
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager|@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfos(elementNames: Array\, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfos(elementNames: Array\, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager|@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfos(elementNames: Array\): Promise\>;
废弃版本:N/A|类名:distributedBundle
方法 or 属性:function getRemoteAbilityInfos(elementNames: Array\): Promise\>;
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager|@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:ErrorCode
废弃版本:N/A|类名:ErrorCode
废弃版本:9
代替接口:N/A|@ohos.zlib.d.ts| +|废弃版本有变化|类名:zlib
方法 or 属性:function zipFile(inFile:string, outFile:string, options: Options): Promise\;
废弃版本:N/A|类名:zlib
方法 or 属性:function zipFile(inFile:string, outFile:string, options: Options): Promise\;
废弃版本:9
代替接口:ohos.zlib|@ohos.zlib.d.ts| +|废弃版本有变化|类名:zlib
方法 or 属性:function unzipFile(inFile:string, outFile:string, options: Options): Promise\;
废弃版本:N/A|类名:zlib
方法 or 属性:function unzipFile(inFile:string, outFile:string, options: Options): Promise\;
废弃版本:9
代替接口:ohos.zlib|@ohos.zlib.d.ts| +|废弃版本有变化|类名:CheckPackageHasInstalledResponse
废弃版本:N/A|类名:CheckPackageHasInstalledResponse
废弃版本:9
代替接口:N/A|@system.package.d.ts| +|废弃版本有变化|类名:CheckPackageHasInstalledOptions
废弃版本:N/A|类名:CheckPackageHasInstalledOptions
废弃版本:9
代替接口:N/A|@system.package.d.ts| +|废弃版本有变化|类名:Package
废弃版本:N/A|类名:Package
废弃版本:9
代替接口:N/A|@system.package.d.ts| +|废弃版本有变化|类名:Package
方法 or 属性:static hasInstalled(options: CheckPackageHasInstalledOptions): void;
废弃版本:N/A|类名:Package
方法 or 属性:static hasInstalled(options: CheckPackageHasInstalledOptions): void;
废弃版本:9
代替接口:N/A|@system.package.d.ts| +|废弃版本有变化|类名:AbilityInfo
废弃版本:N/A|类名:AbilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|类名:ApplicationInfo
废弃版本:N/A|类名:ApplicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|类名:ApplicationInfo
方法 or 属性:readonly labelId: string;
废弃版本:N/A|类名:ApplicationInfo
方法 or 属性:readonly labelId: string;
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo.labelIndex |applicationInfo.d.ts| +|废弃版本有变化|类名:ApplicationInfo
方法 or 属性:readonly iconId: string;
废弃版本:N/A|类名:ApplicationInfo
方法 or 属性:readonly iconId: string;
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo.iconIndex |applicationInfo.d.ts| +|废弃版本有变化|类名:UsedScene
废弃版本:N/A|类名:UsedScene
废弃版本:9
代替接口:ohos.bundle.bundleManager.UsedScene |bundleInfo.d.ts| +|废弃版本有变化|类名:ReqPermissionDetail
废弃版本:N/A|类名:ReqPermissionDetail
废弃版本:9
代替接口:ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts| +|废弃版本有变化|类名:BundleInfo
废弃版本:N/A|类名:BundleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|类名:InstallParam
废弃版本:N/A|类名:InstallParam
废弃版本:9
代替接口:ohos.bundle.installer|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallParam
方法 or 属性:userId: number;
废弃版本:N/A|类名:InstallParam
方法 or 属性:userId: number;
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallParam
方法 or 属性:installFlag: number;
废弃版本:N/A|类名:InstallParam
方法 or 属性:installFlag: number;
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallParam
方法 or 属性:isKeepData: boolean;
废弃版本:N/A|类名:InstallParam
方法 or 属性:isKeepData: boolean;
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallStatus
废弃版本:N/A|类名:InstallStatus
废弃版本:9
代替接口:N/A|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallStatus
方法 or 属性:status: bundle.InstallErrorCode;
废弃版本:N/A|类名:InstallStatus
方法 or 属性:status: bundle.InstallErrorCode;
废弃版本:9
代替接口:N/A|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallStatus
方法 or 属性:statusMessage: string;
废弃版本:N/A|类名:InstallStatus
方法 or 属性:statusMessage: string;
废弃版本:9
代替接口:N/A|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleInstaller
废弃版本:N/A|类名:BundleInstaller
废弃版本:9
代替接口:ohos.bundle.installer|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleInstaller
方法 or 属性:install(bundleFilePaths: Array\, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:N/A|类名:BundleInstaller
方法 or 属性:install(bundleFilePaths: Array\, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:N/A|类名:BundleInstaller
方法 or 属性:uninstall(bundleName: string, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleInstaller
方法 or 属性:recover(bundleName: string, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:N/A|类名:BundleInstaller
方法 or 属性:recover(bundleName: string, param: InstallParam, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleStatusCallback
废弃版本:N/A|类名:BundleStatusCallback
废弃版本:9
代替接口:N/A|bundleStatusCallback.d.ts| +|废弃版本有变化|类名:CustomizeData
废弃版本:N/A|类名:CustomizeData
废弃版本:9
代替接口:ohos.bundle.bundleManager.Metadata |customizeData.d.ts| +|废弃版本有变化|类名:ElementName
废弃版本:N/A|类名:ElementName
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|类名:HapModuleInfo
废弃版本:N/A|类名:HapModuleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|类名:LauncherAbilityInfo
废弃版本:N/A|类名:LauncherAbilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|类名:ModuleInfo
废弃版本:N/A|类名:ModuleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |moduleInfo.d.ts| +|废弃版本有变化|类名:PermissionDef
废弃版本:N/A|类名:PermissionDef
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|类名:RemoteAbilityInfo
废弃版本:N/A|类名:RemoteAbilityInfo
废弃版本:9
代替接口:ohos.bundle.distributedBundleManager.RemoteAbilityInfo |remoteAbilityInfo.d.ts| +|废弃版本有变化|类名:ShortcutWant
废弃版本:N/A|类名:ShortcutWant
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutWant |shortcutInfo.d.ts| +|废弃版本有变化|类名:ShortcutInfo
废弃版本:N/A|类名:ShortcutInfo
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|起始版本有变化|类名:LauncherAbilityInfo
起始版本:N/A|类名:LauncherAbilityInfo
起始版本:8|launcherAbilityInfo.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-communication.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-communication.md new file mode 100644 index 0000000000000000000000000000000000000000..7630596de7ce2aacbf1a34f1fb936bc1208caf19 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-communication.md @@ -0,0 +1,1792 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getState(): BluetoothState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getBtConnectionState(): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function pairDevice(deviceId: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function cancelPairedDevice(deviceId: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getRemoteDeviceName(deviceId: string): string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getRemoteDeviceClass(deviceId: string): DeviceClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function enableBluetooth(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function disableBluetooth(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getLocalName(): string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getPairedDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getProfileConnectionState(profileId: ProfileId): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setDevicePairingConfirmation(device: string, accept: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setLocalName(name: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function setBluetoothScanMode(mode: ScanMode, duration: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getBluetoothScanMode(): ScanMode;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function startBluetoothDiscovery(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function stopBluetoothDiscovery(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "bluetoothDeviceFind", callback: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "bondStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "bondStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "pinRequired", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "pinRequired", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "stateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "stateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppAccept(serverSocket: number, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppCloseServerSocket(socket: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppCloseClientSocket(socket: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function sppWrite(clientSocket: number, data: ArrayBuffer): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function on(type: "sppRead", clientSocket: number, callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: bluetoothManager
方法 or 属性: function getProfileInstance(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile \| HidHostProfile \| PanProfile;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile
方法 or 属性: getConnectionDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BaseProfile
方法 or 属性: getDeviceState(device: string): ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: A2dpSourceProfile
方法 or 属性: getPlayingState(device: string): PlayingState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HandsFreeAudioGatewayProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: connect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: HidHostProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: disconnect(device: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: on(type: "connectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: off(type: "connectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: setTethering(enable: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PanProfile
方法 or 属性: isTetheringOn(): boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function createGattServer(): GattServer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function createGattClientDevice(deviceId: string): GattClientDevice;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function getConnectedBLEDevices(): Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function startBLEScan(filters: Array\, options?: ScanOptions): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function stopBLEScan(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function on(type: "BLEDeviceFind", callback: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLE
方法 or 属性: function off(type: "BLEDeviceFind", callback?: Callback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: stopAdvertising(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: addService(service: GattService): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: removeService(serviceUuid: string): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: close(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: sendResponse(serverResponse: ServerResponse): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "characteristicRead", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "characteristicRead", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "characteristicWrite", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "characteristicWrite", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "descriptorRead", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "descriptorRead", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "descriptorWrite", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "descriptorWrite", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: on(type: "connectStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattServer
方法 or 属性: off(type: "connectStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: connect(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: disconnect(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: close(): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getDeviceName(callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getDeviceName(): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getServices(callback: AsyncCallback\>): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getServices(): Promise\>;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readCharacteristicValue(characteristic: BLECharacteristic): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: readDescriptorValue(descriptor: BLEDescriptor): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: writeCharacteristicValue(characteristic: BLECharacteristic): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: writeDescriptorValue(descriptor: BLEDescriptor): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getRssiValue(callback: AsyncCallback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: getRssiValue(): Promise\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: setBLEMtuSize(mtu: number): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: on(type: "BLECharacteristicChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: off(type: "BLECharacteristicChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: on(type: "BLEConnectionStateChange", callback: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattClientDevice
方法 or 属性: off(type: "BLEConnectionStateChange", callback?: Callback\): void;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: isPrimary: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: characteristics: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: GattService
方法 or 属性: includeServices?: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: characteristicValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLECharacteristic
方法 or 属性: descriptors: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEDescriptor
方法 or 属性: descriptorValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: characteristicValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: NotifyCharacteristic
方法 or 属性: confirm: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicReadRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: isPrep: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: needRsp: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: CharacteristicWriteRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorReadRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: isPrep: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: needRsp: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: descriptorUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: characteristicUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DescriptorWriteRequest
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: transId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: status: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: offset: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServerResponse
方法 or 属性: value: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BLEConnectChangedState
方法 or 属性: state: ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: rssi: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanResult
方法 or 属性: data: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: interval?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: txPower?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseSetting
方法 or 属性: connectable?: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: serviceUuids: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: manufactureData: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: AdvertiseData
方法 or 属性: serviceData: Array\;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData
方法 or 属性: manufactureId: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ManufactureData
方法 or 属性: manufactureValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData
方法 or 属性: serviceUuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ServiceData
方法 or 属性: serviceValue: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: deviceId?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: name?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceUuid?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceUuidMask?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceSolicitationUuid?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceSolicitationUuidMask?: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceData?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: serviceDataMask?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureId?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureData?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanFilter
方法 or 属性: manufactureDataMask?: ArrayBuffer;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: interval?: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: dutyMode?: ScanDuty;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanOptions
方法 or 属性: matchMode?: MatchMode;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: uuid: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: secure: boolean;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppOption
方法 or 属性: type: SppType;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PinRequiredParam
方法 or 属性: pinCode: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: majorClass: MajorClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: majorMinorClass: MajorMinorClass;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: DeviceClass
方法 or 属性: classOfDevice: number;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondStateParam
方法 or 属性: state: BondState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam
方法 or 属性: deviceId: string;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: StateChangeParam
方法 or 属性: state: ProfileConnectionState;|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_LOW_POWER = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_BALANCED = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanDuty
方法 or 属性: SCAN_MODE_LOW_LATENCY = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode
方法 or 属性: MATCH_MODE_AGGRESSIVE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MatchMode
方法 or 属性: MATCH_MODE_STICKY = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_DISCONNECTED = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_CONNECTING = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_CONNECTED = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileConnectionState
方法 or 属性: STATE_DISCONNECTING = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_OFF = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_TURNING_ON = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_ON = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_TURNING_OFF = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_TURNING_ON = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_ON = 5|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BluetoothState
方法 or 属性: STATE_BLE_TURNING_OFF = 6|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppType|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: SppType
方法 or 属性: SPP_RFCOMM|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_NONE = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_GENERAL_DISCOVERABLE = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_LIMITED_DISCOVERABLE = 3|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ScanMode
方法 or 属性: SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE = 5|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_INVALID = 0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_BONDING = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: BondState
方法 or 属性: BOND_STATE_BONDED = 2|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_MISC = 0x0000|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_COMPUTER = 0x0100|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_PHONE = 0x0200|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_NETWORKING = 0x0300|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_AUDIO_VIDEO = 0x0400|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_PERIPHERAL = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_IMAGING = 0x0600|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_WEARABLE = 0x0700|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_TOY = 0x0800|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_HEALTH = 0x0900|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorClass
方法 or 属性: MAJOR_UNCATEGORIZED = 0x1F00|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_UNCATEGORIZED = 0x0100|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_DESKTOP = 0x0104|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_SERVER = 0x0108|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_LAPTOP = 0x010C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_HANDHELD_PC_PDA = 0x0110|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_PALM_SIZE_PC_PDA = 0x0114|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_WEARABLE = 0x0118|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: COMPUTER_TABLET = 0x011C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_UNCATEGORIZED = 0x0200|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_CELLULAR = 0x0204|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_CORDLESS = 0x0208|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_SMART = 0x020C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_MODEM_OR_GATEWAY = 0x0210|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PHONE_ISDN = 0x0214|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_FULLY_AVAILABLE = 0x0300|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_1_TO_17_UTILIZED = 0x0320|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_17_TO_33_UTILIZED = 0x0340|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_33_TO_50_UTILIZED = 0x0360|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_60_TO_67_UTILIZED = 0x0380|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_67_TO_83_UTILIZED = 0x03A0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_83_TO_99_UTILIZED = 0x03C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: NETWORK_NO_SERVICE = 0x03E0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_UNCATEGORIZED = 0x0400|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_WEARABLE_HEADSET = 0x0404|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HANDSFREE = 0x0408|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_MICROPHONE = 0x0410|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_LOUDSPEAKER = 0x0414|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HEADPHONES = 0x0418|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_PORTABLE_AUDIO = 0x041C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_CAR_AUDIO = 0x0420|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_SET_TOP_BOX = 0x0424|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_HIFI_AUDIO = 0x0428|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VCR = 0x042C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_CAMERA = 0x0430|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_CAMCORDER = 0x0434|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_MONITOR = 0x0438|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER = 0x043C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_CONFERENCING = 0x0440|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: AUDIO_VIDEO_VIDEO_GAMING_TOY = 0x0448|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_NON_KEYBOARD_NON_POINTING = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_KEYBOARD = 0x0540|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_POINTING_DEVICE = 0x0580|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_KEYBOARD_POINTING = 0x05C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_UNCATEGORIZED = 0x0500|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_JOYSTICK = 0x0504|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_GAMEPAD = 0x0508|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_REMOTE_CONTROL = 0x05C0|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_SENSING_DEVICE = 0x0510|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_DIGITIZER_TABLET = 0x0514|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_CARD_READER = 0x0518|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_DIGITAL_PEN = 0x051C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_SCANNER_RFID = 0x0520|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: PERIPHERAL_GESTURAL_INPUT = 0x0522|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_UNCATEGORIZED = 0x0600|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_DISPLAY = 0x0610|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_CAMERA = 0x0620|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_SCANNER = 0x0640|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: IMAGING_PRINTER = 0x0680|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_UNCATEGORIZED = 0x0700|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_WRIST_WATCH = 0x0704|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_PAGER = 0x0708|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_JACKET = 0x070C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_HELMET = 0x0710|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: WEARABLE_GLASSES = 0x0714|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_UNCATEGORIZED = 0x0800|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_ROBOT = 0x0804|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_VEHICLE = 0x0808|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_DOLL_ACTION_FIGURE = 0x080C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_CONTROLLER = 0x0810|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: TOY_GAME = 0x0814|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_UNCATEGORIZED = 0x0900|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_BLOOD_PRESSURE = 0x0904|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_THERMOMETER = 0x0908|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_WEIGHING = 0x090C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_GLUCOSE = 0x0910|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PULSE_OXIMETER = 0x0914|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PULSE_RATE = 0x0918|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_DATA_DISPLAY = 0x091C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_STEP_COUNTER = 0x0920|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_BODY_COMPOSITION_ANALYZER = 0x0924|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PEAK_FLOW_MONITOR = 0x0928|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_MEDICATION_MONITOR = 0x092C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_KNEE_PROSTHESIS = 0x0930|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_ANKLE_PROSTHESIS = 0x0934|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_GENERIC_HEALTH_MANAGER = 0x0938|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: MajorMinorClass
方法 or 属性: HEALTH_PERSONAL_MOBILITY_DEVICE = 0x093C|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState
方法 or 属性: STATE_NOT_PLAYING|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: PlayingState
方法 or 属性: STATE_PLAYING|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_A2DP_SOURCE = 1|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_HID_HOST = 6|@ohos.bluetoothManager.d.ts| +|新增|NA|模块名: ohos.bluetoothManager
类名: ProfileId
方法 or 属性: PROFILE_PAN_NETWORK = 7|@ohos.bluetoothManager.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function initialize(): void;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function uninitialize(): void;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function read(): Promise\;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function read(callback: AsyncCallback\): void;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function write(data: number[]): Promise\;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connectedTag
方法or属性:function write(data: number[], callback: AsyncCallback\): void;|@ohos.connectedTag.d.ts| +|新增|NA|类名:connection
方法or属性:function getDefaultNetSync(): NetHandle;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function isDefaultNetMetered(callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function isDefaultNetMetered(): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function getAppNet(callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function getAppNet(): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function setAppNet(netHandle: NetHandle, callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:connection
方法or属性:function setAppNet(netHandle: NetHandle): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|类名:NetHandle
方法or属性:bindSocket(socketParam: TCPSocket \| UDPSocket, callback: AsyncCallback\): void;|@ohos.net.connection.d.ts| +|新增|NA|类名:NetHandle
方法or属性:bindSocket(socketParam: TCPSocket \| UDPSocket): Promise\;|@ohos.net.connection.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function getIfaceConfig(iface: string, callback: AsyncCallback\): void;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function getIfaceConfig(iface: string): Promise\;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function setIfaceConfig(iface: string, ic: InterfaceConfiguration, callback: AsyncCallback\): void;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function setIfaceConfig(iface: string, ic: InterfaceConfiguration): Promise\;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function isIfaceActive(iface: string, callback: AsyncCallback\): void;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function isIfaceActive(iface: string): Promise\;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function getAllActiveIfaces(callback: AsyncCallback\>): void;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: ethernet
方法 or 属性: function getAllActiveIfaces(): Promise\>;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: mode: IPSetMode;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: ipAddr: string;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: route: string;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: gateway: string;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: netMask: string;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法 or 属性: dnsServers: string;|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: IPSetMode|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: IPSetMode
方法 or 属性: STATIC = 0|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.ethernet
类名: IPSetMode
方法 or 属性: DHCP = 1|@ohos.net.ethernet.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpRequestOptions
方法 or 属性:expectDataType?: HttpDataType;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpRequestOptions
方法or属性:expectDataType?: HttpDataType;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpRequestOptions
方法 or 属性:usingCache?: boolean;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpRequestOptions
方法or属性:usingCache?: boolean;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpRequestOptions
方法 or 属性:priority?: number;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpRequestOptions
方法or属性:priority?: number;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpRequestOptions
方法 or 属性:usingProtocol?: HttpProtocol;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpRequestOptions
方法or属性:usingProtocol?: HttpProtocol;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpProtocol|@ohos.net.http.d.ts| +|新增|NA|类名:HttpProtocol
方法or属性:|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpProtocol
方法 or 属性:HTTP1_1|@ohos.net.http.d.ts| +|新增|NA|类名:HttpProtocol
方法or属性:HTTP1_1|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpProtocol
方法 or 属性:HTTP2|@ohos.net.http.d.ts| +|新增|NA|类名:HttpProtocol
方法or属性:HTTP2|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpDataType|@ohos.net.http.d.ts| +|新增|NA|类名:HttpDataType
方法or属性:|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpDataType
方法 or 属性:STRING|@ohos.net.http.d.ts| +|新增|NA|类名:HttpDataType
方法or属性:STRING|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpDataType
方法 or 属性:OBJECT = 1|@ohos.net.http.d.ts| +|新增|NA|类名:HttpDataType
方法or属性:OBJECT = 1|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpDataType
方法 or 属性:ARRAY_BUFFER = 2|@ohos.net.http.d.ts| +|新增|NA|类名:HttpDataType
方法or属性:ARRAY_BUFFER = 2|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponse
方法 or 属性:resultType: HttpDataType;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponse
方法or属性:resultType: HttpDataType;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: http
方法 or 属性:function createHttpResponseCache(cacheSize?: number): HttpResponseCache;|@ohos.net.http.d.ts| +|新增|NA|类名:http
方法or属性:function createHttpResponseCache(cacheSize?: number): HttpResponseCache;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponseCache|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponseCache
方法or属性:|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponseCache
方法 or 属性:flush(callback: AsyncCallback\): void;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponseCache
方法or属性:flush(callback: AsyncCallback\): void;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponseCache
方法 or 属性:flush(): Promise\;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponseCache
方法or属性:flush(): Promise\;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponseCache
方法 or 属性:delete(callback: AsyncCallback\): void;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponseCache
方法or属性:delete(callback: AsyncCallback\): void;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.http
类名: HttpResponseCache
方法 or 属性:delete(): Promise\;|@ohos.net.http.d.ts| +|新增|NA|类名:HttpResponseCache
方法or属性:delete(): Promise\;|@ohos.net.http.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function isSharingSupported(callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function isSharingSupported(): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function isSharing(callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function isSharing(): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function startSharing(type: SharingIfaceType, callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function startSharing(type: SharingIfaceType): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function stopSharing(type: SharingIfaceType, callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function stopSharing(type: SharingIfaceType): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsRxBytes(callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsRxBytes(): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsTxBytes(callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsTxBytes(): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsTotalBytes(callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getStatsTotalBytes(): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharingIfaces(state: SharingIfaceState, callback: AsyncCallback\>): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharingIfaces(state: SharingIfaceState): Promise\>;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharingState(type: SharingIfaceType, callback: AsyncCallback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharingState(type: SharingIfaceType): Promise\;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharableRegexes(type: SharingIfaceType, callback: AsyncCallback\>): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function getSharableRegexes(type: SharingIfaceType): Promise\>;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function on(type: 'sharingStateChange', callback: Callback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function off(type: 'sharingStateChange', callback?: Callback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function on(type: 'interfaceSharingStateChange', callback: Callback\<{ type: SharingIfaceType, iface: string, state: SharingIfaceState }>): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function off(type: 'interfaceSharingStateChange', callback?: Callback\<{ type: SharingIfaceType, iface: string, state: SharingIfaceState }>): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function on(type: 'sharingUpstreamChange', callback: Callback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: sharing
方法 or 属性: function off(type: 'sharingUpstreamChange', callback?: Callback\): void;|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceState|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceState
方法 or 属性: SHARING_NIC_SERVING = 1|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceState
方法 or 属性: SHARING_NIC_CAN_SERVER = 2|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceState
方法 or 属性: SHARING_NIC_ERROR = 3|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceType|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceType
方法 or 属性: SHARING_WIFI = 0|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceType
方法 or 属性: SHARING_USB = 1|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.sharing
类名: SharingIfaceType
方法 or 属性: SHARING_BLUETOOTH = 2|@ohos.net.sharing.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: socket
方法 or 属性:function constructTLSSocketInstance(): TLSSocket;|@ohos.net.socket.d.ts| +|新增|NA|类名:socket
方法or属性:function constructTLSSocketInstance(): TLSSocket;|@ohos.net.socket.d.ts| +|新增|NA|类名:TCPExtraOptions
方法or属性:socketLinger?: {on: boolean, linger: number};|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:bind(address: NetAddress, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:bind(address: NetAddress, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:bind(address: NetAddress): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:bind(address: NetAddress): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getRemoteAddress(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getRemoteAddress(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getRemoteAddress(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getRemoteAddress(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getState(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getState(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getState(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getState(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:setExtraOptions(options: TCPExtraOptions): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:on(type: 'message', callback: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:on(type: 'message', callback: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:off(type: 'message', callback?: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:off(type: 'message', callback?: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:on(type: 'connect' \| 'close', callback: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:on(type: 'connect' \| 'close', callback: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:on(type: 'connect' \| 'close', callback: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:on(type: 'connect' \| 'close', callback: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:off(type: 'connect' \| 'close', callback?: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:off(type: 'connect' \| 'close', callback?: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:off(type: 'connect' \| 'close', callback?: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:off(type: 'connect' \| 'close', callback?: Callback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:off(type: 'error', callback?: ErrorCallback): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:off(type: 'error', callback?: ErrorCallback): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getCertificate(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getCertificate(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getCertificate(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getCertificate(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getRemoteCertificate(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getRemoteCertificate(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getRemoteCertificate(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getRemoteCertificate(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getProtocol(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getProtocol(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getProtocol(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getProtocol(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getCipherSuite(callback: AsyncCallback\>): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getCipherSuite(callback: AsyncCallback\>): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getCipherSuite(): Promise\>;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getCipherSuite(): Promise\>;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getSignatureAlgorithms(callback: AsyncCallback\>): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getSignatureAlgorithms(callback: AsyncCallback\>): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:getSignatureAlgorithms(): Promise\>;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:getSignatureAlgorithms(): Promise\>;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:connect(options: TLSConnectOptions, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:connect(options: TLSConnectOptions, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:connect(options: TLSConnectOptions): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:connect(options: TLSConnectOptions): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:send(data: string, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:send(data: string, callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:send(data: string): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:send(data: string): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:close(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:close(callback: AsyncCallback\): void;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSocket
方法 or 属性:close(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSocket
方法or属性:close(): Promise\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:ca: string \| Array\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:ca: string \| Array\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:cert?: string;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:cert?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:key?: string;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:key?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:password?: string;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:password?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:protocols?: Protocol \| Array\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:protocols?: Protocol \| Array\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:useRemoteCipherPrefer?: boolean;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:useRemoteCipherPrefer?: boolean;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:signatureAlgorithms?: string;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:signatureAlgorithms?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSSecureOptions
方法 or 属性:cipherSuite?: string;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSSecureOptions
方法or属性:cipherSuite?: string;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSConnectOptions|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSConnectOptions
方法or属性:|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSConnectOptions
方法 or 属性:address: NetAddress;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSConnectOptions
方法or属性:address: NetAddress;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSConnectOptions
方法 or 属性:secureOptions: TLSSecureOptions;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSConnectOptions
方法or属性:secureOptions: TLSSecureOptions;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: TLSConnectOptions
方法 or 属性:ALPNProtocols?: Array\;|@ohos.net.socket.d.ts| +|新增|NA|类名:TLSConnectOptions
方法or属性:ALPNProtocols?: Array\;|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: Protocol|@ohos.net.socket.d.ts| +|新增|NA|类名:Protocol
方法or属性:|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: Protocol
方法 or 属性:TLSv12 = "TLSv1.2"|@ohos.net.socket.d.ts| +|新增|NA|类名:Protocol
方法or属性:TLSv12 = "TLSv1.2"|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.net.socket
类名: Protocol
方法 or 属性:TLSv13 = "TLSv1.3"|@ohos.net.socket.d.ts| +|新增|NA|类名:Protocol
方法or属性:TLSv13 = "TLSv1.3"|@ohos.net.socket.d.ts| +|新增|NA|模块名: ohos.nfc.cardEmulation
类名: CardType|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:CardType
方法or属性:|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|模块名: ohos.nfc.cardEmulation
类名: CardType
方法 or 属性:PAYMENT = "payment"|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:CardType
方法or属性:PAYMENT = "payment"|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|模块名: ohos.nfc.cardEmulation
类名: CardType
方法 or 属性:OTHER = "other"|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:CardType
方法or属性:OTHER = "other"|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:cardEmulation
方法or属性:function hasHceCapability(): boolean;|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:cardEmulation
方法or属性:function isDefaultService(elementName: ElementName, type: CardType): boolean;|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:HceService
方法or属性:start(elementName: ElementName, aidList: string[]): void|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:HceService
方法or属性:stop(elementName: ElementName): void|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:HceService
方法or属性:transmit(response: number[]): Promise\;|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:HceService
方法or属性:transmit(response: number[], callback: AsyncCallback\): void;|@ohos.nfc.cardEmulation.d.ts| +|新增|NA|类名:nfcController
方法or属性:function enableNfc(): void|@ohos.nfc.controller.d.ts| +|新增|NA|类名:nfcController
方法or属性:function disableNfc(): void|@ohos.nfc.controller.d.ts| +|新增|NA|类名:tag
方法or属性:const NDEF_FORMATABLE = 7;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_EMPTY = 0x0|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_EMPTY = 0x0|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_WELL_KNOWN = 0x1|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_WELL_KNOWN = 0x1|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_MEDIA = 0x2|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_MEDIA = 0x2|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_ABSOLUTE_URI = 0x3|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_ABSOLUTE_URI = 0x3|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_EXT_APP = 0x4|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_EXT_APP = 0x4|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_UNKNOWN = 0x5|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_UNKNOWN = 0x5|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: TnfType
方法 or 属性:TNF_UNCHANGED = 0x6|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TnfType
方法or属性:TNF_UNCHANGED = 0x6|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType
方法 or 属性:NFC_FORUM_TYPE_1 = 1|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:NFC_FORUM_TYPE_1 = 1|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType
方法 or 属性:NFC_FORUM_TYPE_2 = 2|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:NFC_FORUM_TYPE_2 = 2|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType
方法 or 属性:NFC_FORUM_TYPE_3 = 3|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:NFC_FORUM_TYPE_3 = 3|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType
方法 or 属性:NFC_FORUM_TYPE_4 = 4|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:NFC_FORUM_TYPE_4 = 4|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NfcForumType
方法 or 属性:MIFARE_CLASSIC = 101|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NfcForumType
方法or属性:MIFARE_CLASSIC = 101|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:const RTD_TEXT: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:const RTD_URI: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicType|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicType
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicType
方法 or 属性:TYPE_UNKNOWN = 0|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicType
方法or属性:TYPE_UNKNOWN = 0|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicType
方法 or 属性:TYPE_CLASSIC = 1|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicType
方法or属性:TYPE_CLASSIC = 1|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicType
方法 or 属性:TYPE_PLUS = 2|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicType
方法or属性:TYPE_PLUS = 2|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicType
方法 or 属性:TYPE_PRO = 3|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicType
方法or属性:TYPE_PRO = 3|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicSize|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicSize
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicSize
方法 or 属性:MC_SIZE_MINI = 320|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicSize
方法or属性:MC_SIZE_MINI = 320|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicSize
方法 or 属性:MC_SIZE_1K = 1024|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicSize
方法or属性:MC_SIZE_1K = 1024|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicSize
方法 or 属性:MC_SIZE_2K = 2048|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicSize
方法or属性:MC_SIZE_2K = 2048|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareClassicSize
方法 or 属性:MC_SIZE_4K = 4096|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareClassicSize
方法or属性:MC_SIZE_4K = 4096|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareUltralightType|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareUltralightType
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareUltralightType
方法 or 属性:TYPE_UNKNOWN = 0|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareUltralightType
方法or属性:TYPE_UNKNOWN = 0|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareUltralightType
方法 or 属性:TYPE_ULTRALIGHT = 1|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareUltralightType
方法or属性:TYPE_ULTRALIGHT = 1|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: MifareUltralightType
方法 or 属性:TYPE_ULTRALIGHT_C = 2|@ohos.nfc.tag.d.ts| +|新增|NA|类名:MifareUltralightType
方法or属性:TYPE_ULTRALIGHT_C = 2|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNfcA(tagInfo: TagInfo): NfcATag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNfcB(tagInfo: TagInfo): NfcBTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNfcF(tagInfo: TagInfo): NfcFTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNfcV(tagInfo: TagInfo): NfcVTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getIsoDep(tagInfo: TagInfo): IsoDepTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNdef(tagInfo: TagInfo): NdefTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getMifareClassic(tagInfo: TagInfo): MifareClassicTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getMifareUltralight(tagInfo: TagInfo): MifareUltralightTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getNdefFormatable(tagInfo: TagInfo): NdefFormatableTag|@ohos.nfc.tag.d.ts| +|新增|NA|类名:tag
方法or属性:function getTagInfo(want: Want): TagInfo|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TagInfo
方法or属性:uid: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TagInfo
方法or属性:technology: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TagInfo
方法or属性:extrasData: PacMap[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TagInfo
方法or属性:tagRfDiscId: number;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:TagInfo
方法or属性:remoteTagService: rpc.RemoteObject;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NdefRecord|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NdefRecord
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NdefRecord
方法 or 属性:tnf: number;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NdefRecord
方法or属性:tnf: number;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NdefRecord
方法 or 属性:rtdType: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NdefRecord
方法or属性:rtdType: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NdefRecord
方法 or 属性:id: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NdefRecord
方法or属性:id: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: NdefRecord
方法 or 属性:payload: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:NdefRecord
方法or属性:payload: number[];|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function makeUriRecord(uri: string): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function makeUriRecord(uri: string): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function makeTextRecord(text: string, locale: string): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function makeTextRecord(text: string, locale: string): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function makeMimeRecord(mimeType: string, mimeData: number[]): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function makeMimeRecord(mimeType: string, mimeData: number[]): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function makeExternalRecord(domainName: string, type: string, externalData: number[]): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function makeExternalRecord(domainName: string, type: string, externalData: number[]): NdefRecord;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function createNdefMessage(data: number[]): NdefMessage;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function createNdefMessage(data: number[]): NdefMessage;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function createNdefMessage(ndefRecords: NdefRecord[]): NdefMessage;|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function createNdefMessage(ndefRecords: NdefRecord[]): NdefMessage;|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.nfc.tag
类名: ndef
方法 or 属性:function messageToBytes(ndefMessage: NdefMessage): number[];|@ohos.nfc.tag.d.ts| +|新增|NA|类名:ndef
方法or属性:function messageToBytes(ndefMessage: NdefMessage): number[];|@ohos.nfc.tag.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:CHECK_PARAM_ERROR = 401|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:CHECK_PARAM_ERROR = 401|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:OS_MMAP_ERROR = 1900001|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:OS_MMAP_ERROR = 1900001|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:OS_IOCTL_ERROR = 1900002|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:OS_IOCTL_ERROR = 1900002|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:WRITE_TO_ASHMEM_ERROR = 1900003|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:WRITE_TO_ASHMEM_ERROR = 1900003|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:READ_FROM_ASHMEM_ERROR = 1900004|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:READ_FROM_ASHMEM_ERROR = 1900004|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:ONLY_PROXY_OBJECT_PERMITTED_ERROR = 1900005|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:ONLY_PROXY_OBJECT_PERMITTED_ERROR = 1900005|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:ONLY_REMOTE_OBJECT_PERMITTED_ERROR = 1900006|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:ONLY_REMOTE_OBJECT_PERMITTED_ERROR = 1900006|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:COMMUNICATION_ERROR = 1900007|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:COMMUNICATION_ERROR = 1900007|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:PROXY_OR_REMOTE_OBJECT_INVALID_ERROR = 1900008|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:PROXY_OR_REMOTE_OBJECT_INVALID_ERROR = 1900008|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:WRITE_DATA_TO_MESSAGE_SEQUENCE_ERROR = 1900009|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:WRITE_DATA_TO_MESSAGE_SEQUENCE_ERROR = 1900009|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:READ_DATA_FROM_MESSAGE_SEQUENCE_ERROR = 1900010|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:READ_DATA_FROM_MESSAGE_SEQUENCE_ERROR = 1900010|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:PARCEL_MEMORY_ALLOC_ERROR = 1900011|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:PARCEL_MEMORY_ALLOC_ERROR = 1900011|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:CALL_JS_METHOD_ERROR = 1900012|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:CALL_JS_METHOD_ERROR = 1900012|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: ErrorCode
方法 or 属性:OS_DUP_ERROR = 1900013|@ohos.rpc.d.ts| +|新增|NA|类名:ErrorCode
方法or属性:OS_DUP_ERROR = 1900013|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:static create(): MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:static create(): MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:reclaim(): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:reclaim(): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeRemoteObject(object: IRemoteObject): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeRemoteObject(object: IRemoteObject): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readRemoteObject(): IRemoteObject;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readRemoteObject(): IRemoteObject;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeInterfaceToken(token: string): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeInterfaceToken(token: string): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readInterfaceToken(): string;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readInterfaceToken(): string;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getSize(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getSize(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getCapacity(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getCapacity(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:setSize(size: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:setSize(size: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:setCapacity(size: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:setCapacity(size: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getWritableBytes(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getWritableBytes(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getReadableBytes(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getReadableBytes(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getReadPosition(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getReadPosition(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getWritePosition(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getWritePosition(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:rewindRead(pos: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:rewindRead(pos: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:rewindWrite(pos: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:rewindWrite(pos: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeNoException(): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeNoException(): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readException(): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readException(): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeByte(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeByte(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeShort(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeShort(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeInt(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeInt(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeLong(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeLong(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeFloat(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeFloat(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeDouble(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeDouble(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeBoolean(val: boolean): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeBoolean(val: boolean): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeChar(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeChar(val: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeString(val: string): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeString(val: string): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeParcelable(val: Parcelable): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeParcelable(val: Parcelable): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeByteArray(byteArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeByteArray(byteArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeShortArray(shortArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeShortArray(shortArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeIntArray(intArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeIntArray(intArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeLongArray(longArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeLongArray(longArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeFloatArray(floatArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeFloatArray(floatArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeDoubleArray(doubleArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeDoubleArray(doubleArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeBooleanArray(booleanArray: boolean[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeBooleanArray(booleanArray: boolean[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeCharArray(charArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeCharArray(charArray: number[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeStringArray(stringArray: string[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeStringArray(stringArray: string[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeParcelableArray(parcelableArray: Parcelable[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeParcelableArray(parcelableArray: Parcelable[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeRemoteObjectArray(objectArray: IRemoteObject[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeRemoteObjectArray(objectArray: IRemoteObject[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readByte(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readByte(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readShort(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readShort(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readInt(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readInt(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readLong(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readLong(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readFloat(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readFloat(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readDouble(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readDouble(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readBoolean(): boolean;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readBoolean(): boolean;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readChar(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readChar(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readString(): string;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readString(): string;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readParcelable(dataIn: Parcelable) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readParcelable(dataIn: Parcelable) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readByteArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readByteArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readByteArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readByteArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readShortArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readShortArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readShortArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readShortArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readIntArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readIntArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readIntArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readIntArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readLongArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readLongArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readLongArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readLongArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readFloatArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readFloatArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readFloatArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readFloatArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readDoubleArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readDoubleArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readDoubleArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readDoubleArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readBooleanArray(dataIn: boolean[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readBooleanArray(dataIn: boolean[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readBooleanArray(): boolean[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readBooleanArray(): boolean[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readCharArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readCharArray(dataIn: number[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readCharArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readCharArray(): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readStringArray(dataIn: string[]) : void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readStringArray(dataIn: string[]) : void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readStringArray(): string[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readStringArray(): string[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readParcelableArray(parcelableArray: Parcelable[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readParcelableArray(parcelableArray: Parcelable[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readRemoteObjectArray(objects: IRemoteObject[]): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readRemoteObjectArray(objects: IRemoteObject[]): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readRemoteObjectArray(): IRemoteObject[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readRemoteObjectArray(): IRemoteObject[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:static closeFileDescriptor(fd: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:static closeFileDescriptor(fd: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:static dupFileDescriptor(fd: number) :number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:static dupFileDescriptor(fd: number) :number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:containFileDescriptors(): boolean;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:containFileDescriptors(): boolean;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeFileDescriptor(fd: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeFileDescriptor(fd: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readFileDescriptor(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readFileDescriptor(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeAshmem(ashmem: Ashmem): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeAshmem(ashmem: Ashmem): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readAshmem(): Ashmem;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readAshmem(): Ashmem;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:getRawDataCapacity(): number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:getRawDataCapacity(): number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:writeRawData(rawData: number[], size: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:writeRawData(rawData: number[], size: number): void;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: MessageSequence
方法 or 属性:readRawData(size: number): number[];|@ohos.rpc.d.ts| +|新增|NA|类名:MessageSequence
方法or属性:readRawData(size: number): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: Parcelable|@ohos.rpc.d.ts| +|新增|NA|类名:Parcelable
方法or属性:|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: Parcelable
方法 or 属性:marshalling(dataOut: MessageSequence): boolean;|@ohos.rpc.d.ts| +|新增|NA|类名:Parcelable
方法or属性:marshalling(dataOut: MessageSequence): boolean;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: Parcelable
方法 or 属性:unmarshalling(dataIn: MessageSequence) : boolean;|@ohos.rpc.d.ts| +|新增|NA|类名:Parcelable
方法or属性:unmarshalling(dataIn: MessageSequence) : boolean;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: RequestResult|@ohos.rpc.d.ts| +|新增|NA|类名:RequestResult
方法or属性:|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: RequestResult
方法 or 属性:errCode: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RequestResult
方法or属性:errCode: number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: RequestResult
方法 or 属性:code: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RequestResult
方法or属性:code: number;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: RequestResult
方法 or 属性:data: MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|类名:RequestResult
方法or属性:data: MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.rpc
类名: RequestResult
方法 or 属性:reply: MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|类名:RequestResult
方法or属性:reply: MessageSequence;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:getLocalInterface(descriptor: string): IRemoteBroker;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise\;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback\): void;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:registerDeathRecipient(recipient: DeathRecipient, flags: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:IRemoteObject
方法or属性:getDescriptor(): string;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:TF_SYNC: number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:TF_ASYNC: number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:TF_ACCEPT_FDS: number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:TF_WAIT_TIME: number;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:constructor(syncFlags?: number, waitTime?: number);|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:constructor(async?: boolean);|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:isAsync(): boolean;|@ohos.rpc.d.ts| +|新增|NA|类名:MessageOption
方法or属性:setAsync(async: boolean): void;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:getLocalInterface(descriptor: string): IRemoteBroker;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:getDescriptor(): string;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:onRemoteMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): boolean \| Promise\;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise\;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback\): void;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteObject
方法or属性:modifyLocalInterface(localInterface: IRemoteBroker, descriptor: string): void;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:PING_TRANSACTION: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:DUMP_TRANSACTION: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:INTERFACE_TRANSACTION: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:MIN_TRANSACTION_ID: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:MAX_TRANSACTION_ID: number;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:getLocalInterface(interface: string): IRemoteBroker;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:registerDeathRecipient(recipient: DeathRecipient, flags: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:getDescriptor(): string;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise\;|@ohos.rpc.d.ts| +|新增|NA|类名:RemoteProxy
方法or属性:sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback\): void;|@ohos.rpc.d.ts| +|新增|NA|类名:IPCSkeleton
方法or属性:static flushCmdBuffer(object: IRemoteObject): void;|@ohos.rpc.d.ts| +|新增|NA|类名:IPCSkeleton
方法or属性:static restoreCallingIdentity(identity: string): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:PROT_EXEC: number;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:PROT_NONE: number;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:PROT_READ: number;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:PROT_WRITE: number;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:static create(name: string, size: number): Ashmem;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:static create(ashmem: Ashmem): Ashmem;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:mapTypedAshmem(mapType: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:mapReadWriteAshmem(): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:mapReadonlyAshmem(): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:setProtectionType(protectionType: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:writeAshmem(buf: number[], size: number, offset: number): void;|@ohos.rpc.d.ts| +|新增|NA|类名:Ashmem
方法or属性:readAshmem(size: number, offset: number): number[];|@ohos.rpc.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function enableWifi(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function disableWifi(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function isWifiActive(): boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function scan(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getScanResults(): Promise\>;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getScanResults(callback: AsyncCallback\>): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getScanResultsSync(): Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function addDeviceConfig(config: WifiDeviceConfig): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function addDeviceConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function addCandidateConfig(config: WifiDeviceConfig): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function addCandidateConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function removeCandidateConfig(networkId: number): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function removeCandidateConfig(networkId: number, callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getCandidateConfigs(): Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function connectToCandidateConfig(networkId: number): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function connectToNetwork(networkId: number): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function connectToDevice(config: WifiDeviceConfig): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function disconnect(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getSignalLevel(rssi: number, band: number): number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getLinkedInfo(): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getLinkedInfo(callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function isConnected(): boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getSupportedFeatures(): number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function isFeatureSupported(featureId: number): boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getDeviceMacAddress(): string[];|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getIpInfo(): IpInfo;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getCountryCode(): string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function reassociate(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function reconnect(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getDeviceConfigs(): Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function updateNetwork(config: WifiDeviceConfig): number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function disableNetwork(netId: number): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function removeAllNetwork(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function removeDevice(id: number): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function enableHotspot(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function disableHotspot(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function isHotspotDualBandSupported(): boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function isHotspotActive(): boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function setHotspotConfig(config: HotspotConfig): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getHotspotConfig(): HotspotConfig;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getStations(): Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pLinkedInfo(): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pLinkedInfo(callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getCurrentGroup(): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getCurrentGroup(callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pPeerDevices(): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pPeerDevices(callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pLocalDevice(): Promise\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pLocalDevice(callback: AsyncCallback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function createGroup(config: WifiP2PConfig): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function removeGroup(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function p2pConnect(config: WifiP2PConfig): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function p2pCancelConnect(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function startDiscoverDevices(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function stopDiscoverDevices(): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function deletePersistentGroup(netId: number): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pGroups(): Promise\>;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function getP2pGroups(callback: AsyncCallback\>): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function setDeviceName(devName: string): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "wifiStateChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "wifiStateChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "wifiConnectionChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "wifiConnectionChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "wifiScanStateChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "wifiScanStateChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "wifiRssiChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "wifiRssiChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "streamChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "streamChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "deviceConfigChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "deviceConfigChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "hotspotStateChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "hotspotStateChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "hotspotStaJoin", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "hotspotStaJoin", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "hotspotStaLeave", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "hotspotStaLeave", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pStateChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pStateChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pConnectionChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pConnectionChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pDeviceChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pDeviceChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pPeerDeviceChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pPeerDeviceChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pPersistentGroupChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pPersistentGroupChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function on(type: "p2pDiscoveryChange", callback: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: wifiManager
方法 or 属性: function off(type: "p2pDiscoveryChange", callback?: Callback\): void;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_NONE|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_PEAP|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_TLS|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_TTLS|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_PWD|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_SIM|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_AKA|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_AKA_PRIME|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: EapMethod
方法 or 属性: EAP_UNAUTH_TLS|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_NONE|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_PAP|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_MSCHAP|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_MSCHAPV2|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_GTC|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_SIM|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_AKA|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: Phase2Method
方法 or 属性: PHASE2_AKA_PRIME|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: eapMethod: EapMethod;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: phase2Method: Phase2Method;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: identity: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: anonymousIdentity: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: password: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: caCertAliases: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: caPath: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: clientCertAliases: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: certEntry: Uint8Array;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: certPassword: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: altSubjectMatch: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: domainSuffixMatch: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: realm: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: plmn: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiEapConfig
方法 or 属性: eapSubId: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: ssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: bssid?: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: preSharedKey: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: isHiddenSsid?: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: securityType: WifiSecurityType;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: creatorUid?: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: disableReason?: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: netId?: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: randomMacType?: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: randomMacAddr?: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: ipType?: IpType;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: staticIp?: IpConfig;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法 or 属性: eapConfig?: WifiEapConfig;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig
方法 or 属性: ipAddress: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig
方法 or 属性: gateway: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig
方法 or 属性: prefixLength: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig
方法 or 属性: dnsServers: number[];|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpConfig
方法 or 属性: domains: Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiInfoElem|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiInfoElem
方法 or 属性: eid: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiInfoElem
方法 or 属性: content: Uint8Array;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_20MHZ = 0|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_40MHZ = 1|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_80MHZ = 2|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_160MHZ = 3|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_80MHZ_PLUS = 4|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiChannelWidth
方法 or 属性: WIDTH_INVALID|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: ssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: bssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: capabilities: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: securityType: WifiSecurityType;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: rssi: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: band: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: frequency: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: channelWidth: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: centerFrequency0: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: centerFrequency1: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: infoElems: Array\;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiScanInfo
方法 or 属性: timestamp: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_INVALID = 0|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_OPEN = 1|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_WEP = 2|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_PSK = 3|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_SAE = 4|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_EAP = 5|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_EAP_SUITE_B = 6|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_OWE = 7|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_WAPI_CERT = 8|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiSecurityType
方法 or 属性: WIFI_SEC_TYPE_WAPI_PSK = 9|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: ssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: bssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: networkId: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: rssi: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: band: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: linkSpeed: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: frequency: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: isHidden: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: isRestricted: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: chload: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: snr: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: macType: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: macAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: ipAddress: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: suppState: SuppState;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法 or 属性: connState: ConnState;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: ipAddress: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: gateway: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: netmask: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: primaryDns: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: secondDns: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: serverIp: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpInfo
方法 or 属性: leaseDuration: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig
方法 or 属性: ssid: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig
方法 or 属性: securityType: WifiSecurityType;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig
方法 or 属性: band: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig
方法 or 属性: preSharedKey: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: HotspotConfig
方法 or 属性: maxConn: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: StationInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: StationInfo
方法 or 属性: name: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: StationInfo
方法 or 属性: macAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: StationInfo
方法 or 属性: ipAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpType|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpType
方法 or 属性: STATIC|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpType
方法 or 属性: DHCP|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: IpType
方法 or 属性: UNKNOWN|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: DISCONNECTED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: INTERFACE_DISABLED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: INACTIVE|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: SCANNING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: AUTHENTICATING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: ASSOCIATING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: ASSOCIATED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: FOUR_WAY_HANDSHAKE|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: GROUP_HANDSHAKE|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: COMPLETED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: UNINITIALIZED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: SuppState
方法 or 属性: INVALID|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: SCANNING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: CONNECTING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: AUTHENTICATING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: OBTAINING_IPADDR|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: CONNECTED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: DISCONNECTING|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: DISCONNECTED|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: ConnState
方法 or 属性: UNKNOWN|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice
方法 or 属性: deviceName: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice
方法 or 属性: deviceAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice
方法 or 属性: primaryDeviceType: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice
方法 or 属性: deviceStatus: P2pDeviceStatus;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pDevice
方法 or 属性: groupCapabilities: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig
方法 or 属性: deviceAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig
方法 or 属性: netId: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig
方法 or 属性: passphrase: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig
方法 or 属性: groupName: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2PConfig
方法 or 属性: goBand: GroupOwnerBand;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: isP2pGo: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: ownerInfo: WifiP2pDevice;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: passphrase: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: interface: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: groupName: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: networkId: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: frequency: number;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: clientDevices: WifiP2pDevice[];|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法 or 属性: goIpAddress: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pConnectState|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pConnectState
方法 or 属性: DISCONNECTED = 0|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pConnectState
方法 or 属性: CONNECTED = 1|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法 or 属性: connectState: P2pConnectState;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法 or 属性: isGroupOwner: boolean;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法 or 属性: groupOwnerAddr: string;|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法 or 属性: CONNECTED = 0|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法 or 属性: INVITED = 1|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法 or 属性: FAILED = 2|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法 or 属性: AVAILABLE = 3|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法 or 属性: UNAVAILABLE = 4|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: GroupOwnerBand|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: GroupOwnerBand
方法 or 属性: GO_BAND_AUTO = 0|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: GroupOwnerBand
方法 or 属性: GO_BAND_2GHZ = 1|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManager
类名: GroupOwnerBand
方法 or 属性: GO_BAND_5GHZ = 2|@ohos.wifiManager.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function enableHotspot(): void;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function disableHotspot(): void;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function getSupportedPowerMode(): Promise\>;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function getSupportedPowerMode(callback: AsyncCallback\>): void;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function getPowerMode (): Promise\;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function getPowerMode (callback: AsyncCallback\): void;|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法 or 属性: function setPowerMode(mode: PowerMode) : void|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: PowerMode|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: PowerMode
方法 or 属性: SLEEPING = 0|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: PowerMode
方法 or 属性: GENERAL = 1|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: ohos.wifiManagerExt
类名: PowerMode
方法 or 属性: THROUGH_WALL = 2|@ohos.wifiManagerExt.d.ts| +|新增|NA|模块名: nfctech
类名: IsoDepTag|nfctech.d.ts| +|新增|NA|类名:IsoDepTag
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: IsoDepTag
方法 or 属性:getHistoricalBytes(): number[];|nfctech.d.ts| +|新增|NA|类名:IsoDepTag
方法or属性:getHistoricalBytes(): number[];|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: IsoDepTag
方法 or 属性:getHiLayerResponse(): number[];|nfctech.d.ts| +|新增|NA|类名:IsoDepTag
方法or属性:getHiLayerResponse(): number[];|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: IsoDepTag
方法 or 属性:isExtendedApduSupported(): Promise\;|nfctech.d.ts| +|新增|NA|类名:IsoDepTag
方法or属性:isExtendedApduSupported(): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: IsoDepTag
方法 or 属性:isExtendedApduSupported(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:IsoDepTag
方法or属性:isExtendedApduSupported(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefMessage|nfctech.d.ts| +|新增|NA|类名:NdefMessage
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefMessage
方法 or 属性:getNdefRecords(): tag.NdefRecord[];|nfctech.d.ts| +|新增|NA|类名:NdefMessage
方法or属性:getNdefRecords(): tag.NdefRecord[];|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:getNdefTagType(): tag.NfcForumType;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:getNdefTagType(): tag.NfcForumType;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:getNdefMessage(): NdefMessage;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:getNdefMessage(): NdefMessage;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:isNdefWritable(): boolean;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:isNdefWritable(): boolean;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:readNdef(): Promise\;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:readNdef(): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:readNdef(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:readNdef(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:writeNdef(msg: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:writeNdef(msg: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:writeNdef(msg: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:writeNdef(msg: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:canSetReadOnly(): boolean;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:canSetReadOnly(): boolean;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:setReadOnly(): Promise\;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:setReadOnly(): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:setReadOnly(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:setReadOnly(callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefTag
方法 or 属性:getNdefTagTypeString(type: tag.NfcForumType): string;|nfctech.d.ts| +|新增|NA|类名:NdefTag
方法or属性:getNdefTagTypeString(type: tag.NfcForumType): string;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:readSingleBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:readSingleBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:readSingleBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:readSingleBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:writeSingleBlock(blockIndex: number, data: number[]): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:writeSingleBlock(blockIndex: number, data: number[]): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:incrementBlock(blockIndex: number, value: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:incrementBlock(blockIndex: number, value: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:incrementBlock(blockIndex: number, value: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:incrementBlock(blockIndex: number, value: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:decrementBlock(blockIndex: number, value: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:decrementBlock(blockIndex: number, value: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:decrementBlock(blockIndex: number, value: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:decrementBlock(blockIndex: number, value: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:transferToBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:transferToBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:transferToBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:transferToBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:restoreFromBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:restoreFromBlock(blockIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:restoreFromBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:restoreFromBlock(blockIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getSectorCount(): number;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getSectorCount(): number;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getBlockCountInSector(sectorIndex: number): number;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getBlockCountInSector(sectorIndex: number): number;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getType(): tag.MifareClassicType;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getType(): tag.MifareClassicType;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getTagSize(): number;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getTagSize(): number;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:isEmulatedTag(): boolean;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:isEmulatedTag(): boolean;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getBlockIndex(sectorIndex: number): number;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getBlockIndex(sectorIndex: number): number;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareClassicTag
方法 or 属性:getSectorIndex(blockIndex: number): number;|nfctech.d.ts| +|新增|NA|类名:MifareClassicTag
方法or属性:getSectorIndex(blockIndex: number): number;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag
方法 or 属性:readMultiplePages(pageIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:readMultiplePages(pageIndex: number): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag
方法 or 属性:readMultiplePages(pageIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:readMultiplePages(pageIndex: number, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag
方法 or 属性:writeSinglePage(pageIndex: number, data: number[]): Promise\;|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:writeSinglePage(pageIndex: number, data: number[]): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag
方法 or 属性:writeSinglePage(pageIndex: number, data: number[], callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:writeSinglePage(pageIndex: number, data: number[], callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: MifareUltralightTag
方法 or 属性:getType(): tag.MifareUltralightType;|nfctech.d.ts| +|新增|NA|类名:MifareUltralightTag
方法or属性:getType(): tag.MifareUltralightType;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefFormatableTag|nfctech.d.ts| +|新增|NA|类名:NdefFormatableTag
方法or属性:|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefFormatableTag
方法 or 属性:format(message: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|类名:NdefFormatableTag
方法or属性:format(message: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefFormatableTag
方法 or 属性:format(message: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:NdefFormatableTag
方法or属性:format(message: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefFormatableTag
方法 or 属性:formatReadOnly(message: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|类名:NdefFormatableTag
方法or属性:formatReadOnly(message: NdefMessage): Promise\;|nfctech.d.ts| +|新增|NA|模块名: nfctech
类名: NdefFormatableTag
方法 or 属性:formatReadOnly(message: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:NdefFormatableTag
方法or属性:formatReadOnly(message: NdefMessage, callback: AsyncCallback\): void;|nfctech.d.ts| +|新增|NA|类名:TagSession
方法or属性:connect(): void;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:resetConnection(): void;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:isConnected(): boolean;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:setTimeout(timeout: number): void;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:getTimeout(): number;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:transmit(data: number[]): Promise\;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:transmit(data: number[], callback: AsyncCallback\): void;|tagSession.d.ts| +|新增|NA|类名:TagSession
方法or属性:getMaxTransmitSize(): number;|tagSession.d.ts| +|删除|模块名:ohos.rpc
类名:IRemoteObject|NA|@ohos.rpc.d.ts| +|废弃版本有变化|类名:bluetooth
废弃版本:N/A|类名:bluetooth
废弃版本:9
代替接口:ohos.bluetoothManager |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getState(): BluetoothState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getState(): BluetoothState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getBtConnectionState(): ProfileConnectionState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getBtConnectionState(): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getBtConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function pairDevice(deviceId: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function pairDevice(deviceId: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.pairDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function cancelPairedDevice(deviceId: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function cancelPairedDevice(deviceId: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.cancelPairedDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getRemoteDeviceName(deviceId: string): string;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getRemoteDeviceName(deviceId: string): string;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getRemoteDeviceName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getRemoteDeviceClass(deviceId: string): DeviceClass;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getRemoteDeviceClass(deviceId: string): DeviceClass;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getRemoteDeviceClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function enableBluetooth(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function enableBluetooth(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.enableBluetooth |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function disableBluetooth(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function disableBluetooth(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.disableBluetooth |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getLocalName(): string;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getLocalName(): string;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getLocalName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getPairedDevices(): Array\;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getPairedDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getPairedDevices |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getProfileConnState(profileId: ProfileId): ProfileConnectionState;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getProfileConnState(profileId: ProfileId): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getProfileConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setDevicePairingConfirmation(device: string, accept: boolean): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setDevicePairingConfirmation(device: string, accept: boolean): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setDevicePairingConfirmation |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setLocalName(name: string): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setLocalName(name: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setLocalName |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function setBluetoothScanMode(mode: ScanMode, duration: number): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function setBluetoothScanMode(mode: ScanMode, duration: number): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.setBluetoothScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getBluetoothScanMode(): ScanMode;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getBluetoothScanMode(): ScanMode;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getBluetoothScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.startBluetoothDiscovery |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function stopBluetoothDiscovery(): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function stopBluetoothDiscovery(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.stopBluetoothDiscovery |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "bluetoothDeviceFind", callback: Callback\>): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "bluetoothDeviceFind", callback: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "bluetoothDeviceFind", callback?: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "bondStateChange", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "bondStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "bondStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "bondStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "pinRequired", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "pinRequired", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "pinRequired", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "pinRequired", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "stateChange", callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "stateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "stateChange", callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "stateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppListen(name: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppListen |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppAccept(serverSocket: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppAccept(serverSocket: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppAccept |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppConnect(device: string, option: SppOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppConnect |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppCloseServerSocket(socket: number): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppCloseServerSocket(socket: number): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppCloseServerSocket |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppCloseClientSocket(socket: number): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppCloseClientSocket(socket: number): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppCloseClientSocket |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function sppWrite(clientSocket: number, data: ArrayBuffer): boolean;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function sppWrite(clientSocket: number, data: ArrayBuffer): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.sppWrite |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function on(type: "sppRead", clientSocket: number, callback: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function on(type: "sppRead", clientSocket: number, callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function off(type: "sppRead", clientSocket: number, callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:bluetooth
方法 or 属性:function getProfile(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile;
废弃版本:N/A|类名:bluetooth
方法 or 属性:function getProfile(profileId: ProfileId): A2dpSourceProfile \| HandsFreeAudioGatewayProfile;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.getProfileInstance |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
废弃版本:N/A|类名:BaseProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
方法 or 属性:getConnectionDevices(): Array\;
废弃版本:N/A|类名:BaseProfile
方法 or 属性:getConnectionDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BaseProfile
方法 or 属性:getDeviceState(device: string): ProfileConnectionState;
废弃版本:N/A|类名:BaseProfile
方法 or 属性:getDeviceState(device: string): ProfileConnectionState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BaseProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
废弃版本:N/A|类名:A2dpSourceProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
废弃版本:N/A|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.A2dpSourceProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:on(type: "connectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:HandsFreeAudioGatewayProfile
方法 or 属性:off(type: "connectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.HandsFreeAudioGatewayProfile.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function createGattServer(): GattServer;
废弃版本:N/A|类名:BLE
方法 or 属性:function createGattServer(): GattServer;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.createGattServer |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function createGattClientDevice(deviceId: string): GattClientDevice;
废弃版本:N/A|类名:BLE
方法 or 属性:function createGattClientDevice(deviceId: string): GattClientDevice;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.createGattClientDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function getConnectedBLEDevices(): Array\;
废弃版本:N/A|类名:BLE
方法 or 属性:function getConnectedBLEDevices(): Array\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.getConnectedBLEDevices |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.startBLEScan |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function stopBLEScan(): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function stopBLEScan(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.stopBLEScan |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function on(type: "BLEDeviceFind", callback: Callback\>): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function on(type: "BLEDeviceFind", callback: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.on|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLE
方法 or 属性:function off(type: "BLEDeviceFind", callback?: Callback\>): void;
废弃版本:N/A|类名:BLE
方法 or 属性:function off(type: "BLEDeviceFind", callback?: Callback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLE.off|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
废弃版本:N/A|类名:GattServer
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:stopAdvertising(): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:stopAdvertising(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:addService(service: GattService): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:addService(service: GattService): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:removeService(serviceUuid: string): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:removeService(serviceUuid: string): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:close(): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:sendResponse(serverResponse: ServerResponse): boolean;
废弃版本:N/A|类名:GattServer
方法 or 属性:sendResponse(serverResponse: ServerResponse): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "characteristicRead", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "characteristicRead", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "characteristicRead", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "characteristicRead", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "characteristicWrite", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "characteristicWrite", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "characteristicWrite", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "characteristicWrite", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "descriptorRead", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "descriptorRead", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "descriptorRead", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "descriptorRead", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "descriptorWrite", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "descriptorWrite", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "descriptorWrite", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "descriptorWrite", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:on(type: "connectStateChange", callback: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:on(type: "connectStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattServer
方法 or 属性:off(type: "connectStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattServer
方法 or 属性:off(type: "connectStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattServer|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
废弃版本:N/A|类名:GattClientDevice
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:connect(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:connect(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:disconnect(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:disconnect(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:close(): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:close(): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getDeviceName(callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getDeviceName(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getDeviceName(): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getDeviceName(): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getServices(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getServices(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getServices(): Promise\>;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getServices(): Promise\>;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readCharacteristicValue(characteristic: BLECharacteristic): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:readDescriptorValue(descriptor: BLEDescriptor): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:writeCharacteristicValue(characteristic: BLECharacteristic): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:writeCharacteristicValue(characteristic: BLECharacteristic): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:writeDescriptorValue(descriptor: BLEDescriptor): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:writeDescriptorValue(descriptor: BLEDescriptor): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getRssiValue(callback: AsyncCallback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getRssiValue(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:getRssiValue(): Promise\;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:getRssiValue(): Promise\;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:setBLEMtuSize(mtu: number): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:setBLEMtuSize(mtu: number): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:on(type: "BLECharacteristicChange", callback: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:on(type: "BLECharacteristicChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:off(type: "BLECharacteristicChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:off(type: "BLECharacteristicChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:on(type: "BLEConnectionStateChange", callback: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:on(type: "BLEConnectionStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattClientDevice
方法 or 属性:off(type: "BLEConnectionStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:GattClientDevice
方法 or 属性:off(type: "BLEConnectionStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattClientDevice|@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:GattService
废弃版本:N/A|类名:GattService
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.GattService |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLECharacteristic
废弃版本:N/A|类名:BLECharacteristic
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLECharacteristic |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLEDescriptor
废弃版本:N/A|类名:BLEDescriptor
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLEDescriptor |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:NotifyCharacteristic
废弃版本:N/A|类名:NotifyCharacteristic
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.NotifyCharacteristic |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:CharacteristicReadReq
废弃版本:N/A|类名:CharacteristicReadReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.CharacteristicReadRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:CharacteristicWriteReq
废弃版本:N/A|类名:CharacteristicWriteReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.CharacteristicWriteRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DescriptorReadReq
废弃版本:N/A|类名:DescriptorReadReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DescriptorReadRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DescriptorWriteReq
废弃版本:N/A|类名:DescriptorWriteReq
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DescriptorWriteRequest |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ServerResponse
废弃版本:N/A|类名:ServerResponse
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ServerResponse |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BLEConnectChangedState
废弃版本:N/A|类名:BLEConnectChangedState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BLEConnectChangedState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanResult
废弃版本:N/A|类名:ScanResult
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanResult |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:AdvertiseSetting
废弃版本:N/A|类名:AdvertiseSetting
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.AdvertiseSetting |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:AdvertiseData
废弃版本:N/A|类名:AdvertiseData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.AdvertiseData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ManufactureData
废弃版本:N/A|类名:ManufactureData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ManufactureData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ServiceData
废弃版本:N/A|类名:ServiceData
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ServiceData |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanFilter
废弃版本:N/A|类名:ScanFilter
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanFilter |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanOptions
废弃版本:N/A|类名:ScanOptions
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanOptions |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:SppOption
废弃版本:N/A|类名:SppOption
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.SppOption |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:PinRequiredParam
废弃版本:N/A|类名:PinRequiredParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.PinRequiredParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:DeviceClass
废弃版本:N/A|类名:DeviceClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.DeviceClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BondStateParam
废弃版本:N/A|类名:BondStateParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BondStateParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanDuty
废弃版本:N/A|类名:ScanDuty
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanDuty |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MatchMode
废弃版本:N/A|类名:MatchMode
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MatchMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ProfileConnectionState
废弃版本:N/A|类名:ProfileConnectionState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ProfileConnectionState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BluetoothState
废弃版本:N/A|类名:BluetoothState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BluetoothState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:SppType
废弃版本:N/A|类名:SppType
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.SppType |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ScanMode
废弃版本:N/A|类名:ScanMode
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ScanMode |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:BondState
废弃版本:N/A|类名:BondState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.BondState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MajorClass
废弃版本:N/A|类名:MajorClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MajorClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:MajorMinorClass
废弃版本:N/A|类名:MajorMinorClass
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.MajorMinorClass |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:StateChangeParam
废弃版本:N/A|类名:StateChangeParam
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.StateChangeParam |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:PlayingState
废弃版本:N/A|类名:PlayingState
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.PlayingState |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:ProfileId
废弃版本:N/A|类名:ProfileId
废弃版本:9
代替接口:ohos.bluetoothManager/bluetoothManager.ProfileId |@ohos.bluetooth.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function init(): boolean;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function init(): boolean;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function uninit(): boolean;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function uninit(): boolean;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function readNdefTag(): Promise\;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function readNdefTag(): Promise\;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function readNdefTag(callback: AsyncCallback\): void;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function readNdefTag(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string): Promise\;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string): Promise\;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.connectedTag/connectedTag|@ohos.connectedTag.d.ts| +|废弃版本有变化|类名:FeatureType
废弃版本:N/A|类名:FeatureType
废弃版本:9
代替接口:ohos.nfc.cardEmulation/cardEmulation|@ohos.nfc.cardEmulation.d.ts| +|废弃版本有变化|类名:cardEmulation
方法 or 属性:function isSupported(feature: number): boolean;
废弃版本:N/A|类名:cardEmulation
方法 or 属性:function isSupported(feature: number): boolean;
废弃版本:9
代替接口:ohos.nfc.cardEmulation/cardEmulation|@ohos.nfc.cardEmulation.d.ts| +|废弃版本有变化|类名:HceService
方法 or 属性:startHCE(aidList: string[]): boolean;
废弃版本:N/A|类名:HceService
方法 or 属性:startHCE(aidList: string[]): boolean;
废弃版本:9
代替接口:ohos.nfc.cardEmulation/cardEmulation.HceService|@ohos.nfc.cardEmulation.d.ts| +|废弃版本有变化|类名:HceService
方法 or 属性:stopHCE(): boolean;
废弃版本:N/A|类名:HceService
方法 or 属性:stopHCE(): boolean;
废弃版本:9
代替接口:ohos.nfc.cardEmulation/cardEmulation.HceService|@ohos.nfc.cardEmulation.d.ts| +|废弃版本有变化|类名:HceService
方法 or 属性:sendResponse(responseApdu: number[]): void;
废弃版本:N/A|类名:HceService
方法 or 属性:sendResponse(responseApdu: number[]): void;
废弃版本:9
代替接口:ohos.nfc.cardEmulation/cardEmulation.HceService|@ohos.nfc.cardEmulation.d.ts| +|废弃版本有变化|类名:nfcController
方法 or 属性:function isNfcAvailable(): boolean
废弃版本:N/A|类名:nfcController
方法 or 属性:function isNfcAvailable(): boolean
废弃版本:9
代替接口:global|@ohos.nfc.controller.d.ts| +|废弃版本有变化|类名:nfcController
方法 or 属性:function openNfc(): boolean
废弃版本:N/A|类名:nfcController
方法 or 属性:function openNfc(): boolean
废弃版本:9
代替接口:@ohos.nfc.controller.nfcController|@ohos.nfc.controller.d.ts| +|废弃版本有变化|类名:nfcController
方法 or 属性:function closeNfc(): boolean
废弃版本:N/A|类名:nfcController
方法 or 属性:function closeNfc(): boolean
废弃版本:9
代替接口:@ohos.nfc.controller.nfcController|@ohos.nfc.controller.d.ts| +|废弃版本有变化|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
废弃版本:N/A|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
废弃版本:9
代替接口:ohos.nfc.tag/tag|@ohos.nfc.tag.d.ts| +|废弃版本有变化|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
废弃版本:N/A|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
废弃版本:9
代替接口:ohos.nfc.tag/tag|@ohos.nfc.tag.d.ts| +|废弃版本有变化|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
废弃版本:N/A|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
废弃版本:9
代替接口:ohos.nfc.tag/tag|@ohos.nfc.tag.d.ts| +|废弃版本有变化|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
废弃版本:N/A|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
废弃版本:9
代替接口:ohos.nfc.tag/tag|@ohos.nfc.tag.d.ts| +|废弃版本有变化|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
废弃版本:N/A|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
废弃版本:9
代替接口:ohos.nfc.tag/tag.TagInfo|@ohos.nfc.tag.d.ts| +|废弃版本有变化|类名:MessageParcel
废弃版本:N/A|类名:MessageParcel
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|类名:Sequenceable
废弃版本:N/A|类名:Sequenceable
废弃版本:9
代替接口:ohos.rpc.Parcelable |@ohos.rpc.d.ts| +|废弃版本有变化|类名:SendRequestResult
废弃版本:N/A|类名:SendRequestResult
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:queryLocalInterface(descriptor: string): IRemoteBroker;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:queryLocalInterface(descriptor: string): IRemoteBroker;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean;
废弃版本:8|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean;
废弃版本:9
代替接口:N/A|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:addDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:addDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IRemoteObject
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:N/A|类名:IRemoteObject
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:queryLocalInterface(descriptor: string): IRemoteBroker;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:queryLocalInterface(descriptor: string): IRemoteBroker;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:onRemoteRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:onRemoteRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteObject
方法 or 属性:attachLocalInterface(localInterface: IRemoteBroker, descriptor: string): void;
废弃版本:N/A|类名:RemoteObject
方法 or 属性:attachLocalInterface(localInterface: IRemoteBroker, descriptor: string): void;
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:queryLocalInterface(interface: string): IRemoteBroker;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:queryLocalInterface(interface: string): IRemoteBroker;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:addDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:addDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:getInterfaceDescriptor(): string;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise\;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:RemoteProxy
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RemoteProxy
方法 or 属性:sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IPCSkeleton
方法 or 属性:static flushCommands(object: IRemoteObject): number;
废弃版本:N/A|类名:IPCSkeleton
方法 or 属性:static flushCommands(object: IRemoteObject): number;
废弃版本:9
代替接口:ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts| +|废弃版本有变化|类名:IPCSkeleton
方法 or 属性:static setCallingIdentity(identity: string): boolean;
废弃版本:N/A|类名:IPCSkeleton
方法 or 属性:static setCallingIdentity(identity: string): boolean;
废弃版本:9
代替接口:ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:static createAshmem(name: string, size: number): Ashmem;
废弃版本:N/A|类名:Ashmem
方法 or 属性:static createAshmem(name: string, size: number): Ashmem;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:static createAshmemFromExisting(ashmem: Ashmem): Ashmem;
废弃版本:N/A|类名:Ashmem
方法 or 属性:static createAshmemFromExisting(ashmem: Ashmem): Ashmem;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:mapAshmem(mapType: number): boolean;
废弃版本:N/A|类名:Ashmem
方法 or 属性:mapAshmem(mapType: number): boolean;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:mapReadAndWriteAshmem(): boolean;
废弃版本:N/A|类名:Ashmem
方法 or 属性:mapReadAndWriteAshmem(): boolean;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:mapReadOnlyAshmem(): boolean;
废弃版本:N/A|类名:Ashmem
方法 or 属性:mapReadOnlyAshmem(): boolean;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:setProtection(protectionType: number): boolean;
废弃版本:N/A|类名:Ashmem
方法 or 属性:setProtection(protectionType: number): boolean;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:writeToAshmem(buf: number[], size: number, offset: number): boolean;
废弃版本:N/A|类名:Ashmem
方法 or 属性:writeToAshmem(buf: number[], size: number, offset: number): boolean;
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:Ashmem
方法 or 属性:readFromAshmem(size: number, offset: number): number[];
废弃版本:N/A|类名:Ashmem
方法 or 属性:readFromAshmem(size: number, offset: number): number[];
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function enableWifi(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function enableWifi(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.enableWifi |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function disableWifi(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function disableWifi(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableWifi |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function isWifiActive(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function isWifiActive(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isWifiActive |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function scan(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function scan(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.scan |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getScanInfos(): Promise\>;
废弃版本:N/A|类名:wifi
方法 or 属性:function getScanInfos(): Promise\>;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getScanResults |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getScanInfos(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function getScanInfos(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getScanResults |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function addDeviceConfig(config: WifiDeviceConfig): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function addDeviceConfig(config: WifiDeviceConfig): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.addDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function addDeviceConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function addDeviceConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.addDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function addUntrustedConfig(config: WifiDeviceConfig): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function addUntrustedConfig(config: WifiDeviceConfig): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.addCandidateConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function addUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function addUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.addCandidateConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function removeUntrustedConfig(config: WifiDeviceConfig): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function removeUntrustedConfig(config: WifiDeviceConfig): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeCandidateConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function removeUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function removeUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeCandidateConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function connectToNetwork(networkId: number): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function connectToNetwork(networkId: number): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.connectToNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function connectToDevice(config: WifiDeviceConfig): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function connectToDevice(config: WifiDeviceConfig): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.connectToDevice |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function disconnect(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function disconnect(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disconnect |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getSignalLevel(rssi: number, band: number): number;
废弃版本:N/A|类名:wifi
方法 or 属性:function getSignalLevel(rssi: number, band: number): number;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getSignalLevel |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getLinkedInfo(): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getLinkedInfo(): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getLinkedInfo(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function getLinkedInfo(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function isConnected(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function isConnected(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isConnected |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getSupportedFeatures(): number;
废弃版本:N/A|类名:wifi
方法 or 属性:function getSupportedFeatures(): number;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getSupportedFeatures |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function isFeatureSupported(featureId: number): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function isFeatureSupported(featureId: number): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isFeatureSupported |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getDeviceMacAddress(): string[];
废弃版本:N/A|类名:wifi
方法 or 属性:function getDeviceMacAddress(): string[];
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getDeviceMacAddress |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getIpInfo(): IpInfo;
废弃版本:N/A|类名:wifi
方法 or 属性:function getIpInfo(): IpInfo;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getIpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getCountryCode(): string;
废弃版本:N/A|类名:wifi
方法 or 属性:function getCountryCode(): string;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getCountryCode |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function reassociate(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function reassociate(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.reassociate |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function reconnect(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function reconnect(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.reconnect |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getDeviceConfigs(): Array\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getDeviceConfigs(): Array\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getDeviceConfigs |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function updateNetwork(config: WifiDeviceConfig): number;
废弃版本:N/A|类名:wifi
方法 or 属性:function updateNetwork(config: WifiDeviceConfig): number;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.updateNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function disableNetwork(netId: number): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function disableNetwork(netId: number): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function removeAllNetwork(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function removeAllNetwork(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeAllNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function removeDevice(id: number): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function removeDevice(id: number): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeDevice |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function enableHotspot(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function enableHotspot(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.enableHotspot |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function disableHotspot(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function disableHotspot(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableHotspot |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function isHotspotDualBandSupported(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function isHotspotDualBandSupported(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isHotspotDualBandSupported |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function isHotspotActive(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function isHotspotActive(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isHotspotActive |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function setHotspotConfig(config: HotspotConfig): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function setHotspotConfig(config: HotspotConfig): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.setHotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getHotspotConfig(): HotspotConfig;
废弃版本:N/A|类名:wifi
方法 or 属性:function getHotspotConfig(): HotspotConfig;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getHotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getStations(): Array\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getStations(): Array\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getStations |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getP2pLinkedInfo(): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getP2pLinkedInfo(): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getP2pLinkedInfo(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function getP2pLinkedInfo(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getCurrentGroup(): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getCurrentGroup(): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getCurrentGroup |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getCurrentGroup(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function getCurrentGroup(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getCurrentGroup |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getP2pPeerDevices(): Promise\;
废弃版本:N/A|类名:wifi
方法 or 属性:function getP2pPeerDevices(): Promise\;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pPeerDevices |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function getP2pPeerDevices(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function getP2pPeerDevices(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pPeerDevices |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function createGroup(config: WifiP2PConfig): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function createGroup(config: WifiP2PConfig): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.createGroup |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function removeGroup(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function removeGroup(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeGroup |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function p2pConnect(config: WifiP2PConfig): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function p2pConnect(config: WifiP2PConfig): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.p2pConnect |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function p2pCancelConnect(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function p2pCancelConnect(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.p2pCancelConnect |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function startDiscoverDevices(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function startDiscoverDevices(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.startDiscoverDevices |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function stopDiscoverDevices(): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function stopDiscoverDevices(): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.stopDiscoverDevices |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function deletePersistentGroup(netId: number): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function deletePersistentGroup(netId: number): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.deletePersistentGroup |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function setDeviceName(devName: string): boolean;
废弃版本:N/A|类名:wifi
方法 or 属性:function setDeviceName(devName: string): boolean;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.setDeviceName |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "wifiStateChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "wifiStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "wifiStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "wifiStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "wifiConnectionChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "wifiConnectionChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "wifiConnectionChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "wifiConnectionChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "wifiScanStateChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "wifiScanStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "wifiScanStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "wifiScanStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "wifiRssiChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "wifiRssiChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "wifiRssiChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "wifiRssiChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "streamChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "streamChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "streamChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "streamChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "hotspotStateChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "hotspotStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "hotspotStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "hotspotStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "hotspotStaJoin", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "hotspotStaJoin", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "hotspotStaJoin", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "hotspotStaJoin", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "hotspotStaLeave", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "hotspotStaLeave", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "hotspotStaLeave", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "hotspotStaLeave", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pStateChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pStateChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pStateChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pStateChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pConnectionChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pConnectionChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pConnectionChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pConnectionChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pDeviceChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pDeviceChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pDeviceChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pDeviceChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pPeerDeviceChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pPeerDeviceChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pPeerDeviceChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pPeerDeviceChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pPersistentGroupChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pPersistentGroupChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pPersistentGroupChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pPersistentGroupChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function on(type: "p2pDiscoveryChange", callback: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function on(type: "p2pDiscoveryChange", callback: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifi
方法 or 属性:function off(type: "p2pDiscoveryChange", callback?: Callback\): void;
废弃版本:N/A|类名:wifi
方法 or 属性:function off(type: "p2pDiscoveryChange", callback?: Callback\): void;
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiDeviceConfig
废弃版本:N/A|类名:WifiDeviceConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpConfig
废弃版本:N/A|类名:IpConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiScanInfo
废弃版本:N/A|类名:WifiScanInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiSecurityType
废弃版本:N/A|类名:WifiSecurityType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiLinkedInfo
废弃版本:N/A|类名:WifiLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpInfo
废弃版本:N/A|类名:IpInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:HotspotConfig
废弃版本:N/A|类名:HotspotConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:StationInfo
废弃版本:N/A|类名:StationInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpType
废弃版本:N/A|类名:IpType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts| +|废弃版本有变化|类名:SuppState
废弃版本:N/A|类名:SuppState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:ConnState
废弃版本:N/A|类名:ConnState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pDevice
废弃版本:N/A|类名:WifiP2pDevice
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2PConfig
废弃版本:N/A|类名:WifiP2PConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pGroupInfo
废弃版本:N/A|类名:WifiP2pGroupInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:P2pConnectState
废弃版本:N/A|类名:P2pConnectState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pConnectState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pLinkedInfo
废弃版本:N/A|类名:WifiP2pLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:P2pDeviceStatus
废弃版本:N/A|类名:P2pDeviceStatus
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|类名:GroupOwnerBand
废弃版本:N/A|类名:GroupOwnerBand
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function enableHotspot(): boolean;
废弃版本:N/A|类名:wifiext
方法 or 属性:function enableHotspot(): boolean;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.enableHotspot |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function disableHotspot(): boolean;
废弃版本:N/A|类名:wifiext
方法 or 属性:function disableHotspot(): boolean;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.disableHotspot |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function getSupportedPowerModel(): Promise\>;
废弃版本:N/A|类名:wifiext
方法 or 属性:function getSupportedPowerModel(): Promise\>;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getSupportedPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function getSupportedPowerModel(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:wifiext
方法 or 属性:function getSupportedPowerModel(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getSupportedPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function getPowerModel (): Promise\;
废弃版本:N/A|类名:wifiext
方法 or 属性:function getPowerModel (): Promise\;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function getPowerModel (callback: AsyncCallback\): void;
废弃版本:N/A|类名:wifiext
方法 or 属性:function getPowerModel (callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:wifiext
方法 or 属性:function setPowerModel(model: PowerModel) : boolean
废弃版本:N/A|类名:wifiext
方法 or 属性:function setPowerModel(model: PowerModel) : boolean
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.setPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:PowerModel
废弃版本:N/A|类名:PowerModel
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:getTagInfo(): tag.TagInfo;
废弃版本:N/A|类名:TagSession
方法 or 属性:getTagInfo(): tag.TagInfo;
废弃版本:9
代替接口:ohos.nfc.tag/tag|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:connectTag(): boolean;
废弃版本:N/A|类名:TagSession
方法 or 属性:connectTag(): boolean;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:reset(): void;
废弃版本:N/A|类名:TagSession
方法 or 属性:reset(): void;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
废弃版本:N/A|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:setSendDataTimeout(timeout: number): boolean;
废弃版本:N/A|类名:TagSession
方法 or 属性:setSendDataTimeout(timeout: number): boolean;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:getSendDataTimeout(): number;
废弃版本:N/A|类名:TagSession
方法 or 属性:getSendDataTimeout(): number;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:sendData(data: number[]): Promise\;
废弃版本:N/A|类名:TagSession
方法 or 属性:sendData(data: number[]): Promise\;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:sendData(data: number[], callback: AsyncCallback\): void;
废弃版本:N/A|类名:TagSession
方法 or 属性:sendData(data: number[], callback: AsyncCallback\): void;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|废弃版本有变化|类名:TagSession
方法 or 属性:getMaxSendLength(): number;
废弃版本:N/A|类名:TagSession
方法 or 属性:getMaxSendLength(): number;
废弃版本:9
代替接口:tagSession.TagSession|tagSession.d.ts| +|起始版本有变化|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
起始版本:N/A|类名:A2dpSourceProfile
方法 or 属性:getPlayingState(device: string): PlayingState;
起始版本:8|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ScanFilter
起始版本:7|类名:ScanFilter
起始版本:N/A|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ScanFilter
方法 or 属性:deviceId?: string;
起始版本:N/A|类名:ScanFilter
方法 or 属性:deviceId?: string;
起始版本:7|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ScanFilter
方法 or 属性:name?: string;
起始版本:N/A|类名:ScanFilter
方法 or 属性:name?: string;
起始版本:7|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ScanFilter
方法 or 属性:serviceUuid?: string;
起始版本:N/A|类名:ScanFilter
方法 or 属性:serviceUuid?: string;
起始版本:7|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ProfileId
起始版本:8|类名:ProfileId
起始版本:N/A|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ProfileId
方法 or 属性:PROFILE_A2DP_SOURCE = 1
起始版本:N/A|类名:ProfileId
方法 or 属性:PROFILE_A2DP_SOURCE = 1
起始版本:8|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:ProfileId
方法 or 属性:PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4
起始版本:N/A|类名:ProfileId
方法 or 属性:PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4
起始版本:8|@ohos.bluetooth.d.ts| +|起始版本有变化|类名:FeatureType
起始版本:N/A|类名:FeatureType
起始版本:6|@ohos.nfc.cardEmulation.d.ts| +|起始版本有变化|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
起始版本:N/A|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
起始版本:7|@ohos.nfc.tag.d.ts| +|权限有变化|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
权限:ohos.permission.LOCATION|类名:bluetooth
方法 or 属性:function startBluetoothDiscovery(): boolean;
权限:ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.LOCATION|@ohos.bluetooth.d.ts| +|权限有变化|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
权限:permission ohos.permission.DISCOVER_BLUETOOTH|类名:A2dpSourceProfile
方法 or 属性:connect(device: string): boolean;
权限:ohos.permission.DISCOVER_BLUETOOTH|@ohos.bluetooth.d.ts| +|权限有变化|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
权限:permission ohos.permission.DISCOVER_BLUETOOTH|类名:A2dpSourceProfile
方法 or 属性:disconnect(device: string): boolean;
权限:ohos.permission.DISCOVER_BLUETOOTH|@ohos.bluetooth.d.ts| +|权限有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
权限:permission ohos.permission.DISCOVER_BLUETOOTH|类名:HandsFreeAudioGatewayProfile
方法 or 属性:connect(device: string): boolean;
权限:ohos.permission.DISCOVER_BLUETOOTH|@ohos.bluetooth.d.ts| +|权限有变化|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
权限:permission ohos.permission.DISCOVER_BLUETOOTH|类名:HandsFreeAudioGatewayProfile
方法 or 属性:disconnect(device: string): boolean;
权限:ohos.permission.DISCOVER_BLUETOOTH|@ohos.bluetooth.d.ts| +|权限有变化|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
权限:ohos.permission.LOCATION|类名:BLE
方法 or 属性:function startBLEScan(filters: Array\, options?: ScanOptions): void;
权限:ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.MANAGE_BLUETOOTH and ohos.permission.LOCATION|@ohos.bluetooth.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function init(): boolean;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function init(): boolean;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function uninit(): boolean;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function uninit(): boolean;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function readNdefTag(): Promise\;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function readNdefTag(): Promise\;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function readNdefTag(callback: AsyncCallback\): void;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function readNdefTag(callback: AsyncCallback\): void;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string): Promise\;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string): Promise\;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string, callback: AsyncCallback\): void;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function writeNdefTag(data: string, callback: AsyncCallback\): void;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function on(type: "notify", callback: Callback\): void;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function on(type: "notify", callback: Callback\): void;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connectedTag
方法 or 属性:function off(type: "notify", callback?:Callback\): void;
权限:s ohos.permission.NFC_TAG|类名:connectedTag
方法 or 属性:function off(type: "notify", callback?:Callback\): void;
权限:ohos.permission.NFC_TAG|@ohos.connectedTag.d.ts| +|权限有变化|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
权限:ohos.permission.GET_NETWORK_INFO|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|权限有变化|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
权限:ohos.permission.GET_NETWORK_INFO|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
权限:ohos.permission.INTERNET|@ohos.net.connection.d.ts| +|删除(权限)|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
权限:ohos.permission.NFC_TAG|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
权限:N/A|@ohos.nfc.tag.d.ts| +|删除(权限)|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
权限:ohos.permission.NFC_TAG|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
权限:N/A|@ohos.nfc.tag.d.ts| +|删除(权限)|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
权限:ohos.permission.NFC_TAG|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
权限:N/A|@ohos.nfc.tag.d.ts| +|删除(权限)|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
权限:ohos.permission.NFC_TAG|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
权限:N/A|@ohos.nfc.tag.d.ts| +|删除(权限)|类名:NfcATag
方法 or 属性:getSak(): number;
权限:ohos.permission.NFC_TAG|类名:NfcATag
方法 or 属性:getSak(): number;
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcATag
方法 or 属性:getAtqa(): number[];
权限:ohos.permission.NFC_TAG|类名:NfcATag
方法 or 属性:getAtqa(): number[];
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcBTag
方法 or 属性:getRespAppData(): number[];
权限:ohos.permission.NFC_TAG|类名:NfcBTag
方法 or 属性:getRespAppData(): number[];
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcBTag
方法 or 属性:getRespProtocol(): number[];
权限:ohos.permission.NFC_TAG|类名:NfcBTag
方法 or 属性:getRespProtocol(): number[];
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcFTag
方法 or 属性:getSystemCode(): number[];
权限:ohos.permission.NFC_TAG|类名:NfcFTag
方法 or 属性:getSystemCode(): number[];
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcFTag
方法 or 属性:getPmm(): number[];
权限:ohos.permission.NFC_TAG|类名:NfcFTag
方法 or 属性:getPmm(): number[];
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcVTag
方法 or 属性:getResponseFlags(): number;
权限:ohos.permission.NFC_TAG|类名:NfcVTag
方法 or 属性:getResponseFlags(): number;
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:NfcVTag
方法 or 属性:getDsfId(): number;
权限:ohos.permission.NFC_TAG|类名:NfcVTag
方法 or 属性:getDsfId(): number;
权限:N/A|nfctech.d.ts| +|删除(权限)|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
权限:ohos.permission.NFC_TAG|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
权限:N/A|tagSession.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getDefaultNet(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getDefaultNet(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAllNets(callback: AsyncCallback\>): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAllNets(): Promise\>;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getConnectionProperties(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getConnectionProperties(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getNetCapabilities(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getNetCapabilities(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function hasDefaultNet(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function hasDefaultNet(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
错误码内容: 201, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetConnected(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetConnected(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetDisconnected(netHandle: NetHandle, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function reportNetDisconnected(netHandle: NetHandle): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAddressesByName(host: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:connection
方法 or 属性:function getAddressesByName(host: string): Promise\>;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetConnection
方法 or 属性:register(callback: AsyncCallback\): void;
错误码内容: 201, 2100002, 2100003, 2101008, 2101022|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetConnection
方法 or 属性:unregister(callback: AsyncCallback\): void;
错误码内容: 2100002, 2100003, 2101007|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressesByName(host: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressesByName(host: string): Promise\>;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressByName(host: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:NetHandle
方法 or 属性:getAddressByName(host: string): Promise\;
错误码内容: 201, 401, 2100001, 2100002, 2100003|@ohos.net.connection.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, callback: AsyncCallback\): void;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, options: HttpRequestOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:HttpRequest
方法 or 属性:request(url: string, options?: HttpRequestOptions): Promise\;
错误码内容: 401, 201, 2300001, 2300003, 2300005, 2300006, 2300007, 2300008, 2300009, 2300016, 2300018, 2300023, 2300025, 2300026, 2300027, 2300028, 2300047, 2300052, 2300055, 2300056, 2300058, 2300059, 2300060, 2300061, 2300063, 2300070, 2300073, 2300077, 2300078, 2300094, 2300999|@ohos.net.http.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:bind(address: NetAddress, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:bind(address: NetAddress): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:send(options: UDPSendOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:send(options: UDPSendOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:close(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:getState(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:getState(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:setExtraOptions(options: UDPExtraOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:UDPSocket
方法 or 属性:setExtraOptions(options: UDPExtraOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:bind(address: NetAddress, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:bind(address: NetAddress): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:connect(options: TCPConnectOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:connect(options: TCPConnectOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:send(options: TCPSendOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:send(options: TCPSendOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:close(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getRemoteAddress(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getRemoteAddress(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getState(callback: AsyncCallback\): void;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:getState(): Promise\;
错误码内容: 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:TCPSocket
方法 or 属性:setExtraOptions(options: TCPExtraOptions): Promise\;
错误码内容: 401, 201|@ohos.net.socket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, options: WebSocketRequestOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:connect(url: string, options?: WebSocketRequestOptions): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:send(data: string \| ArrayBuffer, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:send(data: string \| ArrayBuffer): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(options: WebSocketCloseOptions, callback: AsyncCallback\): void;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(错误码)|NA|类名:WebSocket
方法 or 属性:close(options?: WebSocketCloseOptions): Promise\;
错误码内容: 401, 201|@ohos.net.webSocket.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function hasDefaultNet(callback: AsyncCallback\): void;
权限:N/A|类名:connection
方法 or 属性:function hasDefaultNet(callback: AsyncCallback\): void;
权限:ohos.permission.GET_NETWORK_INFO|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function hasDefaultNet(): Promise\;
权限:N/A|类名:connection
方法 or 属性:function hasDefaultNet(): Promise\;
权限:ohos.permission.GET_NETWORK_INFO|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
权限:N/A|类名:connection
方法 or 属性:function enableAirplaneMode(callback: AsyncCallback\): void;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
权限:N/A|类名:connection
方法 or 属性:function enableAirplaneMode(): Promise\;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
权限:N/A|类名:connection
方法 or 属性:function disableAirplaneMode(callback: AsyncCallback\): void;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|新增(权限)|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
权限:N/A|类名:connection
方法 or 属性:function disableAirplaneMode(): Promise\;
权限:ohos.permission.CONNECTIVITY_INTERNAL|@ohos.net.connection.d.ts| +|SysCap有变化|类名:cardEmulation
SysCap:SystemCapability.Communication.NFC.Core|类名:cardEmulation
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:FeatureType
SysCap:SystemCapability.Communication.NFC.Core|类名:FeatureType
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:FeatureType
方法 or 属性:HCE = 0
SysCap:SystemCapability.Communication.NFC.Core|类名:FeatureType
方法 or 属性:HCE = 0
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:FeatureType
方法 or 属性:UICC = 1
SysCap:SystemCapability.Communication.NFC.Core|类名:FeatureType
方法 or 属性:UICC = 1
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:FeatureType
方法 or 属性:ESE = 2
SysCap:SystemCapability.Communication.NFC.Core|类名:FeatureType
方法 or 属性:ESE = 2
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:cardEmulation
方法 or 属性:function isSupported(feature: number): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:cardEmulation
方法 or 属性:function isSupported(feature: number): boolean;
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:HceService
SysCap:SystemCapability.Communication.NFC.Core|类名:HceService
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:HceService
方法 or 属性:startHCE(aidList: string[]): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:HceService
方法 or 属性:startHCE(aidList: string[]): boolean;
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:HceService
方法 or 属性:stopHCE(): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:HceService
方法 or 属性:stopHCE(): boolean;
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:HceService
方法 or 属性:on(type: "hceCmd", callback: AsyncCallback\): void;
SysCap:SystemCapability.Communication.NFC.Core|类名:HceService
方法 or 属性:on(type: "hceCmd", callback: AsyncCallback\): void;
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:HceService
方法 or 属性:sendResponse(responseApdu: number[]): void;
SysCap:SystemCapability.Communication.NFC.Core|类名:HceService
方法 or 属性:sendResponse(responseApdu: number[]): void;
SysCap:SystemCapability.Communication.NFC.CardEmulation|@ohos.nfc.cardEmulation.d.ts| +|SysCap有变化|类名:tag
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const NFC_A = 1;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const NFC_A = 1;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const NFC_B = 2;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const NFC_B = 2;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const ISO_DEP = 3;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const ISO_DEP = 3;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const NFC_F = 4;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const NFC_F = 4;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const NFC_V = 5;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const NFC_V = 5;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const NDEF = 6;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const NDEF = 6;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const MIFARE_CLASSIC = 8;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const MIFARE_CLASSIC = 8;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:const MIFARE_ULTRALIGHT = 9;
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:const MIFARE_ULTRALIGHT = 9;
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:function getNfcATag(tagInfo: TagInfo): NfcATag
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:function getNfcBTag(tagInfo: TagInfo): NfcBTag
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:function getNfcFTag(tagInfo: TagInfo): NfcFTag
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
SysCap:SystemCapability.Communication.NFC.Core|类名:tag
方法 or 属性:function getNfcVTag(tagInfo: TagInfo): NfcVTag
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:TagInfo
SysCap:SystemCapability.Communication.NFC.Core|类名:TagInfo
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:TagInfo
方法 or 属性:supportedProfiles: number[];
SysCap:SystemCapability.Communication.NFC.Tag|@ohos.nfc.tag.d.ts| +|SysCap有变化|类名:NfcATag
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcATag
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcATag
方法 or 属性:getSak(): number;
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcATag
方法 or 属性:getSak(): number;
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcATag
方法 or 属性:getAtqa(): number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcATag
方法 or 属性:getAtqa(): number[];
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcBTag
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcBTag
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcBTag
方法 or 属性:getRespAppData(): number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcBTag
方法 or 属性:getRespAppData(): number[];
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcBTag
方法 or 属性:getRespProtocol(): number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcBTag
方法 or 属性:getRespProtocol(): number[];
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcFTag
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcFTag
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcFTag
方法 or 属性:getSystemCode(): number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcFTag
方法 or 属性:getSystemCode(): number[];
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcFTag
方法 or 属性:getPmm(): number[];
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcFTag
方法 or 属性:getPmm(): number[];
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcVTag
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcVTag
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcVTag
方法 or 属性:getResponseFlags(): number;
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcVTag
方法 or 属性:getResponseFlags(): number;
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:NfcVTag
方法 or 属性:getDsfId(): number;
SysCap:SystemCapability.Communication.NFC.Core|类名:NfcVTag
方法 or 属性:getDsfId(): number;
SysCap:SystemCapability.Communication.NFC.Tag|nfctech.d.ts| +|SysCap有变化|类名:TagSession
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:getTagInfo(): tag.TagInfo;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:getTagInfo(): tag.TagInfo;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:connectTag(): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:connectTag(): boolean;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:reset(): void;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:reset(): void;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:isTagConnected(): boolean;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:setSendDataTimeout(timeout: number): boolean;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:setSendDataTimeout(timeout: number): boolean;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:getSendDataTimeout(): number;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:getSendDataTimeout(): number;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:sendData(data: number[]): Promise\;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:sendData(data: number[]): Promise\;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:sendData(data: number[], callback: AsyncCallback\): void;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:sendData(data: number[], callback: AsyncCallback\): void;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| +|SysCap有变化|类名:TagSession
方法 or 属性:getMaxSendLength(): number;
SysCap:SystemCapability.Communication.NFC.Core|类名:TagSession
方法 or 属性:getMaxSendLength(): number;
SysCap:SystemCapability.Communication.NFC.Tag|tagSession.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-compiler-and-runtime.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-compiler-and-runtime.md new file mode 100644 index 0000000000000000000000000000000000000000..ebd772be20e903af8a607064de118792c07b61c1 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-compiler-and-runtime.md @@ -0,0 +1,687 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.buffer
类名: buffer|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: BufferEncoding
方法 or 属性: type BufferEncoding = 'ascii' \| 'utf8' \| 'utf-8' \| 'utf16le' \| 'ucs2' \| 'ucs-2' \| 'base64' \| 'base64url' \| 'latin1' \| 'binary' \| 'hex';|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: TypedArray|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function alloc(size: number, fill?: string \| Buffer \| number, encoding?: BufferEncoding): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function allocUninitializedFromPool(size: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function allocUninitialized(size: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function byteLength(string: string \| Buffer \| TypedArray \| DataView \| ArrayBuffer \| SharedArrayBuffer, encoding?: BufferEncoding): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function concat(list: Buffer[] \| Uint8Array[], totalLength?: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function from(array: number[]): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function from(arrayBuffer: ArrayBuffer \| SharedArrayBuffer, byteOffset?: number, length?: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function from(buffer: Buffer \| Uint8Array): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function from(object: Object, offsetOrEncoding: number \| string, length: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function from(string: String, encoding?: BufferEncoding): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function isBuffer(obj: Object): boolean;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function isEncoding(encoding: string):boolean;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function compare(buf1: Buffer \| Uint8Array, buf2: Buffer \| Uint8Array): -1 \| 0 \| 1;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: buffer
方法 or 属性: function transcode(source: Buffer \| Uint8Array, fromEnc: string, toEnc: string): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: length: number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: buffer: ArrayBuffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: byteOffset: number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: fill(value: string \| Buffer \| Uint8Array \| number, offset?: number, end?: number, encoding?: BufferEncoding): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: compare(target: Buffer \| Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 \| 0 \| 1;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: copy(target: Buffer \| Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: equals(otherBuffer: Uint8Array \| Buffer): boolean;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: includes(value: string \| number \| Buffer \| Uint8Array, byteOffset?: number, encoding?: BufferEncoding): boolean;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: indexOf(value: string \| number \| Buffer \| Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: keys(): IterableIterator\;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: values(): IterableIterator\;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: entries(): IterableIterator\<[number, number]>;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: lastIndexOf(value: string \| number \| Buffer \| Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readBigInt64BE(offset?: number): bigint;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readBigInt64LE(offset?: number): bigint;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readBigUInt64BE(offset?: number): bigint;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readBigUInt64LE(offset?: number): bigint;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readDoubleBE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readDoubleLE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readFloatBE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readFloatLE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readInt8(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readInt16BE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readInt16LE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readInt32BE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readInt32LE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readIntBE(offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readIntLE(offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUInt8(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUInt16BE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUInt16LE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUInt32BE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUInt32LE(offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUIntBE(offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: readUIntLE(offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: subarray(start?: number, end?: number): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: swap16(): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: swap32(): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: swap64(): Buffer;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: toJSON(): Object;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: toString(encoding?: string, start?: number, end?: number): string;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: write(str: string, offset?: number, length?: number, encoding?: string): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeBigInt64BE(value: bigint, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeBigInt64LE(value: bigint, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeBigUInt64BE(value: bigint, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeBigUInt64LE(value: bigint, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeDoubleBE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeDoubleLE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeFloatBE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeFloatLE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeInt8(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeInt16BE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeInt16LE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeInt32BE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeInt32LE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeIntBE(value: number, offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeIntLE(value : number, offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUInt8(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUInt16BE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUInt16LE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUInt32BE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUInt32LE(value: number, offset?: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUIntBE(value: number, offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Buffer
方法 or 属性: writeUIntLE(value: number, offset: number, byteLength: number): number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: constructor(sources: string[] \| ArrayBuffer[] \| TypedArray[] \| DataView[] \| Blob[] , options?: Object);|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: size: number;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: type: string;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: arrayBuffer(): Promise\;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: slice(start?: number, end?: number, type?: string): Blob;|@ohos.buffer.d.ts| +|新增|NA|模块名: ohos.buffer
类名: Blob
方法 or 属性: text(): Promise\;|@ohos.buffer.d.ts| +|新增|NA|类名:ConvertXML
方法or属性:convertToJSObject(xml: string, options?: ConvertOptions) : Object;|@ohos.convertxml.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:isAppUid(v: number): boolean;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:isAppUid(v: number): boolean;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:getUidForName(v: string): number;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:getUidForName(v: string): number;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:getThreadPriority(v: number): number;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:getThreadPriority(v: number): number;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:getSystemConfig(name: number): number;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:getSystemConfig(name: number): number;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:getEnvironmentVar(name: string): string;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:getEnvironmentVar(name: string): string;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:exit(code: number): void;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:exit(code: number): void;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.process
类名: ProcessManager
方法 or 属性:kill(signal: number, pid: number): boolean;|@ohos.process.d.ts| +|新增|NA|类名:ProcessManager
方法or属性:kill(signal: number, pid: number): boolean;|@ohos.process.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: taskpool|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Priority|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Priority
方法 or 属性: HIGH|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Priority
方法 or 属性: MEDIUM|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Priority
方法 or 属性: LOW|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Task|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Task
方法 or 属性: constructor(func: Function, ...args: unknown[]);|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Task
方法 or 属性: function: Function;|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: Task
方法 or 属性: arguments?: unknown[];|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: taskpool
方法 or 属性: function execute(func: Function, ...args: unknown[]): Promise\;|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: taskpool
方法 or 属性: function execute(task: Task, priority?: Priority): Promise\;|@ohos.taskpool.d.ts| +|新增|NA|模块名: ohos.taskpool
类名: taskpool
方法 or 属性: function cancel(task: Task): void;|@ohos.taskpool.d.ts| +|新增|NA|类名:URI
方法or属性:equalsTo(other: URI): boolean;|@ohos.uri.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:constructor(init?: string[][] \| Record\ \| string \| URLParams);|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:constructor(init?: string[][] \| Record\ \| string \| URLParams);|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:append(name: string, value: string): void;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:append(name: string, value: string): void;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:delete(name: string): void;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:delete(name: string): void;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:getAll(name: string): string[];|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:getAll(name: string): string[];|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:entries(): IterableIterator\<[string, string]>;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:entries(): IterableIterator\<[string, string]>;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:forEach(callbackFn: (value: string, key: string, searchParams: this) => void, thisArg?: Object): void;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:get(name: string): string \| null;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:get(name: string): string \| null;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:has(name: string): boolean;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:has(name: string): boolean;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:set(name: string, value: string): void;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:set(name: string, value: string): void;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:sort(): void;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:sort(): void;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:keys(): IterableIterator\;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:keys(): IterableIterator\;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:values(): IterableIterator\;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:values(): IterableIterator\;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:[Symbol.iterator](): IterableIterator\<[string, string]>;|@ohos.url.d.ts| +|新增|NA|类名:URLParams
方法or属性:[Symbol.iterator](): IterableIterator\<[string, string]>;|@ohos.url.d.ts| +|新增|NA|模块名: ohos.url
类名: URLParams
方法 or 属性:toString(): string;|@ohos.url.d.ts| +|新增|NA|类名:URL
方法or属性:constructor();|@ohos.url.d.ts| +|新增|NA|类名:URL
方法or属性:static parseURL(url: string, base?: string \| URL): URL;|@ohos.url.d.ts| +|新增|NA|类名:URL
方法or属性:readonly params: URLParams;|@ohos.url.d.ts| +|新增|NA|类名:util
方法or属性:function format(format: string, ...args: Object[]): string;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function errnoToString(errno: number): string;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function promisify(original: (err: Object, value: Object) => void): Function;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function generateRandomUUID(entropyCache?: boolean): string;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function generateRandomBinaryUUID(entropyCache?: boolean): Uint8Array;|@ohos.util.d.ts| +|新增|NA|类名:util
方法or属性:function parseUUID(uuid: string): Uint8Array;|@ohos.util.d.ts| +|新增|NA|类名:TextDecoder
方法or属性:constructor();|@ohos.util.d.ts| +|新增|NA|类名:TextDecoder
方法or属性:static create(

encoding?: string,

options?: { fatal?: boolean; ignoreBOM?: boolean }

): TextDecoder;|@ohos.util.d.ts| +|新增|NA|类名:TextDecoder
方法or属性:decodeWithStream(input: Uint8Array, options?: { stream?: boolean }): string;|@ohos.util.d.ts| +|新增|NA|类名:TextEncoder
方法or属性:constructor(encoding?: string);|@ohos.util.d.ts| +|新增|NA|类名:TextEncoder
方法or属性:encodeInto(input?: string): Uint8Array;|@ohos.util.d.ts| +|新增|NA|类名:TextEncoder
方法or属性:encodeIntoUint8Array(

input: string,

dest: Uint8Array,

): { read: number; written: number };|@ohos.util.d.ts| +|新增|NA|类名:RationalNumber
方法or属性:constructor();|@ohos.util.d.ts| +|新增|NA|类名:RationalNumber
方法or属性:static parseRationalNumber(numerator: number, denominator: number): RationalNumber;|@ohos.util.d.ts| +|新增|NA|类名:RationalNumber
方法or属性:compare(another :RationalNumber): number;|@ohos.util.d.ts| +|新增|NA|类名:RationalNumber
方法or属性:static getCommonFactor(number1: number, number2: number): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:constructor(capacity?: number);|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:updateCapacity(newCapacity: number):void|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:updateCapacity(newCapacity: number):void|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:toString(): string|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:length: number|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:length: number|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getCapacity(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getCapacity(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:clear(): void;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:clear(): void;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getCreateCount(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getCreateCount(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getMissCount(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getMissCount(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getRemovalCount(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getRemovalCount(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getMatchCount(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getMatchCount(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:getPutCount(): number;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:getPutCount(): number;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:isEmpty(): boolean;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:isEmpty(): boolean;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:get(key: K): V \| undefined;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:get(key: K): V \| undefined;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:put(key: K, value: V): V;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:put(key: K, value: V): V;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:values(): V[];|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:values(): V[];|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:keys(): K[];|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:keys(): K[];|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:remove(key: K): V \| undefined;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:remove(key: K): V \| undefined;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:contains(key: K): boolean;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:contains(key: K): boolean;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:createDefault(key: K): V;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:createDefault(key: K): V;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:entries(): IterableIterator\<[K, V]>;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:entries(): IterableIterator\<[K, V]>;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: LRUCache
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;|@ohos.util.d.ts| +|新增|NA|类名:LRUCache
方法or属性:[Symbol.iterator](): IterableIterator\<[K, V]>;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:constructor(lowerObj: ScopeType, upperObj: ScopeType);|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:constructor(lowerObj: ScopeType, upperObj: ScopeType);|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:toString(): string;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:intersect(range: ScopeHelper): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:intersect(range: ScopeHelper): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:getUpper(): ScopeType;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:getUpper(): ScopeType;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:getLower(): ScopeType;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:getLower(): ScopeType;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:expand(range: ScopeHelper): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:expand(range: ScopeHelper): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:expand(value: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:expand(value: ScopeType): ScopeHelper;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:contains(value: ScopeType): boolean;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:contains(value: ScopeType): boolean;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:contains(range: ScopeHelper): boolean;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:contains(range: ScopeHelper): boolean;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: ScopeHelper
方法 or 属性:clamp(value: ScopeType): ScopeType;|@ohos.util.d.ts| +|新增|NA|类名:ScopeHelper
方法or属性:clamp(value: ScopeType): ScopeType;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:constructor();|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:constructor();|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:encodeSync(src: Uint8Array): Uint8Array;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:encodeSync(src: Uint8Array): Uint8Array;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:encodeToStringSync(src: Uint8Array): string;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:encodeToStringSync(src: Uint8Array): string;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:decodeSync(src: Uint8Array \| string): Uint8Array;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:decodeSync(src: Uint8Array \| string): Uint8Array;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:encode(src: Uint8Array): Promise\;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:encode(src: Uint8Array): Promise\;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:encodeToString(src: Uint8Array): Promise\;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:encodeToString(src: Uint8Array): Promise\;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.util
类名: Base64Helper
方法 or 属性:decode(src: Uint8Array \| string): Promise\;|@ohos.util.d.ts| +|新增|NA|类名:Base64Helper
方法or属性:decode(src: Uint8Array \| string): Promise\;|@ohos.util.d.ts| +|新增|NA|模块名: ohos.worker
类名: MessageEvents|@ohos.worker.d.ts| +|新增|NA|类名:MessageEvents
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: MessageEvents
方法 or 属性:readonly data;|@ohos.worker.d.ts| +|新增|NA|类名:MessageEvents
方法or属性:readonly data;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventListener|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventListener
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventListener
方法 or 属性:(event: Event): void \| Promise\;|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventListener
方法or属性:(event: Event): void \| Promise\;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventTarget|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventTarget
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventTarget
方法 or 属性:addEventListener(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventTarget
方法or属性:addEventListener(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventTarget
方法 or 属性:dispatchEvent(event: Event): boolean;|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventTarget
方法or属性:dispatchEvent(event: Event): boolean;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventTarget
方法 or 属性:removeEventListener(type: string, callback?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventTarget
方法or属性:removeEventListener(type: string, callback?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: WorkerEventTarget
方法 or 属性:removeAllListener(): void;|@ohos.worker.d.ts| +|新增|NA|类名:WorkerEventTarget
方法or属性:removeAllListener(): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: GlobalScope|@ohos.worker.d.ts| +|新增|NA|类名:GlobalScope
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: GlobalScope
方法 or 属性:readonly name: string;|@ohos.worker.d.ts| +|新增|NA|类名:GlobalScope
方法or属性:readonly name: string;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: GlobalScope
方法 or 属性:onerror?: (ev: ErrorEvent) => void;|@ohos.worker.d.ts| +|新增|NA|类名:GlobalScope
方法or属性:onerror?: (ev: ErrorEvent) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: GlobalScope
方法 or 属性:readonly self: GlobalScope & typeof globalThis;|@ohos.worker.d.ts| +|新增|NA|类名:GlobalScope
方法or属性:readonly self: GlobalScope & typeof globalThis;|@ohos.worker.d.ts| +|新增|NA|类名:DedicatedWorkerGlobalScope
方法or属性:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法 or 属性:onmessage?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:onmessage?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法 or 属性:onmessageerror?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:onmessageerror?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法 or 属性:close(): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:close(): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, options?: PostMessageOptions): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorkerGlobalScope
方法or属性:postMessage(messageObject: Object, options?: PostMessageOptions): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:constructor(scriptURL: string, options?: WorkerOptions);|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:constructor(scriptURL: string, options?: WorkerOptions);|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:onexit?: (code: number) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:onexit?: (code: number) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:onerror?: (err: ErrorEvent) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:onerror?: (err: ErrorEvent) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:onmessage?: (event: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:onmessage?: (event: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:onmessageerror?: (event: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:onmessageerror?: (event: MessageEvents) => void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:postMessage(message: Object, transfer: ArrayBuffer[]): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:postMessage(message: Object, transfer: ArrayBuffer[]): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:postMessage(message: Object, options?: PostMessageOptions): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:postMessage(message: Object, options?: PostMessageOptions): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:on(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:on(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:once(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:once(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:off(type: string, listener?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:off(type: string, listener?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:terminate(): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:terminate(): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:addEventListener(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:addEventListener(type: string, listener: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:dispatchEvent(event: Event): boolean;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:dispatchEvent(event: Event): boolean;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:removeEventListener(type: string, callback?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:removeEventListener(type: string, callback?: WorkerEventListener): void;|@ohos.worker.d.ts| +|新增|NA|模块名: ohos.worker
类名: ThreadWorker
方法 or 属性:removeAllListener(): void;|@ohos.worker.d.ts| +|新增|NA|类名:ThreadWorker
方法or属性:removeAllListener(): void;|@ohos.worker.d.ts| +|新增|NA|类名:worker
方法or属性:const workerPort: ThreadWorkerGlobalScope;|@ohos.worker.d.ts| +|访问级别有变化|类名:ChildProcess
访问级别:公开API|类名:ChildProcess
访问级别:系统API|@ohos.process.d.ts| +|废弃版本有变化|类名:ConvertXML
方法 or 属性:convert(xml: string, options?: ConvertOptions) : Object;
废弃版本:N/A|类名:ConvertXML
方法 or 属性:convert(xml: string, options?: ConvertOptions) : Object;
废弃版本:9
代替接口:ohos.convertxml.ConvertXML.convertToJSObject |@ohos.convertxml.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function isAppUid(v: number): boolean;
废弃版本:N/A|类名:process
方法 or 属性:function isAppUid(v: number): boolean;
废弃版本:9
代替接口:ohos.process.ProcessManager.isAppUid |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function getUidForName(v: string): number;
废弃版本:N/A|类名:process
方法 or 属性:function getUidForName(v: string): number;
废弃版本:9
代替接口:ohos.process.ProcessManager.getUidForName |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function getThreadPriority(v: number): number;
废弃版本:N/A|类名:process
方法 or 属性:function getThreadPriority(v: number): number;
废弃版本:9
代替接口:ohos.process.ProcessManager.getThreadPriority |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function getSystemConfig(name: number): number;
废弃版本:N/A|类名:process
方法 or 属性:function getSystemConfig(name: number): number;
废弃版本:9
代替接口:ohos.process.ProcessManager.getSystemConfig |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function getEnvironmentVar(name: string): string;
废弃版本:N/A|类名:process
方法 or 属性:function getEnvironmentVar(name: string): string;
废弃版本:9
代替接口:ohos.process.ProcessManager.getEnvironmentVar |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function exit(code: number): void;
废弃版本:N/A|类名:process
方法 or 属性:function exit(code: number): void;
废弃版本:9
代替接口:ohos.process.ProcessManager.exit |@ohos.process.d.ts| +|废弃版本有变化|类名:process
方法 or 属性:function kill(signal: number, pid: number): boolean;
废弃版本:N/A|类名:process
方法 or 属性:function kill(signal: number, pid: number): boolean;
废弃版本:9
代替接口:ohos.process.ProcessManager.kill |@ohos.process.d.ts| +|废弃版本有变化|类名:URI
方法 or 属性:equals(other: URI): boolean;
废弃版本:N/A|类名:URI
方法 or 属性:equals(other: URI): boolean;
废弃版本:9
代替接口:ohos.uri.URI.equalsTo |@ohos.uri.d.ts| +|废弃版本有变化|类名:URLSearchParams
废弃版本:N/A|类名:URLSearchParams
废弃版本:9
代替接口:ohos.url.URLParams |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:constructor(init?: string[][] \| Record\ \| string \| URLSearchParams);
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:constructor(init?: string[][] \| Record\ \| string \| URLSearchParams);
废弃版本:9
代替接口:ohos.url.URLParams.constructor |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:append(name: string, value: string): void;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:append(name: string, value: string): void;
废弃版本:9
代替接口:ohos.url.URLParams.append |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:delete(name: string): void;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:delete(name: string): void;
废弃版本:9
代替接口:ohos.url.URLParams.delete |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:getAll(name: string): string[];
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:getAll(name: string): string[];
废弃版本:9
代替接口:ohos.url.URLParams.getAll |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:entries(): IterableIterator\<[string, string]>;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:entries(): IterableIterator\<[string, string]>;
废弃版本:9
代替接口:ohos.url.URLParams.entries |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:get(name: string): string \| null;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:get(name: string): string \| null;
废弃版本:9
代替接口:ohos.url.URLParams.get |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:has(name: string): boolean;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:has(name: string): boolean;
废弃版本:9
代替接口:ohos.url.URLParams.has |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:set(name: string, value: string): void;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:set(name: string, value: string): void;
废弃版本:9
代替接口:ohos.url.URLParams.set |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:sort(): void;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:sort(): void;
废弃版本:9
代替接口:ohos.url.URLParams.sort |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:keys(): IterableIterator\;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:keys(): IterableIterator\;
废弃版本:9
代替接口:ohos.url.URLParams.keys |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:values(): IterableIterator\;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:values(): IterableIterator\;
废弃版本:9
代替接口:ohos.url.URLParams.values |@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:[Symbol.iterator](): IterableIterator\<[string, string]>;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:[Symbol.iterator](): IterableIterator\<[string, string]>;
废弃版本:9
代替接口:ohos.url.URLParams.|@ohos.url.d.ts| +|废弃版本有变化|类名:URLSearchParams
方法 or 属性:toString(): string;
废弃版本:N/A|类名:URLSearchParams
方法 or 属性:toString(): string;
废弃版本:9
代替接口:ohos.url.URLParams.toString |@ohos.url.d.ts| +|废弃版本有变化|类名:URL
方法 or 属性:constructor(url: string, base?: string \| URL);
废弃版本:N/A|类名:URL
方法 or 属性:constructor(url: string, base?: string \| URL);
废弃版本:9
代替接口:ohos.url.URL.parseURL |@ohos.url.d.ts| +|废弃版本有变化|类名:URL
方法 or 属性:readonly searchParams: URLSearchParams;
废弃版本:N/A|类名:URL
方法 or 属性:readonly searchParams: URLSearchParams;
废弃版本:9
代替接口:ohos.url.URL.params |@ohos.url.d.ts| +|废弃版本有变化|类名:util
方法 or 属性:function printf(format: string, ...args: Object[]): string;
废弃版本:N/A|类名:util
方法 or 属性:function printf(format: string, ...args: Object[]): string;
废弃版本:9
代替接口:ohos.util.format |@ohos.util.d.ts| +|废弃版本有变化|类名:util
方法 or 属性:function getErrorString(errno: number): string;
废弃版本:N/A|类名:util
方法 or 属性:function getErrorString(errno: number): string;
废弃版本:9
代替接口:ohos.util.errnoToString |@ohos.util.d.ts| +|废弃版本有变化|类名:util
方法 or 属性:function promiseWrapper(original: (err: Object, value: Object) => void): Object;
废弃版本:N/A|类名:util
方法 or 属性:function promiseWrapper(original: (err: Object, value: Object) => void): Object;
废弃版本:9
代替接口:ohos.util.promisify |@ohos.util.d.ts| +|废弃版本有变化|类名:TextDecoder
方法 or 属性:constructor(

encoding?: string,

options?: { fatal?: boolean; ignoreBOM?: boolean },

);
废弃版本:N/A|类名:TextDecoder
方法 or 属性:constructor(

encoding?: string,

options?: { fatal?: boolean; ignoreBOM?: boolean },

);
废弃版本:9
代替接口:ohos.util.TextDecoder.create |@ohos.util.d.ts| +|废弃版本有变化|类名:TextDecoder
方法 or 属性:decode(input: Uint8Array, options?: { stream?: false }): string;
废弃版本:N/A|类名:TextDecoder
方法 or 属性:decode(input: Uint8Array, options?: { stream?: false }): string;
废弃版本:9
代替接口:ohos.util.decodeWithStream |@ohos.util.d.ts| +|废弃版本有变化|类名:TextEncoder
方法 or 属性:encode(input?: string): Uint8Array;
废弃版本:N/A|类名:TextEncoder
方法 or 属性:encode(input?: string): Uint8Array;
废弃版本:9
代替接口:ohos.util.encodeInto |@ohos.util.d.ts| +|废弃版本有变化|类名:TextEncoder
方法 or 属性:encodeInto(

input: string,

dest: Uint8Array,

): { read: number; written: number };
废弃版本:N/A|类名:TextEncoder
方法 or 属性:encodeInto(

input: string,

dest: Uint8Array,

): { read: number; written: number };
废弃版本:9
代替接口:ohos.util.encodeIntoUint8Array |@ohos.util.d.ts| +|废弃版本有变化|类名:RationalNumber
方法 or 属性:constructor(numerator: number, denominator: number);
废弃版本:N/A|类名:RationalNumber
方法 or 属性:constructor(numerator: number, denominator: number);
废弃版本:9
代替接口:ohos.util.RationalNumber.parseRationalNumber |@ohos.util.d.ts| +|废弃版本有变化|类名:RationalNumber
方法 or 属性:compareTo(another :RationalNumber): number;
废弃版本:N/A|类名:RationalNumber
方法 or 属性:compareTo(another :RationalNumber): number;
废弃版本:9
代替接口:ohos.util.compare |@ohos.util.d.ts| +|废弃版本有变化|类名:RationalNumber
方法 or 属性:static getCommonDivisor(number1: number, number2: number): number;
废弃版本:N/A|类名:RationalNumber
方法 or 属性:static getCommonDivisor(number1: number, number2: number): number;
废弃版本:9
代替接口:ohos.util.getCommonFactor |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
废弃版本:N/A|类名:LruBuffer
废弃版本:9
代替接口:ohos.util.LRUCache |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:updateCapacity(newCapacity: number):void
废弃版本:N/A|类名:LruBuffer
方法 or 属性:updateCapacity(newCapacity: number):void
废弃版本:9
代替接口:ohos.util.LRUCache.updateCapacity |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getCapacity(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getCapacity(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getCapacity |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:clear(): void;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:clear(): void;
废弃版本:9
代替接口:ohos.util.LRUCache.clear |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getCreateCount(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getCreateCount(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getCreateCount |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getMissCount(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getMissCount(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getMissCount |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getRemovalCount(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getRemovalCount(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getRemovalCount |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getMatchCount(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getMatchCount(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getMatchCount |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:getPutCount(): number;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:getPutCount(): number;
废弃版本:9
代替接口:ohos.util.LRUCache.getPutCount |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:isEmpty(): boolean;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:isEmpty(): boolean;
废弃版本:9
代替接口:ohos.util.LRUCache.isEmpty |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:get(key: K): V \| undefined;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:get(key: K): V \| undefined;
废弃版本:9
代替接口:ohos.util.LRUCache.get |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:put(key: K, value: V): V;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:put(key: K, value: V): V;
废弃版本:9
代替接口:ohos.util.LRUCache.put |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:values(): V[];
废弃版本:N/A|类名:LruBuffer
方法 or 属性:values(): V[];
废弃版本:9
代替接口:ohos.util.LRUCache.values |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:keys(): K[];
废弃版本:N/A|类名:LruBuffer
方法 or 属性:keys(): K[];
废弃版本:9
代替接口:ohos.util.LRUCache.keys |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:remove(key: K): V \| undefined;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:remove(key: K): V \| undefined;
废弃版本:9
代替接口:ohos.util.LRUCache.remove |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
废弃版本:9
代替接口:ohos.util.LRUCache.afterRemoval |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:contains(key: K): boolean;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:contains(key: K): boolean;
废弃版本:9
代替接口:ohos.util.LRUCache.contains |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:createDefault(key: K): V;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:createDefault(key: K): V;
废弃版本:9
代替接口:ohos.util.LRUCache.createDefault |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:entries(): IterableIterator\<[K, V]>;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:entries(): IterableIterator\<[K, V]>;
废弃版本:9
代替接口:ohos.util.LRUCache.entries |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;
废弃版本:N/A|类名:LruBuffer
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;
废弃版本:9
代替接口:ohos.util.LRUCache.|@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
废弃版本:N/A|类名:Scope
废弃版本:9
代替接口:ohos.util.ScopeHelper |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:constructor(lowerObj: ScopeType, upperObj: ScopeType);
废弃版本:N/A|类名:Scope
方法 or 属性:constructor(lowerObj: ScopeType, upperObj: ScopeType);
废弃版本:9
代替接口:ohos.util.ScopeHelper.constructor |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:toString(): string;
废弃版本:N/A|类名:Scope
方法 or 属性:toString(): string;
废弃版本:9
代替接口:ohos.util.ScopeHelper.toString |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:intersect(range: Scope): Scope;
废弃版本:N/A|类名:Scope
方法 or 属性:intersect(range: Scope): Scope;
废弃版本:9
代替接口:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;
废弃版本:N/A|类名:Scope
方法 or 属性:intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;
废弃版本:9
代替接口:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:getUpper(): ScopeType;
废弃版本:N/A|类名:Scope
方法 or 属性:getUpper(): ScopeType;
废弃版本:9
代替接口:ohos.util.ScopeHelper.getUpper |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:getLower(): ScopeType;
废弃版本:N/A|类名:Scope
方法 or 属性:getLower(): ScopeType;
废弃版本:9
代替接口:ohos.util.ScopeHelper.getLower |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;
废弃版本:N/A|类名:Scope
方法 or 属性:expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:expand(range: Scope): Scope;
废弃版本:N/A|类名:Scope
方法 or 属性:expand(range: Scope): Scope;
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:expand(value: ScopeType): Scope;
废弃版本:N/A|类名:Scope
方法 or 属性:expand(value: ScopeType): Scope;
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:contains(value: ScopeType): boolean;
废弃版本:N/A|类名:Scope
方法 or 属性:contains(value: ScopeType): boolean;
废弃版本:9
代替接口:ohos.util.ScopeHelper.contains |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:contains(range: Scope): boolean;
废弃版本:N/A|类名:Scope
方法 or 属性:contains(range: Scope): boolean;
废弃版本:9
代替接口:ohos.util.ScopeHelper.contains |@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
方法 or 属性:clamp(value: ScopeType): ScopeType;
废弃版本:N/A|类名:Scope
方法 or 属性:clamp(value: ScopeType): ScopeType;
废弃版本:9
代替接口:ohos.util.ScopeHelper.clamp |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
废弃版本:N/A|类名:Base64
废弃版本:9
代替接口:ohos.util.Base64Helper |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:constructor();
废弃版本:N/A|类名:Base64
方法 or 属性:constructor();
废弃版本:9
代替接口:ohos.util.Base64Helper.constructor |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:encodeSync(src: Uint8Array): Uint8Array;
废弃版本:N/A|类名:Base64
方法 or 属性:encodeSync(src: Uint8Array): Uint8Array;
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeSync |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:encodeToStringSync(src: Uint8Array): string;
废弃版本:N/A|类名:Base64
方法 or 属性:encodeToStringSync(src: Uint8Array): string;
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeToStringSync |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:decodeSync(src: Uint8Array \| string): Uint8Array;
废弃版本:N/A|类名:Base64
方法 or 属性:decodeSync(src: Uint8Array \| string): Uint8Array;
废弃版本:9
代替接口:ohos.util.Base64Helper.decodeSync |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:encode(src: Uint8Array): Promise\;
废弃版本:N/A|类名:Base64
方法 or 属性:encode(src: Uint8Array): Promise\;
废弃版本:9
代替接口:ohos.util.Base64Helper.encode |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:encodeToString(src: Uint8Array): Promise\;
废弃版本:N/A|类名:Base64
方法 or 属性:encodeToString(src: Uint8Array): Promise\;
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeToString |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
方法 or 属性:decode(src: Uint8Array \| string): Promise\;
废弃版本:N/A|类名:Base64
方法 or 属性:decode(src: Uint8Array \| string): Promise\;
废弃版本:9
代替接口:ohos.util.Base64Helper.decode |@ohos.util.d.ts| +|废弃版本有变化|类名:Vector
废弃版本:N/A|类名:Vector
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|类名:EventListener
废弃版本:N/A|类名:EventListener
废弃版本:9
代替接口:ohos.worker.WorkerEventListener |@ohos.worker.d.ts| +|废弃版本有变化|类名:EventListener
方法 or 属性:(evt: Event): void \| Promise\;
废弃版本:N/A|类名:EventListener
方法 or 属性:(evt: Event): void \| Promise\;
废弃版本:9
代替接口:ohos.worker.WorkerEventListener.|@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
废弃版本:N/A|类名:EventTarget
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget |@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
方法 or 属性:addEventListener(

type: string,

listener: EventListener

): void;
废弃版本:N/A|类名:EventTarget
方法 or 属性:addEventListener(

type: string,

listener: EventListener

): void;
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.addEventListener |@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
方法 or 属性:dispatchEvent(event: Event): boolean;
废弃版本:N/A|类名:EventTarget
方法 or 属性:dispatchEvent(event: Event): boolean;
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.dispatchEvent |@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
方法 or 属性:removeEventListener(

type: string,

callback?: EventListener

): void;
废弃版本:N/A|类名:EventTarget
方法 or 属性:removeEventListener(

type: string,

callback?: EventListener

): void;
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.removeEventListener |@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
方法 or 属性:removeAllListener(): void;
废弃版本:N/A|类名:EventTarget
方法 or 属性:removeAllListener(): void;
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.removeAllListener |@ohos.worker.d.ts| +|废弃版本有变化|类名:WorkerGlobalScope
废弃版本:N/A|类名:WorkerGlobalScope
废弃版本:9
代替接口:ohos.worker.GlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|类名:WorkerGlobalScope
方法 or 属性:readonly name: string;
废弃版本:N/A|类名:WorkerGlobalScope
方法 or 属性:readonly name: string;
废弃版本:9
代替接口:ohos.worker.GlobalScope.name |@ohos.worker.d.ts| +|废弃版本有变化|类名:WorkerGlobalScope
方法 or 属性:onerror?: (ev: ErrorEvent) => void;
废弃版本:N/A|类名:WorkerGlobalScope
方法 or 属性:onerror?: (ev: ErrorEvent) => void;
废弃版本:9
代替接口:ohos.worker.GlobalScope.onerror |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
方法 or 属性:onmessage?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
方法 or 属性:onmessage?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.onmessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
方法 or 属性:onmessageerror?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
方法 or 属性:onmessageerror?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.onmessageerror |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
方法 or 属性:close(): void;
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.close |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, transfer: Transferable[]): void;
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, transfer: Transferable[]): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.postMessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, options?: PostMessageOptions): void;
废弃版本:N/A|类名:DedicatedWorkerGlobalScope
方法 or 属性:postMessage(messageObject: Object, options?: PostMessageOptions): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.postMessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
废弃版本:N/A|类名:Worker
废弃版本:9
代替接口:ohos.worker.ThreadWorker |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:constructor(scriptURL: string, options?: WorkerOptions);
废弃版本:N/A|类名:Worker
方法 or 属性:constructor(scriptURL: string, options?: WorkerOptions);
废弃版本:9
代替接口:ohos.worker.ThreadWorker.constructor |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:onexit?: (code: number) => void;
废弃版本:N/A|类名:Worker
方法 or 属性:onexit?: (code: number) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onexit |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:onerror?: (err: ErrorEvent) => void;
废弃版本:N/A|类名:Worker
方法 or 属性:onerror?: (err: ErrorEvent) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onerror |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:onmessage?: (event: MessageEvent) => void;
废弃版本:N/A|类名:Worker
方法 or 属性:onmessage?: (event: MessageEvent) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onmessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:onmessageerror?: (event: MessageEvent) => void;
废弃版本:N/A|类名:Worker
方法 or 属性:onmessageerror?: (event: MessageEvent) => void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onmessageerror |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:postMessage(message: Object, transfer: ArrayBuffer[]): void;
废弃版本:N/A|类名:Worker
方法 or 属性:postMessage(message: Object, transfer: ArrayBuffer[]): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.postMessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:postMessage(message: Object, options?: PostMessageOptions): void;
废弃版本:N/A|类名:Worker
方法 or 属性:postMessage(message: Object, options?: PostMessageOptions): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.postMessage |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:on(type: string, listener: EventListener): void;
废弃版本:N/A|类名:Worker
方法 or 属性:on(type: string, listener: EventListener): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.on |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:once(type: string, listener: EventListener): void;
废弃版本:N/A|类名:Worker
方法 or 属性:once(type: string, listener: EventListener): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.once |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:off(type: string, listener?: EventListener): void;
废弃版本:N/A|类名:Worker
方法 or 属性:off(type: string, listener?: EventListener): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.off |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
方法 or 属性:terminate(): void;
废弃版本:N/A|类名:Worker
方法 or 属性:terminate(): void;
废弃版本:9
代替接口:ohos.worker.ThreadWorker.terminate |@ohos.worker.d.ts| +|废弃版本有变化|类名:worker
方法 or 属性:const parentPort: DedicatedWorkerGlobalScope;
废弃版本:N/A|类名:worker
方法 or 属性:const parentPort: DedicatedWorkerGlobalScope;
废弃版本:9
代替接口:ohos.worker.workerPort |@ohos.worker.d.ts| +|起始版本有变化|类名:ConvertXML
起始版本:N/A|类名:ConvertXML
起始版本:8|@ohos.convertxml.d.ts| +|起始版本有变化|类名:ChildProcess
起始版本:N/A|类名:ChildProcess
起始版本:7|@ohos.process.d.ts| +|起始版本有变化|类名:URI
起始版本:N/A|类名:URI
起始版本:8|@ohos.uri.d.ts| +|起始版本有变化|类名:URLSearchParams
起始版本:N/A|类名:URLSearchParams
起始版本:7|@ohos.url.d.ts| +|起始版本有变化|类名:URL
起始版本:N/A|类名:URL
起始版本:7|@ohos.url.d.ts| +|起始版本有变化|类名:URL
方法 or 属性:constructor(url: string, base?: string \| URL);
起始版本:N/A|类名:URL
方法 or 属性:constructor(url: string, base?: string \| URL);
起始版本:7|@ohos.url.d.ts| +|起始版本有变化|类名:TextDecoder
起始版本:N/A|类名:TextDecoder
起始版本:7|@ohos.util.d.ts| +|起始版本有变化|类名:TextDecoder
方法 or 属性:constructor(

encoding?: string,

options?: { fatal?: boolean; ignoreBOM?: boolean },

);
起始版本:N/A|类名:TextDecoder
方法 or 属性:constructor(

encoding?: string,

options?: { fatal?: boolean; ignoreBOM?: boolean },

);
起始版本:7|@ohos.util.d.ts| +|起始版本有变化|类名:TextEncoder
起始版本:N/A|类名:TextEncoder
起始版本:7|@ohos.util.d.ts| +|起始版本有变化|类名:RationalNumber
起始版本:N/A|类名:RationalNumber
起始版本:8|@ohos.util.d.ts| +|起始版本有变化|类名:LruBuffer
起始版本:N/A|类名:LruBuffer
起始版本:8|@ohos.util.d.ts| +|起始版本有变化|类名:Scope
起始版本:N/A|类名:Scope
起始版本:8|@ohos.util.d.ts| +|起始版本有变化|类名:Base64
起始版本:N/A|类名:Base64
起始版本:8|@ohos.util.d.ts| +|起始版本有变化|类名:types
起始版本:N/A|类名:types
起始版本:8|@ohos.util.d.ts| +|起始版本有变化|类名:Vector
起始版本:N/A|类名:Vector
起始版本:8|@ohos.util.Vector.d.ts| +|起始版本有变化|类名:Worker
起始版本:N/A|类名:Worker
起始版本:7|@ohos.worker.d.ts| +|起始版本有变化|类名:worker
方法 or 属性:const parentPort: DedicatedWorkerGlobalScope;
起始版本:N/A|类名:worker
方法 or 属性:const parentPort: DedicatedWorkerGlobalScope;
起始版本:7|@ohos.worker.d.ts| +|起始版本有变化|类名:XmlSerializer
起始版本:N/A|类名:XmlSerializer
起始版本:8|@ohos.xml.d.ts| +|起始版本有变化|类名:XmlPullParser
起始版本:N/A|类名:XmlPullParser
起始版本:8|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:URI
方法 or 属性:constructor(uri: string);
错误码内容: 401, 10200002|@ohos.uri.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:add(element: T): boolean;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:insert(element: T, index: number): void;
错误码内容: 10200001, 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:has(element: T): boolean;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:getIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:removeByIndex(index: number): T;
错误码内容: 10200001, 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:remove(element: T): boolean;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:getLastIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:removeByRange(fromIndex: number, toIndex: number): void;
错误码内容: 10200001, 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:sort(comparator?: (firstValue: T, secondValue: T) => number): void;
错误码内容: 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:subArrayList(fromIndex: number, toIndex: number): ArrayList\;
错误码内容: 10200001, 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:clone(): ArrayList\;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:getCapacity(): number;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:convertToArray(): Array\;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:increaseCapacityTo(newCapacity: number): void;
错误码内容: 10200011, 401|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:trimToCurrentLength(): void;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:ArrayList
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.ArrayList.d.ts| +|新增(错误码)|NA|类名:util
方法 or 属性:function callbackWrapper(original: Function): (err: Object, value: Object) => void;
错误码内容: 401|@ohos.util.d.ts| +|新增(错误码)|NA|类名:RationalNumber
方法 or 属性:static createRationalFromString(rationalString: string): RationalNumber​;
错误码内容: 401|@ohos.util.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:insertFront(element: T): void;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:insertEnd(element: T): void;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:has(element: T): boolean;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:getFirst(): T;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:getLast(): T;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:popFirst(): T;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:popLast(): T;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:Deque
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.Deque.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:hasKey(key: K): boolean;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:hasValue(value: V): boolean;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:get(key: K): V;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:setAll(map: HashMap\): void;
错误码内容: 10200011, 401|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:set(key: K, value: V): Object;
错误码内容: 10200011, 401|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:remove(key: K): V;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:keys(): IterableIterator\;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:replace(key: K, newValue: V): boolean;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:entries(): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashMap
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.HashMap.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:has(value: T): boolean;
错误码内容: 10200011, 401|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:add(value: T): boolean;
错误码内容: 10200011, 401|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:remove(value: T): boolean;
错误码内容: 10200011, 401|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:entries(): IterableIterator\<[T, T]>;
错误码内容: 10200011|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:HashSet
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.HashSet.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:hasAll(map: LightWeightMap\): boolean;
错误码内容: 401, 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:hasKey(key: K): boolean;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:hasValue(value: V): boolean;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:increaseCapacityTo(minimumCapacity: number): void;
错误码内容: 10200011, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:entries(): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:get(key: K): V;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:getIndexOfKey(key: K): number;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:getIndexOfValue(value: V): number;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:getKeyAt(index: number): K;
错误码内容: 10200011, 10200001, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:keys(): IterableIterator\;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:setAll(map: LightWeightMap\): void;
错误码内容: 10200011, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:set(key: K, value: V): Object;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:remove(key: K): V;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:removeAt(index: number): boolean;
错误码内容: 10200011, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:setValueAt(index: number, newValue: V): boolean;
错误码内容: 10200011, 10200001, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:toString(): String;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:getValueAt(index: number): V;
错误码内容: 10200011, 10200001, 401|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightMap
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.LightWeightMap.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:add(obj: T): boolean;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:addAll(set: LightWeightSet\): boolean;
错误码内容: 10200011, 401|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:hasAll(set: LightWeightSet\): boolean;
错误码内容: 10200011, 401|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:has(key: T): boolean;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:equal(obj: Object): boolean;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:increaseCapacityTo(minimumCapacity: number): void;
错误码内容: 10200011, 401, 10200001|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:getIndexOf(key: T): number;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:remove(key: T): T;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:removeAt(index: number): boolean;
错误码内容: 10200011, 401|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:toArray(): Array\;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:getValueAt(index: number): T;
错误码内容: 10200011, 401|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:entries(): IterableIterator\<[T, T]>;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LightWeightSet
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.LightWeightSet.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:add(element: T): boolean;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:insert(index: number, element: T): void;
错误码内容: 10200011, 401, 10200001|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:get(index: number): T;
错误码内容: 10200011, 401|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:addFirst(element: T): void;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:removeFirst(): T;
错误码内容: 10200011, 10200010|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:removeLast(): T;
错误码内容: 10200011, 10200010|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:has(element: T): boolean;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:getIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:removeByIndex(index: number): T;
错误码内容: 10200011, 401, 10200001|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:remove(element: T): boolean;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:removeFirstFound(element: T): boolean;
错误码内容: 10200011, 10200010, 10200017|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:removeLastFound(element: T): boolean;
错误码内容: 10200011, 10200010, 10200017|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:getLastIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:getFirst(): T;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:getLast(): T;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:set(index: number, element: T): T;
错误码内容: 10200011, 10200001, 401|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:clone(): LinkedList\;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:convertToArray(): Array\;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:LinkedList
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.LinkedList.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:add(element: T): boolean;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:insert(element: T, index: number): void;
错误码内容: 10200011, 10200001, 401|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:get(index: number): T;
错误码内容: 10200011, 401|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:has(element: T): boolean;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:getIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:removeByIndex(index: number): T;
错误码内容: 10200011, 10200001, 401|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:remove(element: T): boolean;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:getLastIndexOf(element: T): number;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:getFirst(): T;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:getLast(): T;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:set(index: number, element: T): T;
错误码内容: 10200011, 10200001, 401|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:equal(obj: Object): boolean;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:sort(comparator: (firstValue: T, secondValue: T) => number): void;
错误码内容: 401, 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:getSubList(fromIndex: number, toIndex: number): List\;
错误码内容: 10200011, 10200001, 401|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:convertToArray(): Array\;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:List
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.List.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:add(key: number, value: T): void;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:clone(): PlainArray\;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:has(key: number): boolean;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:get(key: number): T;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:getIndexOfKey(key: number): number;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:getIndexOfValue(value: T): number;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:getKeyAt(index: number): number;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:remove(key: number): T;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:removeAt(index: number): T;
错误码内容: 10200011, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:removeRangeFrom(index: number, size: number): number;
错误码内容: 10200011, 10200001, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:setValueAt(index: number, value: T): void;
错误码内容: 10200011, 10200001, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:toString(): String;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:getValueAt(index: number): T;
错误码内容: 10200011, 10200001, 401|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:PlainArray
方法 or 属性:[Symbol.iterator](): IterableIterator\<[number, T]>;
错误码内容: 10200011|@ohos.util.PlainArray.d.ts| +|新增(错误码)|NA|类名:Queue
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.Queue.d.ts| +|新增(错误码)|NA|类名:Queue
方法 or 属性:add(element: T): boolean;
错误码内容: 10200011|@ohos.util.Queue.d.ts| +|新增(错误码)|NA|类名:Queue
方法 or 属性:getFirst(): T;
错误码内容: 10200011|@ohos.util.Queue.d.ts| +|新增(错误码)|NA|类名:Queue
方法 or 属性:pop(): T;
错误码内容: 10200011|@ohos.util.Queue.d.ts| +|新增(错误码)|NA|类名:Queue
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.Queue.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:constructor();
错误码内容: 10200012|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:peek(): T;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:pop(): T;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:push(item: T): T;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:locate(element: T): number;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:Stack
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.Stack.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:constructor(comparator?: (firstValue: K, secondValue: K) => boolean);
错误码内容: 10200012, 401|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:hasKey(key: K): boolean;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:hasValue(value: V): boolean;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:get(key: K): V;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:getFirstKey(): K;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:getLastKey(): K;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:setAll(map: TreeMap\): void;
错误码内容: 10200011, 401|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:set(key: K, value: V): Object;
错误码内容: 10200011, 401|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:remove(key: K): V;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:getLowerKey(key: K): K;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:getHigherKey(key: K): K;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:keys(): IterableIterator\;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:replace(key: K, newValue: V): boolean;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:entries(): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeMap
方法 or 属性:[Symbol.iterator](): IterableIterator\<[K, V]>;
错误码内容: 10200011|@ohos.util.TreeMap.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:constructor(comparator?: (firstValue: T, secondValue: T) => boolean)
错误码内容: 10200012, 401|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:isEmpty(): boolean;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:has(value: T): boolean;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:add(value: T): boolean;
错误码内容: 401, 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:remove(value: T): boolean;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:clear(): void;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:getFirstValue(): T;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:getLastValue(): T;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:getLowerValue(key: T): T;
错误码内容: 10200011, 401|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:getHigherValue(key: T): T;
错误码内容: 10200011, 401|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:popFirst(): T;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:popLast(): T;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:values(): IterableIterator\;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:entries(): IterableIterator\<[T, T]>;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:TreeSet
方法 or 属性:[Symbol.iterator](): IterableIterator\;
错误码内容: 10200011|@ohos.util.TreeSet.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:constructor(buffer: ArrayBuffer \| DataView, encoding?: string);
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setAttributes(name: string, value: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:addEmptyElement(name: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:startElement(name: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setNamespace(prefix: string, namespace: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setComment(text: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setCDATA(text: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setText(text: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlSerializer
方法 or 属性:setDocType(text: string): void;
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlPullParser
方法 or 属性:constructor(buffer: ArrayBuffer \| DataView, encoding?: string);
错误码内容: 401|@ohos.xml.d.ts| +|新增(错误码)|NA|类名:XmlPullParser
方法 or 属性:parse(option: ParseOptions): void;
错误码内容: 401|@ohos.xml.d.ts| +|SysCap有变化|类名:Vector
SysCap:N/A|类名:Vector
SysCap:SystemCapability.Utils.Lang|@ohos.util.Vector.d.ts| +|函数有变化|类名:process
方法 or 属性:function runCmd(command: string,

options?: { timeout : number, killSignal : number \| string, maxBuffer : number }): ChildProcess;
|类名:process
方法 or 属性:function runCmd(command: string,

options?: { timeout?: number, killSignal?: number \| string, maxBuffer?: number }): ChildProcess;
|@ohos.process.d.ts| +|函数有变化|类名:URLSearchParams
方法 or 属性:forEach(callbackfn: (value: string, key: string, searchParams: this) => void, thisArg?: Object): void;
|类名:URLSearchParams
方法 or 属性:forEach(callbackFn: (value: string, key: string, searchParams: this) => void, thisArg?: Object): void;
|@ohos.url.d.ts| +|函数有变化|类名:ArrayList
方法 or 属性:replaceAllElements(callbackfn: (value: T, index?: number, arrlist?: ArrayList\) => T,

thisArg?: Object): void;
|类名:ArrayList
方法 or 属性:replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList\) => T,

thisArg?: Object): void;
|@ohos.util.ArrayList.d.ts| +|函数有变化|类名:ArrayList
方法 or 属性:forEach(callbackfn: (value: T, index?: number, arrlist?: ArrayList\) => void,

thisArg?: Object): void;
|类名:ArrayList
方法 or 属性:forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList\) => void,

thisArg?: Object): void;
|@ohos.util.ArrayList.d.ts| +|函数有变化|类名:Deque
方法 or 属性:forEach(callbackfn: (value: T, index?: number, deque?: Deque\) => void,

thisArg?: Object): void;
|类名:Deque
方法 or 属性:forEach(callbackFn: (value: T, index?: number, deque?: Deque\) => void,

thisArg?: Object): void;
|@ohos.util.Deque.d.ts| +|函数有变化|类名:HashMap
方法 or 属性:forEach(callbackfn: (value?: V, key?: K, map?: HashMap\) => void,

thisArg?: Object): void;
|类名:HashMap
方法 or 属性:forEach(callbackFn: (value?: V, key?: K, map?: HashMap\) => void,

thisArg?: Object): void;
|@ohos.util.HashMap.d.ts| +|函数有变化|类名:HashSet
方法 or 属性:forEach(callbackfn: (value?: T, key?: T, set?: HashSet\) => void,

thisArg?: Object): void;
|类名:HashSet
方法 or 属性:forEach(callbackFn: (value?: T, key?: T, set?: HashSet\) => void,

thisArg?: Object): void;
|@ohos.util.HashSet.d.ts| +|函数有变化|类名:LightWeightMap
方法 or 属性:forEach(callbackfn: (value?: V, key?: K, map?: LightWeightMap\) => void,

thisArg?: Object): void;
|类名:LightWeightMap
方法 or 属性:forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap\) => void,

thisArg?: Object): void;
|@ohos.util.LightWeightMap.d.ts| +|函数有变化|类名:LightWeightSet
方法 or 属性:forEach(callbackfn: (value?: T, key?: T, set?: LightWeightSet\) => void,

thisArg?: Object): void;
|类名:LightWeightSet
方法 or 属性:forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet\) => void,

thisArg?: Object): void;
|@ohos.util.LightWeightSet.d.ts| +|函数有变化|类名:LinkedList
方法 or 属性:forEach(callbackfn: (value: T, index?: number, LinkedList?: LinkedList\) => void,

thisArg?: Object): void;
|类名:LinkedList
方法 or 属性:forEach(callbackFn: (value: T, index?: number, LinkedList?: LinkedList\) => void,

thisArg?: Object): void;
|@ohos.util.LinkedList.d.ts| +|函数有变化|类名:List
方法 or 属性:forEach(callbackfn: (value: T, index?: number, List?: List\) => void,

thisArg?: Object): void;
|类名:List
方法 or 属性:forEach(callbackFn: (value: T, index?: number, List?: List\) => void,

thisArg?: Object): void;
|@ohos.util.List.d.ts| +|函数有变化|类名:List
方法 or 属性:replaceAllElements(callbackfn: (value: T, index?: number, list?: List\) => T,

thisArg?: Object): void;
|类名:List
方法 or 属性:replaceAllElements(callbackFn: (value: T, index?: number, list?: List\) => T,

thisArg?: Object): void;
|@ohos.util.List.d.ts| +|函数有变化|类名:PlainArray
方法 or 属性:forEach(callbackfn: (value: T, index?: number, PlainArray?: PlainArray\) => void,

thisArg?: Object): void;
|类名:PlainArray
方法 or 属性:forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray\) => void,

thisArg?: Object): void;
|@ohos.util.PlainArray.d.ts| +|函数有变化|类名:Queue
方法 or 属性:forEach(callbackfn: (value: T, index?: number, Queue?: Queue\) => void,

thisArg?: Object): void;
|类名:Queue
方法 or 属性:forEach(callbackFn: (value: T, index?: number, Queue?: Queue\) => void,

thisArg?: Object): void;
|@ohos.util.Queue.d.ts| +|函数有变化|类名:Stack
方法 or 属性:forEach(callbackfn: (value: T, index?: number, stack?: Stack\) => void,

thisArg?: Object): void;
|类名:Stack
方法 or 属性:forEach(callbackFn: (value: T, index?: number, stack?: Stack\) => void,

thisArg?: Object): void;
|@ohos.util.Stack.d.ts| +|函数有变化|类名:TreeMap
方法 or 属性:forEach(callbackfn: (value?: V, key?: K, map?: TreeMap\) => void,

thisArg?: Object): void;
|类名:TreeMap
方法 or 属性:forEach(callbackFn: (value?: V, key?: K, map?: TreeMap\) => void,

thisArg?: Object): void;
|@ohos.util.TreeMap.d.ts| +|函数有变化|类名:TreeSet
方法 or 属性:forEach(callbackfn: (value?: T, key?: T, set?: TreeSet\) => void,

thisArg?: Object): void;
|类名:TreeSet
方法 or 属性:forEach(callbackFn: (value?: T, key?: T, set?: TreeSet\) => void,

thisArg?: Object): void;
|@ohos.util.TreeSet.d.ts| +|函数有变化|类名:Vector
方法 or 属性:replaceAllElements(callbackfn: (value: T, index?: number, vector?: Vector\) => T,

thisArg?: Object): void;
|类名:Vector
方法 or 属性:replaceAllElements(callbackFn: (value: T, index?: number, vector?: Vector\) => T,

thisArg?: Object): void;
|@ohos.util.Vector.d.ts| +|函数有变化|类名:Vector
方法 or 属性:forEach(callbackfn: (value: T, index?: number, vector?: Vector\) => void,

thisArg?: Object): void;
|类名:Vector
方法 or 属性:forEach(callbackFn: (value: T, index?: number, vector?: Vector\) => void,

thisArg?: Object): void;
|@ohos.util.Vector.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-customization.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-customization.md new file mode 100644 index 0000000000000000000000000000000000000000..20bcea9a0a54548c56e186753f9f7bb12a0c7731 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-customization.md @@ -0,0 +1,48 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo
方法 or 属性: name: string;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo
方法 or 属性: description: string;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: AdminType|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: AdminType
方法 or 属性: ADMIN_TYPE_NORMAL = 0x00|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: AdminType
方法 or 属性: ADMIN_TYPE_SUPER = 0x01|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: ManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: ManagedEvent
方法 or 属性: MANAGED_EVENT_BUNDLE_ADDED = 0|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: ManagedEvent
方法 or 属性: MANAGED_EVENT_BUNDLE_REMOVED = 1|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, userId: number, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, userId?: number): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function disableAdmin(admin: Want, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function disableAdmin(admin: Want, userId: number, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function disableAdmin(admin: Want, userId?: number): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function disableSuperAdmin(bundleName: String, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function disableSuperAdmin(bundleName: String): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function isAdminEnabled(admin: Want, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function isAdminEnabled(admin: Want, userId: number, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function isAdminEnabled(admin: Want, userId?: number): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function getEnterpriseInfo(admin: Want, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function getEnterpriseInfo(admin: Want): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function setEnterpriseInfo(admin: Want, enterpriseInfo: EnterpriseInfo, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function setEnterpriseInfo(admin: Want, enterpriseInfo: EnterpriseInfo): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function isSuperAdmin(bundleName: String, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function isSuperAdmin(bundleName: String): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function subscribeManagedEvent(admin: Want, managedEvents: Array\, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function subscribeManagedEvent(admin: Want, managedEvents: Array\): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function unsubscribeManagedEvent(admin: Want, managedEvents: Array\, callback: AsyncCallback\): void;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.adminManager
类名: adminManager
方法 or 属性: function unsubscribeManagedEvent(admin: Want, managedEvents: Array\): Promise\;|@ohos.enterprise.adminManager.d.ts| +|新增|NA|模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager|@ohos.enterprise.dateTimeManager.d.ts| +|新增|NA|模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager
方法 or 属性: function setDateTime(admin: Want, time: number, callback: AsyncCallback\): void;|@ohos.enterprise.dateTimeManager.d.ts| +|新增|NA|模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager
方法 or 属性: function setDateTime(admin: Want, time: number): Promise\;|@ohos.enterprise.dateTimeManager.d.ts| +|新增|NA|模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增|NA|模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法 or 属性: onAdminEnabled(): void;|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增|NA|模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法 or 属性: onAdminDisabled(): void;|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增|NA|模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法 or 属性: onBundleAdded(bundleName: string): void;|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增|NA|模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法 or 属性: onBundleRemoved(bundleName: string): void;|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|访问级别有变化|类名:configPolicy
访问级别:公开API|类名:configPolicy
访问级别:系统API|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getOneCfgFile(relPath: string, callback: AsyncCallback\);
错误码内容: 401|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getOneCfgFile(relPath: string): Promise\;
错误码内容: 401|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getCfgFiles(relPath: string, callback: AsyncCallback\>);
错误码内容: 401|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getCfgFiles(relPath: string): Promise\>;
错误码内容: 401|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getCfgDirList(callback: AsyncCallback\>);
错误码内容: 401|@ohos.configPolicy.d.ts| +|新增(错误码)|NA|类名:configPolicy
方法 or 属性:function getCfgDirList(): Promise\>;
错误码内容: 401|@ohos.configPolicy.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-dfx.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-dfx.md new file mode 100644 index 0000000000000000000000000000000000000000..9e155464169d77a35e09280049cc58154c25a5ac --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-dfx.md @@ -0,0 +1,115 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:FaultLogger
方法or属性:function query(faultType: FaultType, callback: AsyncCallback\>) : void;|@ohos.faultLogger.d.ts| +|新增|NA|类名:FaultLogger
方法or属性:function query(faultType: FaultType) : Promise\>;|@ohos.faultLogger.d.ts| +|新增|NA|类名:hichecker
方法or属性:function addCheckRule(rule: bigint) : void;|@ohos.hichecker.d.ts| +|新增|NA|类名:hichecker
方法or属性:function removeCheckRule(rule: bigint) : void;|@ohos.hichecker.d.ts| +|新增|NA|类名:hichecker
方法or属性:function containsCheckRule(rule: bigint) : boolean;|@ohos.hichecker.d.ts| +|新增|NA|类名:hidebug
方法or属性:function getPrivateDirty() : bigint;|@ohos.hidebug.d.ts| +|新增|NA|类名:hidebug
方法or属性:function getCpuUsage() : number;|@ohos.hidebug.d.ts| +|新增|NA|类名:hidebug
方法or属性:function startJsCpuProfiling(filename : string) : void;|@ohos.hidebug.d.ts| +|新增|NA|类名:hidebug
方法or属性:function stopJsCpuProfiling() : void;|@ohos.hidebug.d.ts| +|新增|NA|类名:hidebug
方法or属性:function dumpJsHeapData(filename : string) : void;|@ohos.hidebug.d.ts| +|新增|NA|类名:hidebug
方法or属性:function getServiceDump(serviceid : number, fd : number, args : Array\) : void;|@ohos.hidebug.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: EventType|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: EventType
方法 or 属性: FAULT = 1|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: EventType
方法 or 属性: STATISTIC = 2|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: EventType
方法 or 属性: SECURITY = 3|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: EventType
方法 or 属性: BEHAVIOR = 4|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: SysEventInfo|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: SysEventInfo
方法 or 属性: domain: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: SysEventInfo
方法 or 属性: name: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: SysEventInfo
方法 or 属性: eventType: EventType;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: SysEventInfo
方法 or 属性: params: object;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent
方法 or 属性: function write(info: SysEventInfo): Promise\;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent
方法 or 属性: function write(info: SysEventInfo, callback: AsyncCallback\): void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: RuleType|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: RuleType
方法 or 属性: WHOLE_WORD = 1|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: RuleType
方法 or 属性: PREFIX = 2|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: RuleType
方法 or 属性: REGULAR = 3|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: WatchRule|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: WatchRule
方法 or 属性: domain: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: WatchRule
方法 or 属性: name: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: WatchRule
方法 or 属性: tag: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: WatchRule
方法 or 属性: ruleType: RuleType;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Watcher|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Watcher
方法 or 属性: rules: WatchRule[];|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Watcher
方法 or 属性: onEvent: (info: SysEventInfo) => void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Watcher
方法 or 属性: onServiceDied: () => void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryArg|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryArg
方法 or 属性: beginTime: number;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryArg
方法 or 属性: endTime: number;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryArg
方法 or 属性: maxEvents: number;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryRule|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryRule
方法 or 属性: domain: string;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: QueryRule
方法 or 属性: names: string[];|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Querier|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Querier
方法 or 属性: onQuery: (infos: SysEventInfo[]) => void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: Querier
方法 or 属性: onComplete: (reason: number, total: number) => void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent
方法 or 属性: function addWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent
方法 or 属性: function removeWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiSysEvent
类名: hiSysEvent
方法 or 属性: function query(queryArg: QueryArg, rules: QueryRule[], querier: Querier): void;|@ohos.hiSysEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法 or 属性: FAULT = 1|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法 or 属性: STATISTIC = 2|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法 or 属性: SECURITY = 3|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法 or 属性: BEHAVIOR = 4|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性: const USER_LOGIN: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性: const USER_LOGOUT: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: event
方法 or 属性: const DISTRIBUTED_SERVICE_START: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性: const USER_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性: const DISTRIBUTED_SERVICE_NAME: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: param
方法 or 属性: const DISTRIBUTED_SERVICE_INSTANCE_ID: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function configure(config: ConfigOption): void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption
方法 or 属性: disable?: boolean;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption
方法 or 属性: maxStorage?: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法 or 属性: domain: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法 or 属性: name: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法 or 属性: eventType: EventType;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法 or 属性: params: object;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function write(info: AppEventInfo): Promise\;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function write(info: AppEventInfo, callback: AsyncCallback\): void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法 or 属性: packageId: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法 or 属性: row: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法 or 属性: size: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法 or 属性: data: string[];|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法 or 属性: constructor(watcherName: string);|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法 or 属性: setSize(size: number): void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法 or 属性: takeNext(): AppEventPackage;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法 or 属性: row?: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法 or 属性: size?: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法 or 属性: timeOut?: number;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter
方法 or 属性: domain: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter
方法 or 属性: eventTypes?: EventType[];|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法 or 属性: name: string;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法 or 属性: triggerCondition?: TriggerCondition;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法 or 属性: appEventFilters?: AppEventFilter[];|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法 or 属性: onTrigger?: (curRow: number, curSize: number, holder: AppEventPackageHolder) => void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function addWatcher(watcher: Watcher): AppEventPackageHolder;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function removeWatcher(watcher: Watcher): void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增|NA|模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法 or 属性: function clearData(): void;|@ohos.hiviewdfx.hiAppEvent.d.ts| +|废弃版本有变化|类名:bytrace
废弃版本:N/A|类名:bytrace
废弃版本:8
代替接口:ohos.hiTraceMeter |@ohos.bytrace.d.ts| +|废弃版本有变化|类名:bytrace
方法 or 属性:function startTrace(name: string, taskId: number, expectedTime?: number): void;
废弃版本:N/A|类名:bytrace
方法 or 属性:function startTrace(name: string, taskId: number, expectedTime?: number): void;
废弃版本:8
代替接口:ohos.hiTraceMeter.startTrace |@ohos.bytrace.d.ts| +|废弃版本有变化|类名:bytrace
方法 or 属性:function finishTrace(name: string, taskId: number): void;
废弃版本:N/A|类名:bytrace
方法 or 属性:function finishTrace(name: string, taskId: number): void;
废弃版本:8
代替接口:ohos.hiTraceMeter.finishTrace |@ohos.bytrace.d.ts| +|废弃版本有变化|类名:bytrace
方法 or 属性:function traceByValue(name: string, count: number): void;
废弃版本:N/A|类名:bytrace
方法 or 属性:function traceByValue(name: string, count: number): void;
废弃版本:8
代替接口:ohos.hiTraceMeter.traceByValue |@ohos.bytrace.d.ts| +|废弃版本有变化|类名:FaultLogger
方法 or 属性:function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback\>) : void;
废弃版本:N/A|类名:FaultLogger
方法 or 属性:function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback\>) : void;
废弃版本:9
代替接口:ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts| +|废弃版本有变化|类名:FaultLogger
方法 or 属性:function querySelfFaultLog(faultType: FaultType) : Promise\>;
废弃版本:N/A|类名:FaultLogger
方法 or 属性:function querySelfFaultLog(faultType: FaultType) : Promise\>;
废弃版本:9
代替接口:ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts| +|废弃版本有变化|类名:hiAppEvent
废弃版本:N/A|类名:hiAppEvent
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:hichecker
方法 or 属性:function addRule(rule: bigint) : void;
废弃版本:N/A|类名:hichecker
方法 or 属性:function addRule(rule: bigint) : void;
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|类名:hichecker
方法 or 属性:function removeRule(rule: bigint) : void;
废弃版本:N/A|类名:hichecker
方法 or 属性:function removeRule(rule: bigint) : void;
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|类名:hichecker
方法 or 属性:function contains(rule: bigint) : boolean;
废弃版本:N/A|类名:hichecker
方法 or 属性:function contains(rule: bigint) : boolean;
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|类名:hidebug
方法 or 属性:function startProfiling(filename : string) : void;
废弃版本:N/A|类名:hidebug
方法 or 属性:function startProfiling(filename : string) : void;
废弃版本:9
代替接口:ohos.hidebug/hidebug.startJsCpuProfiling |@ohos.hidebug.d.ts| +|废弃版本有变化|类名:hidebug
方法 or 属性:function stopProfiling() : void;
废弃版本:N/A|类名:hidebug
方法 or 属性:function stopProfiling() : void;
废弃版本:9
代替接口:ohos.hidebug/hidebug.stopJsCpuProfiling |@ohos.hidebug.d.ts| +|废弃版本有变化|类名:hidebug
方法 or 属性:function dumpHeapData(filename : string) : void;
废弃版本:N/A|类名:hidebug
方法 or 属性:function dumpHeapData(filename : string) : void;
废弃版本:9
代替接口:ohos.hidebug/hidebug.dumpJsHeapData |@ohos.hidebug.d.ts| +|函数有变化|类名:hiTraceChain
方法 or 属性:function begin(name: string, flags: number = HiTraceFlag.DEFAULT): HiTraceId;
|类名:hiTraceChain
方法 or 属性:function begin(name: string, flags?: number): HiTraceId;
|@ohos.hiTraceChain.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-data.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-data.md new file mode 100644 index 0000000000000000000000000000000000000000..9f6b86c8b2e5cfcdc0d618994dbba570955de65a --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-data.md @@ -0,0 +1,826 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: context?: ExtensionContext;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: onCreate?(want: Want, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: insert?(uri: string, valueBucket: ValuesBucket, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: update?(uri: string, predicates: dataSharePredicates.DataSharePredicates, valueBucket: ValuesBucket,
callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: delete?(uri: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: query?(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\,
callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: batchInsert?(uri: string, valueBuckets: Array\, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: normalizeUri?(uri: string, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.DataShareExtensionAbility
类名: DataShareExtensionAbility
方法 or 属性: denormalizeUri?(uri: string, callback: AsyncCallback\): void;|@ohos.application.DataShareExtensionAbility.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: dataShare|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: dataShare
方法 or 属性: function createDataShareHelper(context: Context, uri: string, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: dataShare
方法 or 属性: function createDataShareHelper(context: Context, uri: string): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: on(type: 'dataChange', uri: string, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: off(type: 'dataChange', uri: string, callback?: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: insert(uri: string, value: ValuesBucket, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: insert(uri: string, value: ValuesBucket): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: delete(uri: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: delete(uri: string, predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: query(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\,
callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: query(uri: string, predicates: dataSharePredicates.DataSharePredicates,
columns: Array\): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket,
callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: batchInsert(uri: string, values: Array\, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: batchInsert(uri: string, values: Array\): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: normalizeUri(uri: string, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: normalizeUri(uri: string): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: denormalizeUri(uri: string, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: denormalizeUri(uri: string): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: notifyChange(uri: string, callback: AsyncCallback\): void;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataShare
类名: DataShareHelper
方法 or 属性: notifyChange(uri: string): Promise\;|@ohos.data.dataShare.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: dataSharePredicates|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: equalTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: notEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: beginWrap(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: endWrap(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: or(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: and(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: contains(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: beginsWith(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: endsWith(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: isNull(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: isNotNull(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: like(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: unlike(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: glob(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: between(field: string, low: ValueType, high: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: notBetween(field: string, low: ValueType, high: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: greaterThan(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: lessThan(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: greaterThanOrEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: lessThanOrEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: orderByAsc(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: orderByDesc(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: distinct(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: limit(total: number, offset: number): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: groupBy(fields: Array\): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: indexedBy(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: in(field: string, value: Array\): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: notIn(field: string, value: Array\): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: prefixKey(prefix: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.dataSharePredicates
类名: DataSharePredicates
方法 or 属性: inKeys(keys: Array\): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType
方法 or 属性: TYPE_NULL = 0|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType
方法 or 属性: TYPE_LONG = 1|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType
方法 or 属性: TYPE_DOUBLE = 2|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType
方法 or 属性: TYPE_STRING = 3|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataType
方法 or 属性: TYPE_BLOB = 4|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: columnNames: Array\;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: columnCount: number;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: rowCount: number;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: isClosed: boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goToFirstRow(): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goToLastRow(): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goToNextRow(): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goToPreviousRow(): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goTo(offset: number): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: goToRow(position: number): boolean;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getBlob(columnIndex: number): Uint8Array;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getString(columnIndex: number): string;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getLong(columnIndex: number): number;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getDouble(columnIndex: number): number;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: close(): void;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getColumnIndex(columnName: string): number;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getColumnName(columnIndex: number): string;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|模块名: ohos.data.DataShareResultSet
类名: DataShareResultSet
方法 or 属性: getDataType(columnIndex: number): DataType;|@ohos.data.DataShareResultSet.d.ts| +|新增|NA|类名:KVStore
方法or属性:off(event: 'syncComplete', syncCallback?: Callback\>): void;|@ohos.data.distributedData.d.ts| +|新增|NA|类名:distributedDataObject
方法or属性:function create(context: Context, source: object): DataObject;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: SaveSuccessResponse|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:SaveSuccessResponse
方法or属性:|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: SaveSuccessResponse
方法 or 属性:sessionId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:SaveSuccessResponse
方法or属性:sessionId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: SaveSuccessResponse
方法 or 属性:version: number;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:SaveSuccessResponse
方法or属性:version: number;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: SaveSuccessResponse
方法 or 属性:deviceId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:SaveSuccessResponse
方法or属性:deviceId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: RevokeSaveSuccessResponse|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:RevokeSaveSuccessResponse
方法or属性:|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: RevokeSaveSuccessResponse
方法 or 属性:sessionId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:RevokeSaveSuccessResponse
方法or属性:sessionId: string;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(sessionId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(sessionId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:setSessionId(sessionId?: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:setSessionId(sessionId?: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:on(type: 'status',

callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:off(type: 'status',

callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:save(deviceId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:save(deviceId: string, callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:save(deviceId: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:save(deviceId: string): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:revokeSave(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:revokeSave(callback: AsyncCallback\): void;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedDataObject
类名: DataObject
方法 or 属性:revokeSave(): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|类名:DataObject
方法or属性:revokeSave(): Promise\;|@ohos.data.distributedDataObject.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: distributedKVStore|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManagerConfig|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManagerConfig
方法 or 属性: bundleName: string;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManagerConfig
方法 or 属性: context: Context;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_KEY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_VALUE_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_KEY_LENGTH_DEVICE: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_STORE_ID_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_QUERY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Constants
方法 or 属性: readonly MAX_BATCH_SIZE: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: STRING|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: INTEGER|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: FLOAT|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: BYTE_ARRAY|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: BOOLEAN|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ValueType
方法 or 属性: DOUBLE|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Value|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Value
方法 or 属性: type: ValueType;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Value
方法 or 属性: value: Uint8Array \| string \| number \| boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Entry|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Entry
方法 or 属性: key: string;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Entry
方法 or 属性: value: Value;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ChangeNotification|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法 or 属性: insertEntries: Entry[];|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法 or 属性: updateEntries: Entry[];|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法 or 属性: deleteEntries: Entry[];|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法 or 属性: deviceId: string;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SyncMode|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SyncMode
方法 or 属性: PULL_ONLY|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SyncMode
方法 or 属性: PUSH_ONLY|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SyncMode
方法 or 属性: PUSH_PULL|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SubscribeType|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法 or 属性: SUBSCRIBE_TYPE_LOCAL|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法 or 属性: SUBSCRIBE_TYPE_REMOTE|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法 or 属性: SUBSCRIBE_TYPE_ALL|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreType|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreType
方法 or 属性: DEVICE_COLLABORATION|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreType
方法 or 属性: SINGLE_VERSION|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SecurityLevel|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法 or 属性: S1|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法 or 属性: S2|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法 or 属性: S3|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法 or 属性: S4|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: createIfMissing?: boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: encrypt?: boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: backup?: boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: autoSync?: boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: kvStoreType?: KVStoreType;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: securityLevel: SecurityLevel;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Options
方法 or 属性: schema?: Schema;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema
方法 or 属性: constructor()|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema
方法 or 属性: root: FieldNode;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema
方法 or 属性: indexes: Array\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema
方法 or 属性: mode: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Schema
方法 or 属性: skip: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode
方法 or 属性: constructor(name: string)|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode
方法 or 属性: appendChild(child: FieldNode): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode
方法 or 属性: default: string;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode
方法 or 属性: nullable: boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: FieldNode
方法 or 属性: type: number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: getCount(): number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: getPosition(): number;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: moveToFirst(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: moveToLast(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: moveToNext(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: moveToPrevious(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: move(offset: number): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: moveToPosition(position: number): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: isFirst(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: isLast(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: isBeforeFirst(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: isAfterLast(): boolean;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法 or 属性: getEntry(): Entry;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: constructor()|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: reset(): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: equalTo(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: notEqualTo(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: greaterThan(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: lessThan(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: greaterThanOrEqualTo(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: lessThanOrEqualTo(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: isNull(field: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: inNumber(field: string, valueList: number[]): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: inString(field: string, valueList: string[]): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: notInNumber(field: string, valueList: number[]): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: notInString(field: string, valueList: string[]): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: like(field: string, value: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: unlike(field: string, value: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: and(): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: or(): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: orderByAsc(field: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: orderByDesc(field: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: limit(total: number, offset: number): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: isNotNull(field: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: beginGroup(): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: endGroup(): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: prefixKey(prefix: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: setSuggestIndex(index: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: deviceId(deviceId: string): Query;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: Query
方法 or 属性: getSqlLike(): string;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: putBatch(entries: Entry[], callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: putBatch(entries: Entry[]): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: putBatch(value: Array\, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: putBatch(value: Array\): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: delete(key: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: delete(key: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: delete(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\);|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: delete(predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: deleteBatch(keys: string[], callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: deleteBatch(keys: string[]): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: removeDeviceData(deviceId: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: removeDeviceData(deviceId: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: get(key: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: get(key: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getEntries(keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getEntries(keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getEntries(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getEntries(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSet(predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: closeResultSet(resultSet: KVStoreResultSet, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: closeResultSet(resultSet: KVStoreResultSet): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSize(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getResultSize(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: backup(file: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: backup(file: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: restore(file: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: restore(file: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: deleteBackup(files: Array\, callback: AsyncCallback\>): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: deleteBackup(files: Array\): Promise\>;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: startTransaction(callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: startTransaction(): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: commit(callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: commit(): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: rollback(callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: rollback(): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: enableSync(enabled: boolean, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: enableSync(enabled: boolean): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: setSyncParam(defaultAllowedDelayMs: number): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: sync(deviceIds: string[], query: Query, mode: SyncMode, delayMs?: number): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: on(event: 'dataChange', type: SubscribeType, listener: Callback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: on(event: 'syncComplete', syncCallback: Callback\>): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: off(event: 'dataChange', listener?: Callback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: off(event: 'syncComplete', syncCallback?: Callback\>): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getSecurityLevel(callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法 or 属性: getSecurityLevel(): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: get(key: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: get(key: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: get(deviceId: string, key: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: get(deviceId: string, key: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(deviceId: string, keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(deviceId: string, query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getEntries(deviceId: string, query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, keyPrefix: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSet(deviceId: string, predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSize(query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSize(query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSize(deviceId: string, query: Query, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法 or 属性: getResultSize(deviceId: string, query: Query): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: distributedKVStore
方法 or 属性: function createKVManager(config: KVManagerConfig): KVManager;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: getKVStore\(storeId: string, options: Options, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: getKVStore\(storeId: string, options: Options): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: closeKVStore(appId: string, storeId: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: closeKVStore(appId: string, storeId: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: deleteKVStore(appId: string, storeId: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: getAllKVStoreId(appId: string, callback: AsyncCallback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: getAllKVStoreId(appId: string): Promise\;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: on(event: 'distributedDataServiceDie', deathCallback: Callback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.distributedKVStore
类名: KVManager
方法 or 属性: off(event: 'distributedDataServiceDie', deathCallback?: Callback\): void;|@ohos.data.distributedKVStore.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function getPreferences(context: Context, name: string, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function getPreferences(context: Context, name: string): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function deletePreferences(context: Context, name: string, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function deletePreferences(context: Context, name: string): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function removePreferencesFromCache(context: Context, name: string, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: function removePreferencesFromCache(context: Context, name: string): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: get(key: string, defValue: ValueType, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: get(key: string, defValue: ValueType): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: getAll(callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: getAll(): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: has(key: string, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: has(key: string): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: put(key: string, value: ValueType, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: put(key: string, value: ValueType): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: delete(key: string, callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: delete(key: string): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: clear(callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: clear(): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: flush(callback: AsyncCallback\): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: flush(): Promise\;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: on(type: 'change', callback: Callback\<{ key: string }>): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: Preferences
方法 or 属性: off(type: 'change', callback?: Callback\<{ key: string }>): void;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: const MAX_KEY_LENGTH: 80;|@ohos.data.preferences.d.ts| +|新增|NA|模块名: ohos.data.preferences
类名: preferences
方法 or 属性: const MAX_VALUE_LENGTH: 8192;|@ohos.data.preferences.d.ts| +|新增|NA|类名:RdbStore
方法or属性:batchInsert(table: string, values: Array\, callback: AsyncCallback\): void;|@ohos.data.rdb.d.ts| +|新增|NA|类名:RdbStore
方法or属性:batchInsert(table: string, values: Array\): Promise\;|@ohos.data.rdb.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore
方法 or 属性: type ValuesBucket = { [key:string]: ValueType \| Uint8Array \| null;}|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore
方法 or 属性: function getRdbStore(context: Context, config: StoreConfig, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore
方法 or 属性: function getRdbStore(context: Context, config: StoreConfig): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore
方法 or 属性: function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: relationalStore
方法 or 属性: function deleteRdbStore(context: Context, name: string): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: StoreConfig|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: StoreConfig
方法 or 属性: name: string;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: StoreConfig
方法 or 属性: securityLevel: SecurityLevel;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: StoreConfig
方法 or 属性: encrypt ?: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SecurityLevel|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SecurityLevel
方法 or 属性: S1 = 1|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SecurityLevel
方法 or 属性: S2 = 2|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SecurityLevel
方法 or 属性: S3 = 3|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SecurityLevel
方法 or 属性: S4 = 4|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SyncMode|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SyncMode
方法 or 属性: SYNC_MODE_PUSH = 0|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SyncMode
方法 or 属性: SYNC_MODE_PULL = 1|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SubscribeType|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: SubscribeType
方法 or 属性: SUBSCRIBE_TYPE_REMOTE = 0|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: insert(table: string, values: ValuesBucket, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: insert(table: string, values: ValuesBucket): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: batchInsert(table: string, values: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: batchInsert(table: string, values: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: update(values: ValuesBucket, predicates: RdbPredicates): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: delete(predicates: RdbPredicates, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: delete(predicates: RdbPredicates): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: delete(table: string, predicates: dataSharePredicates.DataSharePredicates): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: query(predicates: RdbPredicates, columns: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: query(predicates: RdbPredicates, columns ?: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns ?: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: querySql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: querySql(sql: string, bindArgs ?: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: executeSql(sql: string, bindArgs ?: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: beginTransaction(): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: commit(): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: rollBack(): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: backup(destName: string, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: backup(destName: string): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: restore(srcName: string, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: restore(srcName: string): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: setDistributedTables(tables: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: setDistributedTables(tables: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: obtainDistributedTableName(device: string, table: string): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\>): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: sync(mode: SyncMode, predicates: RdbPredicates): Promise\>;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: remoteQuery(device: string, table: string, predicates: RdbPredicates, columns: Array\, callback: AsyncCallback\): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: remoteQuery(device: string, table: string, predicates: RdbPredicates, columns: Array\): Promise\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbStore
方法 or 属性: off(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: constructor(name: string)|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: inDevices(devices: Array\): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: inAllDevices(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: equalTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: notEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: beginWrap(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: endWrap(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: or(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: and(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: contains(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: beginsWith(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: endsWith(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: isNull(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: isNotNull(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: like(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: glob(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: between(field: string, low: ValueType, high: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: greaterThan(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: lessThan(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: orderByAsc(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: orderByDesc(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: distinct(): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: limitAs(value: number): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: offsetAs(rowOffset: number): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: groupBy(fields: Array\): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: indexedBy(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: in(field: string, value: Array\): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: RdbPredicates
方法 or 属性: notIn(field: string, value: Array\): RdbPredicates;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: columnNames: Array\;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: columnCount: number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: rowCount: number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: rowIndex: number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isAtFirstRow: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isAtLastRow: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isEnded: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isStarted: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isClosed: boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getColumnIndex(columnName: string): number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getColumnName(columnIndex: number): string;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goTo(offset: number): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goToRow(position: number): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goToFirstRow(): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goToLastRow(): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goToNextRow(): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: goToPreviousRow(): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getBlob(columnIndex: number): Uint8Array;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getString(columnIndex: number): string;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getLong(columnIndex: number): number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: getDouble(columnIndex: number): number;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: isColumnNull(columnIndex: number): boolean;|@ohos.data.relationalStore.d.ts| +|新增|NA|模块名: ohos.data.relationalStore
类名: ResultSet
方法 or 属性: close(): void;|@ohos.data.relationalStore.d.ts| +|model有变化|类名:GetStorageOptions
model:N/A|类名:GetStorageOptions
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:GetStorageOptions
方法 or 属性:key: string;
model:N/A|类名:GetStorageOptions
方法 or 属性:key: string;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:GetStorageOptions
方法 or 属性:default?: string;
model:N/A|类名:GetStorageOptions
方法 or 属性:default?: string;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:GetStorageOptions
方法 or 属性:success?: (data: any) => void;
model:N/A|类名:GetStorageOptions
方法 or 属性:success?: (data: any) => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:GetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:N/A|类名:GetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:GetStorageOptions
方法 or 属性:complete?: () => void;
model:N/A|类名:GetStorageOptions
方法 or 属性:complete?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
model:N/A|类名:SetStorageOptions
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
方法 or 属性:key: string;
model:N/A|类名:SetStorageOptions
方法 or 属性:key: string;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
方法 or 属性:value: string;
model:N/A|类名:SetStorageOptions
方法 or 属性:value: string;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
方法 or 属性:success?: () => void;
model:N/A|类名:SetStorageOptions
方法 or 属性:success?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:N/A|类名:SetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:SetStorageOptions
方法 or 属性:complete?: () => void;
model:N/A|类名:SetStorageOptions
方法 or 属性:complete?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:ClearStorageOptions
model:N/A|类名:ClearStorageOptions
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:ClearStorageOptions
方法 or 属性:success?: () => void;
model:N/A|类名:ClearStorageOptions
方法 or 属性:success?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:ClearStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:N/A|类名:ClearStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:ClearStorageOptions
方法 or 属性:complete?: () => void;
model:N/A|类名:ClearStorageOptions
方法 or 属性:complete?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:DeleteStorageOptions
model:N/A|类名:DeleteStorageOptions
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:DeleteStorageOptions
方法 or 属性:key: string;
model:N/A|类名:DeleteStorageOptions
方法 or 属性:key: string;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:DeleteStorageOptions
方法 or 属性:success?: () => void;
model:N/A|类名:DeleteStorageOptions
方法 or 属性:success?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:DeleteStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:N/A|类名:DeleteStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:DeleteStorageOptions
方法 or 属性:complete?: () => void;
model:N/A|类名:DeleteStorageOptions
方法 or 属性:complete?: () => void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:Storage
model:N/A|类名:Storage
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:Storage
方法 or 属性:static get(options: GetStorageOptions): void;
model:N/A|类名:Storage
方法 or 属性:static get(options: GetStorageOptions): void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:Storage
方法 or 属性:static set(options: SetStorageOptions): void;
model:N/A|类名:Storage
方法 or 属性:static set(options: SetStorageOptions): void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:Storage
方法 or 属性:static clear(options?: ClearStorageOptions): void;
model:N/A|类名:Storage
方法 or 属性:static clear(options?: ClearStorageOptions): void;
model:@FAModelOnly|@system.storage.d.ts| +|model有变化|类名:Storage
方法 or 属性:static delete(options: DeleteStorageOptions): void;
model:N/A|类名:Storage
方法 or 属性:static delete(options: DeleteStorageOptions): void;
model:@FAModelOnly|@system.storage.d.ts| +|废弃版本有变化|类名:distributedData
废弃版本:N/A|类名:distributedData
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManagerConfig
废弃版本:N/A|类名:KVManagerConfig
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManagerConfig |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManagerConfig
方法 or 属性:userInfo: UserInfo;
废弃版本:N/A|类名:KVManagerConfig
方法 or 属性:userInfo: UserInfo;
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManagerConfig
方法 or 属性:bundleName: string;
废弃版本:N/A|类名:KVManagerConfig
方法 or 属性:bundleName: string;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManagerConfig|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserInfo
废弃版本:N/A|类名:UserInfo
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserInfo
方法 or 属性:userId?: string;
废弃版本:N/A|类名:UserInfo
方法 or 属性:userId?: string;
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserInfo
方法 or 属性:userType?: UserType;
废弃版本:N/A|类名:UserInfo
方法 or 属性:userType?: UserType;
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserType
废弃版本:N/A|类名:UserType
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserType
方法 or 属性:SAME_USER_ID = 0
废弃版本:N/A|类名:UserType
方法 or 属性:SAME_USER_ID = 0
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
废弃版本:N/A|类名:Constants
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_KEY_LENGTH = 1024;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_KEY_LENGTH = 1024;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_VALUE_LENGTH = 4194303;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_VALUE_LENGTH = 4194303;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_KEY_LENGTH_DEVICE = 896;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_KEY_LENGTH_DEVICE = 896;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_STORE_ID_LENGTH = 128;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_STORE_ID_LENGTH = 128;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_QUERY_LENGTH = 512000;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_QUERY_LENGTH = 512000;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
方法 or 属性:const MAX_BATCH_SIZE = 128;
废弃版本:N/A|类名:Constants
方法 or 属性:const MAX_BATCH_SIZE = 128;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
废弃版本:N/A|类名:ValueType
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:STRING = 0
废弃版本:N/A|类名:ValueType
方法 or 属性:STRING = 0
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:INTEGER = 1
废弃版本:N/A|类名:ValueType
方法 or 属性:INTEGER = 1
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:FLOAT = 2
废弃版本:N/A|类名:ValueType
方法 or 属性:FLOAT = 2
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:BYTE_ARRAY = 3
废弃版本:N/A|类名:ValueType
方法 or 属性:BYTE_ARRAY = 3
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:BOOLEAN = 4
废弃版本:N/A|类名:ValueType
方法 or 属性:BOOLEAN = 4
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
方法 or 属性:DOUBLE = 5
废弃版本:N/A|类名:ValueType
方法 or 属性:DOUBLE = 5
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Value
废弃版本:N/A|类名:Value
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Value
方法 or 属性:type: ValueType;
废弃版本:N/A|类名:Value
方法 or 属性:type: ValueType;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Value
方法 or 属性:value: Uint8Array \| string \| number \| boolean;
废弃版本:N/A|类名:Value
方法 or 属性:value: Uint8Array \| string \| number \| boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Entry
废弃版本:N/A|类名:Entry
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Entry
方法 or 属性:key: string;
废弃版本:N/A|类名:Entry
方法 or 属性:key: string;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Entry
方法 or 属性:value: Value;
废弃版本:N/A|类名:Entry
方法 or 属性:value: Value;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
废弃版本:N/A|类名:ChangeNotification
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
方法 or 属性:insertEntries: Entry[];
废弃版本:N/A|类名:ChangeNotification
方法 or 属性:insertEntries: Entry[];
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
方法 or 属性:updateEntries: Entry[];
废弃版本:N/A|类名:ChangeNotification
方法 or 属性:updateEntries: Entry[];
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
方法 or 属性:deleteEntries: Entry[];
废弃版本:N/A|类名:ChangeNotification
方法 or 属性:deleteEntries: Entry[];
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
方法 or 属性:deviceId: string;
废弃版本:N/A|类名:ChangeNotification
方法 or 属性:deviceId: string;
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SyncMode
废弃版本:N/A|类名:SyncMode
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SyncMode
方法 or 属性:PULL_ONLY = 0
废弃版本:N/A|类名:SyncMode
方法 or 属性:PULL_ONLY = 0
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SyncMode
方法 or 属性:PUSH_ONLY = 1
废弃版本:N/A|类名:SyncMode
方法 or 属性:PUSH_ONLY = 1
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SyncMode
方法 or 属性:PUSH_PULL = 2
废弃版本:N/A|类名:SyncMode
方法 or 属性:PUSH_PULL = 2
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SubscribeType
废弃版本:N/A|类名:SubscribeType
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_LOCAL = 0
废弃版本:N/A|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_LOCAL = 0
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_REMOTE = 1
废弃版本:N/A|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_REMOTE = 1
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_ALL = 2
废弃版本:N/A|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_ALL = 2
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStoreType
废弃版本:N/A|类名:KVStoreType
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStoreType
方法 or 属性:DEVICE_COLLABORATION = 0
废弃版本:N/A|类名:KVStoreType
方法 or 属性:DEVICE_COLLABORATION = 0
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStoreType
方法 or 属性:SINGLE_VERSION = 1
废弃版本:N/A|类名:KVStoreType
方法 or 属性:SINGLE_VERSION = 1
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStoreType
方法 or 属性:MULTI_VERSION = 2
废弃版本:N/A|类名:KVStoreType
方法 or 属性:MULTI_VERSION = 2
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
废弃版本:N/A|类名:SecurityLevel
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:NO_LEVEL = 0
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:NO_LEVEL = 0
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:S0 = 1
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:S0 = 1
废弃版本:9
代替接口:N/A|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:S1 = 2
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:S1 = 2
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:S2 = 3
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:S2 = 3
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:S3 = 5
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:S3 = 5
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
方法 or 属性:S4 = 6
废弃版本:N/A|类名:SecurityLevel
方法 or 属性:S4 = 6
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
废弃版本:N/A|类名:Options
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:createIfMissing?: boolean;
废弃版本:N/A|类名:Options
方法 or 属性:createIfMissing?: boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:encrypt?: boolean;
废弃版本:N/A|类名:Options
方法 or 属性:encrypt?: boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:backup?: boolean;
废弃版本:N/A|类名:Options
方法 or 属性:backup?: boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:autoSync?: boolean;
废弃版本:N/A|类名:Options
方法 or 属性:autoSync?: boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:kvStoreType?: KVStoreType;
废弃版本:N/A|类名:Options
方法 or 属性:kvStoreType?: KVStoreType;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:securityLevel?: SecurityLevel;
废弃版本:N/A|类名:Options
方法 or 属性:securityLevel?: SecurityLevel;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
方法 or 属性:schema?: Schema;
废弃版本:N/A|类名:Options
方法 or 属性:schema?: Schema;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
废弃版本:N/A|类名:Schema
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
方法 or 属性:constructor()
废弃版本:N/A|类名:Schema
方法 or 属性:constructor()
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
方法 or 属性:root: FieldNode;
废弃版本:N/A|类名:Schema
方法 or 属性:root: FieldNode;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
方法 or 属性:indexes: Array\;
废弃版本:N/A|类名:Schema
方法 or 属性:indexes: Array\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
方法 or 属性:mode: number;
废弃版本:N/A|类名:Schema
方法 or 属性:mode: number;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
方法 or 属性:skip: number;
废弃版本:N/A|类名:Schema
方法 or 属性:skip: number;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
废弃版本:N/A|类名:FieldNode
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
方法 or 属性:constructor(name: string)
废弃版本:N/A|类名:FieldNode
方法 or 属性:constructor(name: string)
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
方法 or 属性:appendChild(child: FieldNode): boolean;
废弃版本:N/A|类名:FieldNode
方法 or 属性:appendChild(child: FieldNode): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
方法 or 属性:default: string;
废弃版本:N/A|类名:FieldNode
方法 or 属性:default: string;
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
方法 or 属性:nullable: boolean;
废弃版本:N/A|类名:FieldNode
方法 or 属性:nullable: boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
方法 or 属性:type: number;
废弃版本:N/A|类名:FieldNode
方法 or 属性:type: number;
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
废弃版本:N/A|类名:KvStoreResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:getCount(): number;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:getCount(): number;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:getPosition(): number;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:getPosition(): number;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:moveToFirst(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:moveToFirst(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:moveToLast(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:moveToLast(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:moveToNext(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:moveToNext(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:moveToPrevious(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:moveToPrevious(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:move(offset: number): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:move(offset: number): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:moveToPosition(position: number): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:moveToPosition(position: number): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:isFirst(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:isFirst(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:isLast(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:isLast(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:isBeforeFirst(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:isBeforeFirst(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:isAfterLast(): boolean;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:isAfterLast(): boolean;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
方法 or 属性:getEntry(): Entry;
废弃版本:N/A|类名:KvStoreResultSet
方法 or 属性:getEntry(): Entry;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
废弃版本:N/A|类名:Query
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:constructor()
废弃版本:N/A|类名:Query
方法 or 属性:constructor()
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:reset(): Query;
废弃版本:N/A|类名:Query
方法 or 属性:reset(): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:isNull(field: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:isNull(field: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:inNumber(field: string, valueList: number[]): Query;
废弃版本:N/A|类名:Query
方法 or 属性:inNumber(field: string, valueList: number[]): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:inString(field: string, valueList: string[]): Query;
废弃版本:N/A|类名:Query
方法 or 属性:inString(field: string, valueList: string[]): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:notInNumber(field: string, valueList: number[]): Query;
废弃版本:N/A|类名:Query
方法 or 属性:notInNumber(field: string, valueList: number[]): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:notInString(field: string, valueList: string[]): Query;
废弃版本:N/A|类名:Query
方法 or 属性:notInString(field: string, valueList: string[]): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:like(field: string, value: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:like(field: string, value: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:unlike(field: string, value: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:unlike(field: string, value: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:and(): Query;
废弃版本:N/A|类名:Query
方法 or 属性:and(): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:or(): Query;
废弃版本:N/A|类名:Query
方法 or 属性:or(): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:orderByAsc(field: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:orderByAsc(field: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:orderByDesc(field: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:orderByDesc(field: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:limit(total: number, offset: number): Query;
废弃版本:N/A|类名:Query
方法 or 属性:limit(total: number, offset: number): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:isNotNull(field: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:isNotNull(field: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:beginGroup(): Query;
废弃版本:N/A|类名:Query
方法 or 属性:beginGroup(): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:endGroup(): Query;
废弃版本:N/A|类名:Query
方法 or 属性:endGroup(): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:prefixKey(prefix: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:prefixKey(prefix: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
方法 or 属性:setSuggestIndex(index: string): Query;
废弃版本:N/A|类名:Query
方法 or 属性:setSuggestIndex(index: string): Query;
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
废弃版本:N/A|类名:KVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:delete(key: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:delete(key: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:delete(key: string): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:delete(key: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:putBatch(entries: Entry[], callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:putBatch(entries: Entry[], callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:putBatch(entries: Entry[]): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:putBatch(entries: Entry[]): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:deleteBatch(keys: string[], callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:deleteBatch(keys: string[], callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:deleteBatch(keys: string[]): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:deleteBatch(keys: string[]): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:startTransaction(callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:startTransaction(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:startTransaction(): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:startTransaction(): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:commit(callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:commit(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:commit(): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:commit(): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:rollback(callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:rollback(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:rollback(): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:rollback(): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:enableSync(enabled: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:enableSync(enabled: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:enableSync(enabled: boolean): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:enableSync(enabled: boolean): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVStore
方法 or 属性:setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
方法 or 属性:setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\;
废弃版本:N/A|类名:KVStore
方法 or 属性:setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
废弃版本:N/A|类名:SingleKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:get(key: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:get(key: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:get(key: string): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:get(key: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getEntries(keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getEntries(keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getEntries(keyPrefix: string): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getEntries(keyPrefix: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getEntries(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getEntries(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getEntries(query: Query): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getEntries(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSet(keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSet(keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSet(keyPrefix: string): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSet(keyPrefix: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSet(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSet(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSet(query: Query): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSet(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSize(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSize(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getResultSize(query: Query): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getResultSize(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:removeDeviceData(deviceId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:removeDeviceData(deviceId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:removeDeviceData(deviceId: string): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:removeDeviceData(deviceId: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:off(event: 'syncComplete', syncCallback?: Callback\>): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:off(event: 'syncComplete', syncCallback?: Callback\>): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:setSyncParam(defaultAllowedDelayMs: number): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:setSyncParam(defaultAllowedDelayMs: number): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getSecurityLevel(callback: AsyncCallback\): void;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getSecurityLevel(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
方法 or 属性:getSecurityLevel(): Promise\;
废弃版本:N/A|类名:SingleKVStore
方法 or 属性:getSecurityLevel(): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
废弃版本:N/A|类名:DeviceKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, keyPrefix: string): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, keyPrefix: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getEntries(deviceId: string, query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, keyPrefix: string): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, keyPrefix: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSet(deviceId: string, query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:closeResultSet(resultSet: KvStoreResultSet): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSize(query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSize(query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSize(query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSize(query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSize(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSize(deviceId: string, query: Query, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:getResultSize(deviceId: string, query: Query): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:getResultSize(deviceId: string, query: Query): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:removeDeviceData(deviceId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:removeDeviceData(deviceId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:removeDeviceData(deviceId: string): Promise\;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:removeDeviceData(deviceId: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:on(event: 'syncComplete', syncCallback: Callback\>): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
方法 or 属性:off(event: 'syncComplete', syncCallback?: Callback\>): void;
废弃版本:N/A|类名:DeviceKVStore
方法 or 属性:off(event: 'syncComplete', syncCallback?: Callback\>): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:distributedData
方法 or 属性:function createKVManager(config: KVManagerConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:distributedData
方法 or 属性:function createKVManager(config: KVManagerConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:distributedData
方法 or 属性:function createKVManager(config: KVManagerConfig): Promise\;
废弃版本:N/A|类名:distributedData
方法 or 属性:function createKVManager(config: KVManagerConfig): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
废弃版本:N/A|类名:KVManager
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:getKVStore\(storeId: string, options: Options): Promise\;
废弃版本:N/A|类名:KVManager
方法 or 属性:getKVStore\(storeId: string, options: Options): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:getKVStore\(storeId: string, options: Options, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:getKVStore\(storeId: string, options: Options, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:closeKVStore(appId: string, storeId: string, kvStore: KVStore, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:closeKVStore(appId: string, storeId: string, kvStore: KVStore, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise\;
废弃版本:N/A|类名:KVManager
方法 or 属性:closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:deleteKVStore(appId: string, storeId: string): Promise\;
废弃版本:N/A|类名:KVManager
方法 or 属性:deleteKVStore(appId: string, storeId: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:getAllKVStoreId(appId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:getAllKVStoreId(appId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:getAllKVStoreId(appId: string): Promise\;
废弃版本:N/A|类名:KVManager
方法 or 属性:getAllKVStoreId(appId: string): Promise\;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:on(event: 'distributedDataServiceDie', deathCallback: Callback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:on(event: 'distributedDataServiceDie', deathCallback: Callback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
方法 or 属性:off(event: 'distributedDataServiceDie', deathCallback?: Callback\): void;
废弃版本:N/A|类名:KVManager
方法 or 属性:off(event: 'distributedDataServiceDie', deathCallback?: Callback\): void;
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:distributedDataObject
方法 or 属性:function createDistributedObject(source: object): DistributedObject;
废弃版本:N/A|类名:distributedDataObject
方法 or 属性:function createDistributedObject(source: object): DistributedObject;
废弃版本:9
代替接口:ohos.distributedDataObject.create |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:DistributedObject
废弃版本:N/A|类名:DistributedObject
废弃版本:9
代替接口:ohos.distributedDataObject.DataObject |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:DistributedObject
方法 or 属性:setSessionId(sessionId?: string): boolean;
废弃版本:N/A|类名:DistributedObject
方法 or 属性:setSessionId(sessionId?: string): boolean;
废弃版本:9
代替接口:ohos.distributedDataObject.DataObject.setSessionId |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:DistributedObject
方法 or 属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;
废弃版本:N/A|类名:DistributedObject
方法 or 属性:on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\ }>): void;
废弃版本:9
代替接口:ohos.distributedDataObject.DataObject.on |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:DistributedObject
方法 or 属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;
废弃版本:N/A|类名:DistributedObject
方法 or 属性:off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\ }>): void;
废弃版本:9
代替接口:ohos.distributedDataObject.DataObject.off |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:rdb
废弃版本:N/A|类名:rdb
废弃版本:9
代替接口:ohos.data.relationalStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:rdb
方法 or 属性:function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:rdb
方法 or 属性:function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.getRdbStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:rdb
方法 or 属性:function getRdbStore(context: Context, config: StoreConfig, version: number): Promise\;
废弃版本:N/A|类名:rdb
方法 or 属性:function getRdbStore(context: Context, config: StoreConfig, version: number): Promise\;
废弃版本:9
代替接口:ohos.data.relationalStore.getRdbStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:rdb
方法 or 属性:function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:rdb
方法 or 属性:function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.deleteRdbStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:rdb
方法 or 属性:function deleteRdbStore(context: Context, name: string): Promise\;
废弃版本:N/A|类名:rdb
方法 or 属性:function deleteRdbStore(context: Context, name: string): Promise\;
废弃版本:9
代替接口:ohos.data.relationalStore.deleteRdbStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:SyncMode
废弃版本:N/A|类名:SyncMode
废弃版本:9
代替接口:ohos.data.relationalStore.SyncMode |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:SyncMode
方法 or 属性:SYNC_MODE_PUSH = 0
废弃版本:N/A|类名:SyncMode
方法 or 属性:SYNC_MODE_PUSH = 0
废弃版本:9
代替接口:ohos.data.relationalStore.SyncMode.SYNC_MODE_PUSH |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:SyncMode
方法 or 属性:SYNC_MODE_PULL = 1
废弃版本:N/A|类名:SyncMode
方法 or 属性:SYNC_MODE_PULL = 1
废弃版本:9
代替接口:ohos.data.relationalStore.SyncMode.SYNC_MODE_PULL |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:SubscribeType
废弃版本:N/A|类名:SubscribeType
废弃版本:9
代替接口:ohos.data.relationalStore.SubscribeType |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_REMOTE = 0
废弃版本:N/A|类名:SubscribeType
方法 or 属性:SUBSCRIBE_TYPE_REMOTE = 0
废弃版本:9
代替接口:ohos.data.relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
废弃版本:N/A|类名:RdbStore
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:querySql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RdbStore
方法 or 属性:querySql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.querySql |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RdbStore
方法 or 属性:executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.executeSql |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.setDistributedTables |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\): Promise\;
废弃版本:N/A|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\): Promise\;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.setDistributedTables |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.obtainDistributedTableName |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string): Promise\;
废弃版本:N/A|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string): Promise\;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.obtainDistributedTableName |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
方法 or 属性:on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;
废弃版本:N/A|类名:RdbStore
方法 or 属性:on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbStore.on |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:StoreConfig
废弃版本:N/A|类名:StoreConfig
废弃版本:9
代替接口:ohos.data.relationalStore.StoreConfig |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
废弃版本:N/A|类名:RdbPredicates
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:constructor(name: string)
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:constructor(name: string)
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.constructor |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:inDevices(devices: Array\): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:inDevices(devices: Array\): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.inDevices |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:inAllDevices(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:inAllDevices(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.inAllDevices |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:equalTo(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:equalTo(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.equalTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:notEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:notEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.notEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:beginWrap(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:beginWrap(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.beginWrap |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:endWrap(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:endWrap(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.endWrap |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:or(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:or(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.or |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:and(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:and(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.and |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:contains(field: string, value: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:contains(field: string, value: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.contains |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:beginsWith(field: string, value: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:beginsWith(field: string, value: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.beginsWith |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:endsWith(field: string, value: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:endsWith(field: string, value: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.endsWith |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:isNull(field: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:isNull(field: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.isNull |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:isNotNull(field: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:isNotNull(field: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.isNotNull |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:like(field: string, value: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:like(field: string, value: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.like |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:glob(field: string, value: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:glob(field: string, value: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.glob |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:between(field: string, low: ValueType, high: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:between(field: string, low: ValueType, high: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.between |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.notBetween |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:greaterThan(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:greaterThan(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.greaterThan |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:lessThan(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:lessThan(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.lessThan |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.greaterThanOrEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.lessThanOrEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:orderByAsc(field: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:orderByAsc(field: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.orderByAsc |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:orderByDesc(field: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:orderByDesc(field: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.orderByDesc |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:distinct(): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:distinct(): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.distinct |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:limitAs(value: number): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:limitAs(value: number): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.limitAs |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:offsetAs(rowOffset: number): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:offsetAs(rowOffset: number): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.offsetAs |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:groupBy(fields: Array\): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:groupBy(fields: Array\): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.groupBy |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:indexedBy(field: string): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:indexedBy(field: string): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.indexedBy |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:in(field: string, value: Array\): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:in(field: string, value: Array\): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.in |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
方法 or 属性:notIn(field: string, value: Array\): RdbPredicates;
废弃版本:N/A|类名:RdbPredicates
方法 or 属性:notIn(field: string, value: Array\): RdbPredicates;
废弃版本:9
代替接口:ohos.data.relationalStore.RdbPredicates.notIn |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:storage
废弃版本:N/A|类名:storage
废弃版本:9
代替接口:ohos.preferences.preferences |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:storage
方法 or 属性:function getStorageSync(path: string): Storage;
废弃版本:N/A|类名:storage
方法 or 属性:function getStorageSync(path: string): Storage;
废弃版本:9
代替接口:ohos.preferences.preferences.getPreferences |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:storage
方法 or 属性:function deleteStorageSync(path: string): void;
废弃版本:N/A|类名:storage
方法 or 属性:function deleteStorageSync(path: string): void;
废弃版本:9
代替接口:ohos.preferences.preferences.deletePreferences |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:storage
方法 or 属性:function removeStorageFromCacheSync(path: string): void;
废弃版本:N/A|类名:storage
方法 or 属性:function removeStorageFromCacheSync(path: string): void;
废弃版本:9
代替接口:ohos.preferences.preferences.removePreferencesFromCache |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
废弃版本:N/A|类名:Storage
废弃版本:9
代替接口:ohos.preferences.preferences |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:getSync(key: string, defValue: ValueType): ValueType;
废弃版本:N/A|类名:Storage
方法 or 属性:getSync(key: string, defValue: ValueType): ValueType;
废弃版本:9
代替接口:ohos.preferences.preferences.get |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:hasSync(key: string): boolean;
废弃版本:N/A|类名:Storage
方法 or 属性:hasSync(key: string): boolean;
废弃版本:9
代替接口:ohos.preferences.preferences.has |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:putSync(key: string, value: ValueType): void;
废弃版本:N/A|类名:Storage
方法 or 属性:putSync(key: string, value: ValueType): void;
废弃版本:9
代替接口:ohos.preferences.preferences.put |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:deleteSync(key: string): void;
废弃版本:N/A|类名:Storage
方法 or 属性:deleteSync(key: string): void;
废弃版本:9
代替接口:ohos.preferences.preferences.delete |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:clearSync(): void;
废弃版本:N/A|类名:Storage
方法 or 属性:clearSync(): void;
废弃版本:9
代替接口:ohos.preferences.preferences.clear |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:flushSync(): void;
废弃版本:N/A|类名:Storage
方法 or 属性:flushSync(): void;
废弃版本:9
代替接口:ohos.preferences.preferences.flush |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:on(type: 'change', callback: Callback\): void;
废弃版本:N/A|类名:Storage
方法 or 属性:on(type: 'change', callback: Callback\): void;
废弃版本:9
代替接口:ohos.preferences.preferences.on |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:off(type: 'change', callback: Callback\): void;
废弃版本:N/A|类名:Storage
方法 or 属性:off(type: 'change', callback: Callback\): void;
废弃版本:9
代替接口:ohos.preferences.preferences.off |@ohos.data.storage.d.ts| +|废弃版本有变化|类名:StorageObserver
废弃版本:N/A|类名:StorageObserver
废弃版本:9
代替接口:N/A|@ohos.data.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
废弃版本:N/A|类名:GetStorageOptions
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
方法 or 属性:key: string;
废弃版本:N/A|类名:GetStorageOptions
方法 or 属性:key: string;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
方法 or 属性:default?: string;
废弃版本:N/A|类名:GetStorageOptions
方法 or 属性:default?: string;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
方法 or 属性:success?: (data: any) => void;
废弃版本:N/A|类名:GetStorageOptions
方法 or 属性:success?: (data: any) => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:GetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:GetStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:GetStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
废弃版本:N/A|类名:SetStorageOptions
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
方法 or 属性:key: string;
废弃版本:N/A|类名:SetStorageOptions
方法 or 属性:key: string;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
方法 or 属性:value: string;
废弃版本:N/A|类名:SetStorageOptions
方法 or 属性:value: string;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:SetStorageOptions
方法 or 属性:success?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:SetStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:SetStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:SetStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:ClearStorageOptions
废弃版本:N/A|类名:ClearStorageOptions
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:ClearStorageOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:ClearStorageOptions
方法 or 属性:success?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:ClearStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:ClearStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:ClearStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:ClearStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:DeleteStorageOptions
废弃版本:N/A|类名:DeleteStorageOptions
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:DeleteStorageOptions
方法 or 属性:key: string;
废弃版本:N/A|类名:DeleteStorageOptions
方法 or 属性:key: string;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:DeleteStorageOptions
方法 or 属性:success?: () => void;
废弃版本:N/A|类名:DeleteStorageOptions
方法 or 属性:success?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:DeleteStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:N/A|类名:DeleteStorageOptions
方法 or 属性:fail?: (data: string, code: number) => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:DeleteStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:DeleteStorageOptions
方法 or 属性:complete?: () => void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:Storage
废弃版本:N/A|类名:Storage
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:static get(options: GetStorageOptions): void;
废弃版本:N/A|类名:Storage
方法 or 属性:static get(options: GetStorageOptions): void;
废弃版本:6
代替接口:ohos.preferences.preferences.get |@system.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:static set(options: SetStorageOptions): void;
废弃版本:N/A|类名:Storage
方法 or 属性:static set(options: SetStorageOptions): void;
废弃版本:6
代替接口:N/A|@system.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:static clear(options?: ClearStorageOptions): void;
废弃版本:N/A|类名:Storage
方法 or 属性:static clear(options?: ClearStorageOptions): void;
废弃版本:6
代替接口:ohos.preferences.preferences.clear |@system.storage.d.ts| +|废弃版本有变化|类名:Storage
方法 or 属性:static delete(options: DeleteStorageOptions): void;
废弃版本:N/A|类名:Storage
方法 or 属性:static delete(options: DeleteStorageOptions): void;
废弃版本:6
代替接口:ohos.preferences.preferences.delete |@system.storage.d.ts| +|废弃版本有变化|类名:ResultSet
废弃版本:N/A|类名:ResultSet
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:columnNames: Array\;
废弃版本:N/A|类名:ResultSet
方法 or 属性:columnNames: Array\;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.columnNames |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:columnCount: number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:columnCount: number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.columnCount |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:rowCount: number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:rowCount: number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.rowCount |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:rowIndex: number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:rowIndex: number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.rowIndex |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isAtFirstRow: boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isAtFirstRow: boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isAtFirstRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isAtLastRow: boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isAtLastRow: boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isAtLastRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isEnded: boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isEnded: boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isEnded |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isStarted: boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isStarted: boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isStarted |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isClosed: boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isClosed: boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isClosed |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getColumnIndex(columnName: string): number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getColumnIndex(columnName: string): number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getColumnIndex |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getColumnName(columnIndex: number): string;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getColumnName(columnIndex: number): string;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getColumnName |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goTo(offset: number): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goTo(offset: number): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goTo |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goToRow(position: number): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goToRow(position: number): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goToRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goToFirstRow(): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goToFirstRow(): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goToFirstRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goToLastRow(): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goToLastRow(): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goToLastRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goToNextRow(): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goToNextRow(): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goToNextRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:goToPreviousRow(): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:goToPreviousRow(): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.goToPreviousRow |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getBlob(columnIndex: number): Uint8Array;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getBlob(columnIndex: number): Uint8Array;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getBlob |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getString(columnIndex: number): string;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getString(columnIndex: number): string;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getString |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getLong(columnIndex: number): number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getLong(columnIndex: number): number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getLong |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:getDouble(columnIndex: number): number;
废弃版本:N/A|类名:ResultSet
方法 or 属性:getDouble(columnIndex: number): number;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.getDouble |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:isColumnNull(columnIndex: number): boolean;
废弃版本:N/A|类名:ResultSet
方法 or 属性:isColumnNull(columnIndex: number): boolean;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.isColumnNull |resultSet.d.ts| +|废弃版本有变化|类名:ResultSet
方法 or 属性:close(): void;
废弃版本:N/A|类名:ResultSet
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.data.relationalStore.ResultSet.close |resultSet.d.ts| +|起始版本有变化|类名:RdbStore
方法 or 属性:executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
起始版本:7|类名:RdbStore
方法 or 属性:executeSql(sql: string, bindArgs: Array\, callback: AsyncCallback\): void;
起始版本:8|@ohos.data.rdb.d.ts| +|新增(错误码)|NA|类名:RdbPredicates
方法 or 属性:isNotNull(field: string): RdbPredicates;
错误码内容: 401|@ohos.data.rdb.d.ts| +|新增(权限)|类名:DistributedObject
方法 or 属性:setSessionId(sessionId?: string): boolean;
权限:N/A|类名:DistributedObject
方法 or 属性:setSessionId(sessionId?: string): boolean;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.distributedDataObject.d.ts| +|新增(权限)|类名:SubscribeType
权限:N/A|类名:SubscribeType
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|新增(权限)|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\, callback: AsyncCallback\): void;
权限:N/A|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|新增(权限)|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\): Promise\;
权限:N/A|类名:RdbStore
方法 or 属性:setDistributedTables(tables: Array\): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|新增(权限)|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;
权限:N/A|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\): void;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|新增(权限)|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string): Promise\;
权限:N/A|类名:RdbStore
方法 or 属性:obtainDistributedTableName(device: string, table: string): Promise\;
权限:ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts| +|函数有变化|类名:KVStore
方法 or 属性:on(event: 'dataChange', type: SubscribeType, observer: Callback\): void;
|类名:KVStore
方法 or 属性:on(event: 'dataChange', type: SubscribeType, listener: Callback\): void;
|@ohos.data.distributedData.d.ts| +|函数有变化|类名:KVStore
方法 or 属性:off(event:'dataChange', observer?: Callback\): void;
|类名:KVStore
方法 or 属性:off(event: 'dataChange', listener?: Callback\): void;
|@ohos.data.distributedData.d.ts| +|函数有变化|类名:SingleKVStore
方法 or 属性:sync(deviceIdList: string[], mode: SyncMode, allowedDelayMs?: number): void;
|类名:SingleKVStore
方法 or 属性:sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;
|@ohos.data.distributedData.d.ts| +|函数有变化|类名:DeviceKVStore
方法 or 属性:sync(deviceIdList: string[], mode: SyncMode, allowedDelayMs?: number): void;
|类名:DeviceKVStore
方法 or 属性:sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;
|@ohos.data.distributedData.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:insert(name: string, values: ValuesBucket, callback: AsyncCallback\): void;
|类名:RdbStore
方法 or 属性:insert(table: string, values: ValuesBucket, callback: AsyncCallback\): void;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:insert(name: string, values: ValuesBucket): Promise\;
|类名:RdbStore
方法 or 属性:insert(table: string, values: ValuesBucket): Promise\;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:update(values: ValuesBucket, rdbPredicates: RdbPredicates, callback: AsyncCallback\): void;
|类名:RdbStore
方法 or 属性:update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\): void;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:update(values: ValuesBucket, rdbPredicates: RdbPredicates): Promise\;
|类名:RdbStore
方法 or 属性:update(values: ValuesBucket, predicates: RdbPredicates): Promise\;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:delete(rdbPredicates: RdbPredicates, callback: AsyncCallback\): void;
|类名:RdbStore
方法 or 属性:delete(predicates: RdbPredicates, callback: AsyncCallback\): void;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:delete(rdbPredicates: RdbPredicates): Promise\;
|类名:RdbStore
方法 or 属性:delete(predicates: RdbPredicates): Promise\;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:query(rdbPredicates: RdbPredicates, columns: Array\, callback: AsyncCallback\): void;
|类名:RdbStore
方法 or 属性:query(predicates: RdbPredicates, columns: Array\, callback: AsyncCallback\): void;
|@ohos.data.rdb.d.ts| +|函数有变化|类名:RdbStore
方法 or 属性:query(rdbPredicates: RdbPredicates, columns?: Array\): Promise\;
|类名:RdbStore
方法 or 属性:query(predicates: RdbPredicates, columns ?: Array\): Promise\;
|@ohos.data.rdb.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-hardware.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-hardware.md new file mode 100644 index 0000000000000000000000000000000000000000..e56e7b0c8a589159dc450691fe49f6eb3ea91f8e --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-distributed-hardware.md @@ -0,0 +1,47 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: DeviceInfo
方法 or 属性:range: number;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceInfo
方法or属性:range: number;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: PublishInfo|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:PublishInfo
方法or属性:|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: PublishInfo
方法 or 属性:publishId: number;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:PublishInfo
方法or属性:publishId: number;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: PublishInfo
方法 or 属性:mode: DiscoverMode;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:PublishInfo
方法or属性:mode: DiscoverMode;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: PublishInfo
方法 or 属性:freq: ExchangeFreq;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:PublishInfo
方法or属性:freq: ExchangeFreq;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|模块名: ohos.distributedHardware.deviceManager
类名: PublishInfo
方法 or 属性:ranging : boolean;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:PublishInfo
方法or属性:ranging : boolean;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:startDeviceDiscovery(subscribeInfo: SubscribeInfo, filterOptions?: string): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:publishDeviceDiscovery(publishInfo: PublishInfo): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:unPublishDeviceDiscovery(publishId: number): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:setUserOperation(operateAction: number, params: string): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:on(type: 'uiStateChange', callback: Callback\<{ param: string}>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:off(type: 'uiStateChange', callback?: Callback\<{ param: string}>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:on(type: 'publishSuccess', callback: Callback\<{ publishId: number }>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:off(type: 'publishSuccess', callback?: Callback\<{ publishId: number }>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:on(type: 'publishFail', callback: Callback\<{ publishId: number, reason: number }>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|新增|NA|类名:DeviceManager
方法or属性:off(type: 'publishFail', callback?: Callback\<{ publishId: number, reason: number }>): void;|@ohos.distributedHardware.deviceManager.d.ts| +|访问级别有变化|类名:DeviceType
访问级别:公开API|类名:DeviceType
访问级别:系统API|@ohos.distributedHardware.deviceManager.d.ts| +|起始版本有变化|类名:DeviceManager
方法 or 属性:startDeviceDiscovery(subscribeInfo: SubscribeInfo): void;
起始版本:N/A|类名:DeviceManager
方法 or 属性:startDeviceDiscovery(subscribeInfo: SubscribeInfo): void;
起始版本:8|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:deviceManager
方法 or 属性:function createDeviceManager(bundleName: string, callback: AsyncCallback\): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:release(): void;
错误码内容: 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getTrustedDeviceListSync(): Array\;
错误码内容: 401, 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getTrustedDeviceList(callback:AsyncCallback\>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getTrustedDeviceList(): Promise\>;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getLocalDeviceInfoSync(): DeviceInfo;
错误码内容: 401, 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getLocalDeviceInfo(callback:AsyncCallback\): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:getLocalDeviceInfo(): Promise\;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:startDeviceDiscovery(subscribeInfo: SubscribeInfo): void;
错误码内容: 401, 201, 11600104, 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:stopDeviceDiscovery(subscribeId: number): void;
错误码内容: 401, 201, 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:unAuthenticateDevice(deviceInfo: DeviceInfo): void
错误码内容: 401, 201, 11600101|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:verifyAuthInfo(authInfo: AuthInfo, callback: AsyncCallback\<{deviceId: string, level: number}>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:on(type: 'deviceStateChange', callback: Callback\<{ action: DeviceStateChangeAction, device: DeviceInfo }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:off(type: 'deviceStateChange', callback?: Callback\<{ action: DeviceStateChangeAction, device: DeviceInfo }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:on(type: 'deviceFound', callback: Callback\<{ subscribeId: number, device: DeviceInfo }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:off(type: 'deviceFound', callback?: Callback\<{ subscribeId: number, device: DeviceInfo }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:on(type: 'discoverFail', callback: Callback\<{ subscribeId: number, reason: number }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:off(type: 'discoverFail', callback?: Callback\<{ subscribeId: number, reason: number }>): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:on(type: 'serviceDie', callback: () => void): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|新增(错误码)|NA|类名:DeviceManager
方法 or 属性:off(type: 'serviceDie', callback?: () => void): void;
错误码内容: 401|@ohos.distributedHardware.deviceManager.d.ts| +|函数有变化|类名:DeviceManager
方法 or 属性:authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback\<{deviceId: string, pinTone ?: number}>): void;
|类名:DeviceManager
方法 or 属性:authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback\<{deviceId: string, pinToken ?: number}>): void;
|@ohos.distributedHardware.deviceManager.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-file-management.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-file-management.md new file mode 100644 index 0000000000000000000000000000000000000000..0818a0f93bf368f73b2cf23c0072425f8b9de551 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-file-management.md @@ -0,0 +1,577 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.file.environment
类名: Environment|@ohos.file.environment.d.ts| +|新增|NA|模块名: ohos.file.environment
类名: Environment
方法 or 属性: function getStorageDataDir(): Promise\;|@ohos.file.environment.d.ts| +|新增|NA|模块名: ohos.file.environment
类名: Environment
方法 or 属性: function getStorageDataDir(callback: AsyncCallback\): void;|@ohos.file.environment.d.ts| +|新增|NA|模块名: ohos.file.environment
类名: Environment
方法 or 属性: function getUserDataDir(): Promise\;|@ohos.file.environment.d.ts| +|新增|NA|模块名: ohos.file.environment
类名: Environment
方法 or 属性: function getUserDataDir(callback: AsyncCallback\): void;|@ohos.file.environment.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: fileAccess|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: fileAccess
方法 or 属性: function getFileAccessAbilityInfo(callback: AsyncCallback\>): void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: fileAccess
方法 or 属性: function getFileAccessAbilityInfo(): Promise\>;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: fileAccess
方法 or 属性: function createFileAccessHelper(context: Context): FileAccessHelper;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: fileAccess
方法 or 属性: function createFileAccessHelper(context: Context, wants: Array\): FileAccessHelper;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: uri: string;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: fileName: string;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: mode: number;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: size: number;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: mtime: number;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: mimeType: string;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: listFile(filter?: Filter): FileIterator;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileInfo
方法 or 属性: scanFile(filter?: Filter): FileIterator;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileIterator|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileIterator
方法 or 属性: next(): {value: FileInfo, done: boolean}|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: deviceType: number;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: uri: string;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: displayName: string;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: deviceFlags: number;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: listFile(filter?: Filter): FileIterator;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootInfo
方法 or 属性: scanFile(filter?: Filter): FileIterator;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootIterator|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: RootIterator
方法 or 属性: next(): {value: RootInfo, done: boolean}|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: OPENFLAGS|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: OPENFLAGS
方法 or 属性: READ = 0o0|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: OPENFLAGS
方法 or 属性: WRITE = 0o1|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: OPENFLAGS
方法 or 属性: WRITE_READ = 0o2|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: openFile(uri: string, flags: OPENFLAGS) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: openFile(uri: string, flags: OPENFLAGS, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: createFile(uri: string, displayName: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: createFile(uri: string, displayName: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: mkDir(parentUri: string, displayName: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: mkDir(parentUri: string, displayName: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: delete(uri: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: delete(uri: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: move(sourceFile: string, destFile: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: move(sourceFile: string, destFile: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: rename(uri: string, displayName: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: rename(uri: string, displayName: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: access(sourceFileUri: string) : Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: access(sourceFileUri: string, callback: AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: getRoots(): Promise\;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileAccess
类名: FileAccessHelper
方法 or 属性: getRoots(callback:AsyncCallback\) : void;|@ohos.file.fileAccess.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: fileExtensionInfo|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_LOCAL_DISK = 1|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_SHARED_DISK|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_SHARED_TERMINAL|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_NETWORK_NEIGHBORHOODS|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_EXTERNAL_MTP|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_EXTERNAL_USB|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceType
方法 or 属性: DEVICE_EXTERNAL_CLOUD|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceFlag|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceFlag
方法 or 属性: const SUPPORTS_READ = 0b1;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DeviceFlag
方法 or 属性: const SUPPORTS_WRITE = 0b10;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DocumentFlag|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DocumentFlag
方法 or 属性: const REPRESENTS_FILE = 0b1;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DocumentFlag
方法 or 属性: const REPRESENTS_DIR = 0b10;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DocumentFlag
方法 or 属性: const SUPPORTS_READ = 0b100;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileExtensionInfo
类名: DocumentFlag
方法 or 属性: const SUPPORTS_WRITE = 0b1000;|@ohos.file.fileExtensionInfo.d.ts| +|新增|NA|模块名: ohos.file.fileuri
类名: fileUri|@ohos.file.fileuri.d.ts| +|新增|NA|模块名: ohos.file.fileuri
类名: fileUri
方法 or 属性: function getUriFromPath(path: string): string;|@ohos.file.fileuri.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const READ_ONLY = 0o0;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const WRITE_ONLY = 0o1;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const READ_WRITE = 0o2;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const CREATE = 0o100;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const TRUNC = 0o1000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const APPEND = 0o2000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const NONBLOCK = 0o4000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const DIR = 0o200000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const NOFOLLOW = 0o400000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: OpenMode
方法 or 属性: const SYNC = 0o4010000;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function access(path: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function access(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function accessSync(path: string): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function close(file: number \| File): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function close(file: number \| File, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function closeSync(fd: number \| File): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function copyFile(src: string \| number, dest: string \| number, mode?: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function copyFile(src: string \| number, dest: string \| number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function copyFile(src: string \| number, dest: string \| number, mode: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function copyFileSync(src: string \| number, dest: string \| number, mode?: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function createStream(path: string, mode: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function createStream(path: string, mode: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function createStreamSync(path: string, mode: string): Stream;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdatasync(fd: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdatasync(fd: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdatasyncSync(fd: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdopenStream(fd: number, mode: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdopenStream(fd: number, mode: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fdopenStreamSync(fd: number, mode: string): Stream;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fsync(fd: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fsync(fd: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function fsyncSync(fd: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, options?: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFile(path: string, options: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function listFileSync(path: string, options?: {
recursion?: boolean;
listNum?: number;
filter?: Filter;
}): string[];|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function lstat(path: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function lstat(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function lstatSync(path: string): Stat;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdir(path: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdir(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdirSync(path: string): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdtemp(prefix: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdtemp(prefix: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function mkdtempSync(prefix: string): string;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, mode?: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFile(src: string, dest: string, mode: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function moveFileSync(src: string, dest: string, mode?: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function open(path: string, mode?: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function open(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function open(path: string, mode: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function openSync(path: string, mode?: number): File;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function read(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function read(fd: number, buffer: ArrayBuffer, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function read(fd: number, buffer: ArrayBuffer, options: {
offset?: number;
length?: number;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function readSync(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
}): number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function readText(filePath: string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function readText(filePath: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function readText(filePath: string, options: {
offset?: number;
length?: number;
encoding?: string;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function readTextSync(filePath: string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): string;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function rename(oldPath: string, newPath: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function rename(oldPath: string, newPath: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function renameSync(oldPath: string, newPath: string): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function rmdir(path: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function rmdir(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function rmdirSync(path: string): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function stat(file: string \| number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function stat(file: string \| number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function statSync(file: string \| number): Stat;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function symlink(target: string, srcPath: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function symlink(target: string, srcPath: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function symlinkSync(target: string, srcPath: string): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function truncate(file: string \| number, len?: number): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function truncate(file: string \| number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function truncate(file: string \| number, len: number, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function truncateSync(file: string \| number, len?: number): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function unlink(path: string): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function unlink(path: string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function unlinkSync(path: string): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function write(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function write(fd: number, buffer: ArrayBuffer \| string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function write(fd: number, buffer: ArrayBuffer \| string, options: {
offset?: number;
length?: number;
encoding?: string;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: fileIo
方法 or 属性: function writeSync(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: readonly fd: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(exclusive?: boolean): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: lock(exclusive: boolean, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: tryLock(exclusive?: boolean): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: File
方法 or 属性: unlock(): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly ino: bigint;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly mode: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly uid: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly gid: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly size: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly atime: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly mtime: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: readonly ctime: number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isBlockDevice(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isCharacterDevice(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isDirectory(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isFIFO(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isFile(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isSocket(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stat
方法 or 属性: isSymbolicLink(): boolean;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: close(): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: close(callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: closeSync(): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: flush(): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: flush(callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: flushSync(): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: write(buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: write(buffer: ArrayBuffer \| string, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: write(buffer: ArrayBuffer \| string, options: {
offset?: number;
length?: number;
encoding?: string;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: writeSync(buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
encoding?: string;
}): number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: read(buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
}): Promise\;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: read(buffer: ArrayBuffer, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: read(buffer: ArrayBuffer, options: {
offset?: number;
length?: number;
}, callback: AsyncCallback\): void;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.fs
类名: Stream
方法 or 属性: readSync(buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
}): number;|@ohos.file.fs.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash
方法 or 属性: function hash(path: string, algorithm: string): Promise\;|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.hash
类名: hash
方法 or 属性: function hash(path: string, algorithm: string, callback: AsyncCallback\): void;|@ohos.file.hash.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: picker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: IMAGE_TYPE = "image/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: VIDEO_TYPE = "video/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewMIMETypes
方法 or 属性: IMAGE_VIDEO_TYPE = "*/*"|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions
方法 or 属性: MIMEType?: PhotoViewMIMETypes;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectOptions
方法 or 属性: maxSelectNumber?: number;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult
方法 or 属性: photoUris: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSelectResult
方法 or 属性: isOriginalPhoto: boolean;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(option?: PhotoSelectOptions) : Promise\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(option: PhotoSelectOptions, callback: AsyncCallback\) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: select(callback: AsyncCallback\) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(option?: PhotoSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(option: PhotoSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: PhotoViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(option?: DocumentSelectOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(option: DocumentSelectOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: select(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(option?: DocumentSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(option: DocumentSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: DocumentViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSelectOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSaveOptions|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioSaveOptions
方法 or 属性: newFileNames?: Array\;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(option?: AudioSelectOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(option: AudioSelectOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: select(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(option?: AudioSaveOptions) : Promise\>;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(option: AudioSaveOptions, callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.picker
类名: AudioViewPicker
方法 or 属性: save(callback: AsyncCallback\>) : void;|@ohos.file.picker.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性: type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性: type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性: type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性: type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: DataLevel
方法 or 属性: type DataLevel = 's0'\|'s1'\|'s2'\|'s3'\|'s4';|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function setSecurityLabel(path: string, type: DataLevel): Promise\;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function setSecurityLabel(path: string, type: DataLevel, callback: AsyncCallback\): void;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function setSecurityLabelSync(path: string, type: DataLevel): void;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function getSecurityLabel(path: string): Promise\;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function getSecurityLabel(path: string, callback: AsyncCallback\): void;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.securityLabel
类名: securityLabel
方法 or 属性: function getSecurityLabelSync(path: string): string;|@ohos.file.securityLabel.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性: function getFreeSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性: function getFreeSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性: function getTotalSize(path: string): Promise\;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.statvfs
类名: statfs
方法 or 属性: function getTotalSize(path: string, callback: AsyncCallback\): void;|@ohos.file.statvfs.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSizeOfVolume(volumeUuid: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSizeOfVolume(volumeUuid: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: appSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: cacheSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: BundleStats
方法 or 属性: dataSize: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getBundleStats(packageName: string, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getBundleStats(packageName: string): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getCurrentBundleStats(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getCurrentBundleStats(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getSystemSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getSystemSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: total: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: audio: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: video: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: image: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: file: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: StorageStats
方法 or 属性: app: number;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(userId: number): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getUserStorageStats(userId: number, callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getTotalSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSize(callback: AsyncCallback\): void;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.storageStatistics
类名: storageStatistics
方法 or 属性: function getFreeSize(): Promise\;|@ohos.file.storageStatistics.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: id: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: uuid: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: diskId: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: description: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: removable: boolean;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: state: number;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: Volume
方法 or 属性: path: string;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getAllVolumes(callback: AsyncCallback\>): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getAllVolumes(): Promise\>;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function mount(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function mount(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function unmount(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function unmount(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeByUuid(uuid: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeByUuid(uuid: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeById(volumeId: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function getVolumeById(volumeId: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function setVolumeDescription(uuid: string, description: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function setVolumeDescription(uuid: string, description: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function format(volumeId: string, fsType: string, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function format(volumeId: string, fsType: string): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function partition(diskId: string, type: number, callback: AsyncCallback\): void;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.file.volumeManager
类名: volumeManager
方法 or 属性: function partition(diskId: string, type: number): Promise\;|@ohos.file.volumeManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: userFileManager|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ChangeEvent
方法 or 属性: type ChangeEvent = 'deviceChange' \| 'albumChange' \| 'imageChange' \| 'audioChange' \| 'videoChange' \| 'remoteFileChange';|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: userFileManager
方法 or 属性: function getUserFileMgr(context: Context): UserFileManager;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileType|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileType
方法 or 属性: IMAGE = 1|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileType
方法 or 属性: VIDEO|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileType
方法 or 属性: AUDIO|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: readonly uri: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: readonly fileType: FileType;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: displayName: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: get(member: string): MemberType;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: set(member: string, value: string): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: commitModify(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: commitModify(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: open(mode: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: open(mode: string): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: close(fd: number, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: close(fd: number): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: getThumbnail(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: getThumbnail(size: image.Size, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: getThumbnail(size?: image.Size): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: favorite(isFavorite: boolean, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法 or 属性: favorite(isFavorite: boolean): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: TITLE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: ARTIST|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: AUDIOALBUM|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: DURATION|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法 or 属性: FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: TITLE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: DURATION|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: WIDTH|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: HEIGHT|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: DATE_TAKEN|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: ORIENTATION|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法 or 属性: FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法 or 属性: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法 or 属性: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法 or 属性: ALBUM_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法 or 属性: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法 or 属性: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchOptions|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchOptions
方法 or 属性: fetchColumns: Array\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchOptions
方法 or 属性: predicates: dataSharePredicates.DataSharePredicates;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumFetchOptions|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AlbumFetchOptions
方法 or 属性: predicates: dataSharePredicates.DataSharePredicates;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getCount(): number;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: isAfterLast(): boolean;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: close(): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getFirstObject(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getFirstObject(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getNextObject(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getNextObject(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getLastObject(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getLastObject(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getPositionObject(index: number, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法 or 属性: getPositionObject(index: number): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: albumName: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: readonly albumUri: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: readonly dateModified: number;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: readonly count: number;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: readonly coverUri: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: getPhotoAssets(options: FetchOptions, callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法 or 属性: getPhotoAssets(options: FetchOptions): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: Album|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: Album
方法 or 属性: commitModify(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: Album
方法 or 属性: commitModify(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPhotoAssets(options: FetchOptions, callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPhotoAssets(options: FetchOptions): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: createPhotoAsset(displayName: string, albumUri: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: createPhotoAsset(displayName: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: createPhotoAsset(displayName: string, albumUri?: string): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPhotoAlbums(options: AlbumFetchOptions, callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPhotoAlbums(options: AlbumFetchOptions): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPrivateAlbum(type: PrivateAlbumType, callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getPrivateAlbum(type: PrivateAlbumType): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getAudioAssets(options: FetchOptions, callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getAudioAssets(options: FetchOptions): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: delete(uri: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: delete(uri: string): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: on(type: ChangeEvent, callback: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: off(type: ChangeEvent, callback?: Callback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getActivePeers(callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getActivePeers(): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getAllPeers(callback: AsyncCallback\>): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: getAllPeers(): Promise\>;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: release(callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法 or 属性: release(): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PeerInfo|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法 or 属性: readonly deviceName: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法 or 属性: readonly networkId: string;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法 or 属性: readonly isOnline: boolean;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType
方法 or 属性: TYPE_FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType
方法 or 属性: TYPE_TRASH|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法 or 属性: delete(uri: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法 or 属性: delete(uri: string): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法 or 属性: recover(uri: string, callback: AsyncCallback\): void;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法 or 属性: recover(uri: string): Promise\;|@ohos.filemanagement.userFileManager.d.ts| +|新增|NA|模块名: ohos.fileshare
类名: fileShare|@ohos.fileshare.d.ts| +|新增|NA|模块名: ohos.fileshare
类名: fileShare
方法 or 属性: function grantUriPermission(uri: string, bundleName: string, flag: wantConstant.Flags, callback: AsyncCallback\): void;|@ohos.fileshare.d.ts| +|新增|NA|模块名: ohos.fileshare
类名: fileShare
方法 or 属性: function grantUriPermission(uri: string, bundleName: string, flag: wantConstant.Flags): Promise\;|@ohos.fileshare.d.ts| +|删除|模块名: ohos.environment
类名: Environment|NA|@ohos.environment.d.ts| +|删除|模块名: ohos.environment
类名: Environment
方法 or 属性:function getStorageDataDir(callback: AsyncCallback\): void;|NA|@ohos.environment.d.ts| +|删除|模块名: ohos.environment
类名: Environment
方法 or 属性:function getStorageDataDir(): Promise\;|NA|@ohos.environment.d.ts| +|删除|模块名: ohos.environment
类名: Environment
方法 or 属性:function getUserDataDir(callback: AsyncCallback\): void;|NA|@ohos.environment.d.ts| +|删除|模块名: ohos.environment
类名: Environment
方法 or 属性:function getUserDataDir(): Promise\;|NA|@ohos.environment.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getTotalSizeOfVolume(volumeUuid: string): Promise\;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSizeOfVolume(volumeUuid: string, callback: AsyncCallback\): void;|NA|@ohos.storageStatistics.d.ts| +|删除|模块名: ohos.storageStatistics
类名: storageStatistics
方法 or 属性:function getFreeSizeOfVolume(volumeUuid: string): Promise\;|NA|@ohos.storageStatistics.d.ts| +|废弃版本有变化|类名:document
方法 or 属性:function choose(types?: string[]): Promise\;
废弃版本:N/A|类名:document
方法 or 属性:function choose(types?: string[]): Promise\;
废弃版本:9
代替接口:N/A|@ohos.document.d.ts| +|废弃版本有变化|类名:document
方法 or 属性:function choose(callback: AsyncCallback\): void;
废弃版本:N/A|类名:document
方法 or 属性:function choose(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.document.d.ts| +|废弃版本有变化|类名:document
方法 or 属性:function choose(types: string[], callback: AsyncCallback\): void;
废弃版本:N/A|类名:document
方法 or 属性:function choose(types: string[], callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.document.d.ts| +|废弃版本有变化|类名:document
方法 or 属性:function show(uri: string, type: string): Promise\;
废弃版本:N/A|类名:document
方法 or 属性:function show(uri: string, type: string): Promise\;
废弃版本:9
代替接口:N/A|@ohos.document.d.ts| +|废弃版本有变化|类名:document
方法 or 属性:function show(uri: string, type: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:document
方法 or 属性:function show(uri: string, type: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.document.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function access(path: string, mode?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function access(path: string, mode?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.access |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function access(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function access(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.access |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function access(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function access(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.access |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function accessSync(path: string, mode?: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function accessSync(path: string, mode?: number): void;
废弃版本:9
代替接口:ohos.file.fs.accessSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function close(fd: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function close(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.close |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function close(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function close(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.close |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function closeSync(fd: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function closeSync(fd: number): void;
废弃版本:9
代替接口:ohos.file.fs.closeSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, mode?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, mode?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.copyFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.copyFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function copyFile(src: string \| number, dest: string \| number, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.copyFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function copyFileSync(src: string \| number, dest: string \| number, mode?: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function copyFileSync(src: string \| number, dest: string \| number, mode?: number): void;
废弃版本:9
代替接口:ohos.file.fs.copyFileSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function createStream(path: string, mode: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function createStream(path: string, mode: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.createStream |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function createStream(path: string, mode: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function createStream(path: string, mode: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.createStream |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function createStreamSync(path: string, mode: string): Stream;
废弃版本:N/A|类名:fileIO
方法 or 属性:function createStreamSync(path: string, mode: string): Stream;
废弃版本:9
代替接口:ohos.file.fs.createStreamSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chown(path: string, uid: number, gid: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chown(path: string, uid: number, gid: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chown(path: string, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chown(path: string, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chownSync(path: string, uid: number, gid: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chownSync(path: string, uid: number, gid: number): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chmod(path: string, mode: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chmod(path: string, mode: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chmod(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chmod(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function chmodSync(path: string, mode: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function chmodSync(path: string, mode: number): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function ftruncate(fd: number, len?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function ftruncate(fd: number, len?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function ftruncate(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function ftruncate(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function ftruncate(fd: number, len: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function ftruncate(fd: number, len: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function ftruncateSync(fd: number, len?: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function ftruncateSync(fd: number, len?: number): void;
废弃版本:9
代替接口:ohos.file.fs.truncateSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fsync(fd: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fsync(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.fsync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fsync(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fsync(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.fsync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fsyncSync(fd: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fsyncSync(fd: number): void;
废弃版本:9
代替接口:ohos.file.fs.fsyncSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fstat(fd: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fstat(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fstat(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fstat(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fstatSync(fd: number): Stat;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fstatSync(fd: number): Stat;
废弃版本:9
代替接口:ohos.file.fs.statSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdatasync(fd: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdatasync(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.fdatasync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdatasync(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdatasync(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.fdatasync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdatasyncSync(fd: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdatasyncSync(fd: number): void;
废弃版本:9
代替接口:ohos.file.fs.fdatasyncSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchown(fd: number, uid: number, gid: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchown(fd: number, uid: number, gid: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchown(fd: number, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchown(fd: number, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchownSync(fd: number, uid: number, gid: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchownSync(fd: number, uid: number, gid: number): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchmod(fd: number, mode: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchmod(fd: number, mode: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchmod(fd: number, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchmod(fd: number, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fchmodSync(fd: number, mode: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fchmodSync(fd: number, mode: number): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdopenStream(fd: number, mode: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdopenStream(fd: number, mode: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.fdopenStream |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdopenStream(fd: number, mode: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdopenStream(fd: number, mode: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.fdopenStream |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function fdopenStreamSync(fd: number, mode: string): Stream;
废弃版本:N/A|类名:fileIO
方法 or 属性:function fdopenStreamSync(fd: number, mode: string): Stream;
废弃版本:9
代替接口:ohos.file.fs.fdopenStreamSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function hash(path: string, algorithm: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function hash(path: string, algorithm: string): Promise\;
废弃版本:9
代替接口:ohos.file.hash.hash |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function hash(path: string, algorithm: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function hash(path: string, algorithm: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.hash.hash |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lchown(path: string, uid: number, gid: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lchown(path: string, uid: number, gid: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lchown(path: string, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lchown(path: string, uid: number, gid: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lchownSync(path: string, uid: number, gid: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lchownSync(path: string, uid: number, gid: number): void;
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lstat(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lstat(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.lstat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lstat(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lstat(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.lstat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function lstatSync(path: string): Stat;
废弃版本:N/A|类名:fileIO
方法 or 属性:function lstatSync(path: string): Stat;
废弃版本:9
代替接口:ohos.file.fs.lstatSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdir(path: string, mode?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdir(path: string, mode?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.mkdir |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdir(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdir(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.mkdir |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdir(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdir(path: string, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.mkdir |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdirSync(path: string, mode?: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdirSync(path: string, mode?: number): void;
废弃版本:9
代替接口:ohos.file.fs.mkdirSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdtemp(prefix: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdtemp(prefix: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.mkdtemp |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdtemp(prefix: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdtemp(prefix: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.mkdtemp |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function mkdtempSync(prefix: string): string;
废弃版本:N/A|类名:fileIO
方法 or 属性:function mkdtempSync(prefix: string): string;
废弃版本:9
代替接口:ohos.file.fs.mkdtempSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function open(path: string, flags?: number, mode?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function open(path: string, flags?: number, mode?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.open |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function open(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function open(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.open |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function open(path: string, flags: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function open(path: string, flags: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.open |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function open(path: string, flags: number, mode: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function open(path: string, flags: number, mode: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.open |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function openSync(path: string, flags?: number, mode?: number): number;
废弃版本:N/A|类名:fileIO
方法 or 属性:function openSync(path: string, flags?: number, mode?: number): number;
废弃版本:9
代替接口:ohos.file.fs.openSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendir(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendir(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendir(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendir(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
废弃版本:N/A|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function readText(filePath: string, options?: {
position?: number;
length?: number;
encoding?: string;
}): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function readText(filePath: string, options?: {
position?: number;
length?: number;
encoding?: string;
}): Promise\;
废弃版本:9
代替接口:ohos.file.fs.readText |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function readText(filePath: string, options: {
position?: number;
length?: number;
encoding?: string;
}, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function readText(filePath: string, options: {
position?: number;
length?: number;
encoding?: string;
}, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.readText |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function readTextSync(filePath: string, options?: {
position?: number;
length?: number;
encoding?: string;
}): string;
废弃版本:N/A|类名:fileIO
方法 or 属性:function readTextSync(filePath: string, options?: {
position?: number;
length?: number;
encoding?: string;
}): string;
废弃版本:9
代替接口:ohos.file.fs.readTextSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
position?: number;
}): Promise\
废弃版本:N/A|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
position?: number;
}): Promise\
废弃版本:9
代替接口:ohos.file.fs.read |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.read |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, options: {
offset?: number;
length?: number;
position?: number;
}, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function read(fd: number, buffer: ArrayBuffer, options: {
offset?: number;
length?: number;
position?: number;
}, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.read |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function readSync(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
position?: number;
}): number;
废弃版本:N/A|类名:fileIO
方法 or 属性:function readSync(fd: number, buffer: ArrayBuffer, options?: {
offset?: number;
length?: number;
position?: number;
}): number;
废弃版本:9
代替接口:ohos.file.fs.readSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function rename(oldPath: string, newPath: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function rename(oldPath: string, newPath: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.rename |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function rename(oldPath: string, newPath: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function rename(oldPath: string, newPath: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.rename |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function renameSync(oldPath: string, newPath: string): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function renameSync(oldPath: string, newPath: string): void;
废弃版本:9
代替接口:ohos.file.fs.renameSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function rmdir(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function rmdir(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.rmdir |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function rmdir(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function rmdir(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.rmdir |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function rmdirSync(path: string): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function rmdirSync(path: string): void;
废弃版本:9
代替接口:ohos.file.fs.rmdirSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function stat(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function stat(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function stat(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function stat(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function statSync(path: string): Stat;
废弃版本:N/A|类名:fileIO
方法 or 属性:function statSync(path: string): Stat;
废弃版本:9
代替接口:ohos.file.fs.statSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function symlink(target: string, srcPath: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function symlink(target: string, srcPath: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.symlink |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function symlink(target: string, srcPath: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function symlink(target: string, srcPath: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.symlink |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function symlinkSync(target: string, srcPath: string): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function symlinkSync(target: string, srcPath: string): void;
废弃版本:9
代替接口:ohos.file.fs.symlinkSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function truncate(path: string, len?: number): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function truncate(path: string, len?: number): Promise\;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function truncate(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function truncate(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function truncate(path: string, len: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function truncate(path: string, len: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function truncateSync(path: string, len?: number): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function truncateSync(path: string, len?: number): void;
废弃版本:9
代替接口:ohos.file.fs.truncateSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function unlink(path: string): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function unlink(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.fs.unlink |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function unlink(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function unlink(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.unlink |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function unlinkSync(path: string): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function unlinkSync(path: string): void;
废弃版本:9
代替接口:ohos.file.fs.unlinkSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}): Promise\;
废弃版本:N/A|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}): Promise\;
废弃版本:9
代替接口:ohos.file.fs.write |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.write |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, options: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}, callback: AsyncCallback\): void;
废弃版本:N/A|类名:fileIO
方法 or 属性:function write(fd: number, buffer: ArrayBuffer \| string, options: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.write |@ohos.fileio.d.ts| +|废弃版本有变化|类名:fileIO
方法 or 属性:function writeSync(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}): number;
废弃版本:N/A|类名:fileIO
方法 or 属性:function writeSync(fd: number, buffer: ArrayBuffer \| string, options?: {
offset?: number;
length?: number;
position?: number;
encoding?: string;
}): number;
废弃版本:9
代替接口:ohos.file.fs.writeSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:read(): Promise\;
废弃版本:N/A|类名:Dir
方法 or 属性:read(): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:read(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Dir
方法 or 属性:read(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:readSync(): Dirent;
废弃版本:N/A|类名:Dir
方法 or 属性:readSync(): Dirent;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:close(): Promise\;
废弃版本:N/A|类名:Dir
方法 or 属性:close(): Promise\;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:close(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Dir
方法 or 属性:close(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dir
方法 or 属性:closeSync(): void;
废弃版本:N/A|类名:Dir
方法 or 属性:closeSync(): void;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
废弃版本:N/A|类名:Dirent
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:readonly name: string;
废弃版本:N/A|类名:Dirent
方法 or 属性:readonly name: string;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isBlockDevice(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isBlockDevice(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isCharacterDevice(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isCharacterDevice(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isDirectory(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isDirectory(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isFIFO(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isFIFO(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isFile(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isFile(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isSocket(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isSocket(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Dirent
方法 or 属性:isSymbolicLink(): boolean;
废弃版本:N/A|类名:Dirent
方法 or 属性:isSymbolicLink(): boolean;
废弃版本:9
代替接口:ohos.file.fs.listFile |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Stat
废弃版本:N/A|类名:Stat
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Stream
废弃版本:N/A|类名:Stream
废弃版本:9
代替接口:ohos.file.fs.Stream |@ohos.fileio.d.ts| +|废弃版本有变化|类名:ReadOut
废弃版本:N/A|类名:ReadOut
废弃版本:9
代替接口:N/A|@ohos.fileio.d.ts| +|废弃版本有变化|类名:Statfs
方法 or 属性:function getFreeBytes(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Statfs
方法 or 属性:function getFreeBytes(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.statvfs.getFreeSize |@ohos.statfs.d.ts| +|废弃版本有变化|类名:Statfs
方法 or 属性:function getFreeBytes(path: string): Promise\;
废弃版本:N/A|类名:Statfs
方法 or 属性:function getFreeBytes(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.statvfs.getFreeSize |@ohos.statfs.d.ts| +|废弃版本有变化|类名:Statfs
方法 or 属性:function getTotalBytes(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Statfs
方法 or 属性:function getTotalBytes(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.statvfs.getTotalSize |@ohos.statfs.d.ts| +|废弃版本有变化|类名:Statfs
方法 or 属性:function getTotalBytes(path: string): Promise\;
废弃版本:N/A|类名:Statfs
方法 or 属性:function getTotalBytes(path: string): Promise\;
废弃版本:9
代替接口:ohos.file.statvfs.getTotalSize |@ohos.statfs.d.ts| +|起始版本有变化|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
起始版本:N/A|类名:fileIO
方法 or 属性:function opendirSync(path: string): Dir;
起始版本:6|@ohos.fileio.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-geolocation.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-geolocation.md new file mode 100644 index 0000000000000000000000000000000000000000..ea3497d974ea2b040e2251cc3b5b53a66555cdad --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-geolocation.md @@ -0,0 +1,223 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:GeoLocationErrorCode
方法or属性:INPUT_PARAMS_ERROR|@ohos.geolocation.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'locationChange', request: LocationRequest, callback: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'locationChange', callback?: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'locationEnabledChange', callback: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'locationEnabledChange', callback?: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'cachedGnssLocationsChange', request: CachedGnssLocationsRequest, callback: Callback\>): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'cachedGnssLocationsChange', callback?: Callback\>): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'satelliteStatusChange', callback: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'satelliteStatusChange', callback?: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'nmeaMessage', callback: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'nmeaMessage', callback?: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'gnssFenceStatusChange', request: GeofenceRequest, want: WantAgent): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'gnssFenceStatusChange', request: GeofenceRequest, want: WantAgent): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function on(type: 'countryCodeChange', callback: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function off(type: 'countryCodeChange', callback?: Callback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCurrentLocation(request: CurrentLocationRequest, callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCurrentLocation(callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCurrentLocation(request?: CurrentLocationRequest): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getLastLocation(): Location;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function isLocationEnabled(): boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function enableLocation(callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function enableLocation(): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function disableLocation(): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getAddressesFromLocation(request: ReverseGeoCodeRequest, callback: AsyncCallback\>): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getAddressesFromLocation(request: ReverseGeoCodeRequest): Promise\>;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getAddressesFromLocationName(request: GeoCodeRequest, callback: AsyncCallback\>): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getAddressesFromLocationName(request: GeoCodeRequest): Promise\>;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function isGeocoderAvailable(): boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCachedGnssLocationsSize(callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCachedGnssLocationsSize(): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function flushCachedGnssLocations(callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function flushCachedGnssLocations(): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function sendCommand(command: LocationCommand, callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function sendCommand(command: LocationCommand): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCountryCode(callback: AsyncCallback\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function getCountryCode(): Promise\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function enableLocationMock(): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function disableLocationMock(): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function setMockedLocations(config: LocationMockConfig): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function enableReverseGeocodingMock(): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function disableReverseGeocodingMock(): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function setReverseGeocodingMockInfo(mockInfos: Array\): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function isLocationPrivacyConfirmed(type: LocationPrivacyType): boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: geoLocationManager
方法 or 属性: function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean): void;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo
方法 or 属性: location: ReverseGeoCodeRequest;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo
方法 or 属性: geoAddress: GeoAddress;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationMockConfig|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationMockConfig
方法 or 属性: timeInterval: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationMockConfig
方法 or 属性: locations: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: satellitesNumber: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: satelliteIds: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: carrierToNoiseDensitys: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: altitudes: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: azimuths: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法 or 属性: carrierFrequencies: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest
方法 or 属性: reportingPeriodSec: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest
方法 or 属性: wakeUpCacheQueueFull: boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeofenceRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeofenceRequest
方法 or 属性: scenario: LocationRequestScenario;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeofenceRequest
方法 or 属性: geofence: Geofence;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Geofence|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Geofence
方法 or 属性: latitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Geofence
方法 or 属性: longitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Geofence
方法 or 属性: radius: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Geofence
方法 or 属性: expiration: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法 or 属性: locale?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法 or 属性: latitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法 or 属性: longitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法 or 属性: maxItems?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: locale?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: description: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: maxItems?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: minLatitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: minLongitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: maxLatitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法 or 属性: maxLongitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: latitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: longitude?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: locale?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: placeName?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: countryCode?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: countryName?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: administrativeArea?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: subAdministrativeArea?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: locality?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: subLocality?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: roadName?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: subRoadName?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: premises?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: postalCode?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: phoneNumber?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: addressUrl?: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: descriptions?: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: descriptionsSize?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: GeoAddress
方法 or 属性: isFromMock?: Boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest
方法 or 属性: priority?: LocationRequestPriority;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest
方法 or 属性: scenario?: LocationRequestScenario;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest
方法 or 属性: timeInterval?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest
方法 or 属性: distanceInterval?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequest
方法 or 属性: maxAccuracy?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CurrentLocationRequest|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法 or 属性: priority?: LocationRequestPriority;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法 or 属性: scenario?: LocationRequestScenario;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法 or 属性: maxAccuracy?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法 or 属性: timeoutMs?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: latitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: longitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: altitude: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: accuracy: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: speed: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: timeStamp: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: direction: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: timeSinceBoot: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: additions?: Array\;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: additionSize?: number;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: Location
方法 or 属性: isFromMock?: Boolean;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestPriority|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法 or 属性: UNSET = 0x200|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法 or 属性: ACCURACY|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法 or 属性: LOW_POWER|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法 or 属性: FIRST_FIX|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: UNSET = 0x300|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: NAVIGATION|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: TRAJECTORY_TRACKING|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: CAR_HAILING|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: DAILY_LIFE_SERVICE|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法 or 属性: NO_POWER|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationPrivacyType|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法 or 属性: OTHERS = 0|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法 or 属性: STARTUP|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法 or 属性: CORE_LOCATION|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationCommand|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationCommand
方法 or 属性: scenario: LocationRequestScenario;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: LocationCommand
方法 or 属性: command: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCode|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCode
方法 or 属性: country: string;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCode
方法 or 属性: type: CountryCodeType;|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCodeType|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCodeType
方法 or 属性: COUNTRY_CODE_FROM_LOCALE = 1|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCodeType
方法 or 属性: COUNTRY_CODE_FROM_SIM|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCodeType
方法 or 属性: COUNTRY_CODE_FROM_LOCATION|@ohos.geoLocationManager.d.ts| +|新增|NA|模块名: ohos.geoLocationManager
类名: CountryCodeType
方法 or 属性: COUNTRY_CODE_FROM_NETWORK|@ohos.geoLocationManager.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function enableLocation(callback: AsyncCallback\) : void;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function enableLocation() : Promise\;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function disableLocation(callback: AsyncCallback\) : void;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function disableLocation() : Promise\;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function isLocationPrivacyConfirmed(type : LocationPrivacyType, callback: AsyncCallback\) : void;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function isLocationPrivacyConfirmed(type : LocationPrivacyType,) : Promise\;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function setLocationPrivacyConfirmStatus(type : LocationPrivacyType, isConfirmed : boolean, callback: AsyncCallback\) : void;|NA|@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法 or 属性:function setLocationPrivacyConfirmStatus(type : LocationPrivacyType, isConfirmed : boolean) : Promise\;|NA|@ohos.geolocation.d.ts| +|废弃版本有变化|类名:geolocation
废弃版本:N/A|类名:geolocation
废弃版本:9
代替接口:N/A|@ohos.geolocation.d.ts| +|废弃版本有变化|类名:SatelliteStatusInfo
废弃版本:N/A|类名:SatelliteStatusInfo
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.SatelliteStatusInfo |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:CachedGnssLocationsRequest
废弃版本:N/A|类名:CachedGnssLocationsRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.CachedGnssLocationsRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:GeofenceRequest
废弃版本:N/A|类名:GeofenceRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.GeofenceRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:Geofence
废弃版本:N/A|类名:Geofence
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.Geofence |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:ReverseGeoCodeRequest
废弃版本:N/A|类名:ReverseGeoCodeRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.ReverseGeoCodeRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:GeoCodeRequest
废弃版本:N/A|类名:GeoCodeRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.GeoCodeRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:GeoAddress
废弃版本:N/A|类名:GeoAddress
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.GeoAddress |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:LocationRequest
废弃版本:N/A|类名:LocationRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:CurrentLocationRequest
废弃版本:N/A|类名:CurrentLocationRequest
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.CurrentLocationRequest |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:Location
废弃版本:N/A|类名:Location
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.Location |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:LocationRequestPriority
废弃版本:N/A|类名:LocationRequestPriority
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationRequestPriority |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:LocationRequestScenario
废弃版本:N/A|类名:LocationRequestScenario
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationRequestScenario |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:GeoLocationErrorCode
废弃版本:N/A|类名:GeoLocationErrorCode
废弃版本:9
代替接口:N/A|@ohos.geolocation.d.ts| +|废弃版本有变化|类名:LocationPrivacyType
废弃版本:N/A|类名:LocationPrivacyType
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationPrivacyType |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:LocationCommand
废弃版本:N/A|类名:LocationCommand
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationCommand |@ohos.geolocation.d.ts| +|废弃版本有变化|类名:GeolocationResponse
废弃版本:N/A|类名:GeolocationResponse
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.Location |@system.geolocation.d.ts| +|废弃版本有变化|类名:GetLocationOption
废弃版本:N/A|类名:GetLocationOption
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.CurrentLocationRequest |@system.geolocation.d.ts| +|废弃版本有变化|类名:GetLocationTypeResponse
废弃版本:N/A|类名:GetLocationTypeResponse
废弃版本:9
代替接口:N/A|@system.geolocation.d.ts| +|废弃版本有变化|类名:GetLocationTypeOption
废弃版本:N/A|类名:GetLocationTypeOption
废弃版本:9
代替接口:N/A|@system.geolocation.d.ts| +|废弃版本有变化|类名:SubscribeLocationOption
废弃版本:N/A|类名:SubscribeLocationOption
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.LocationRequest |@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
废弃版本:N/A|类名:Geolocation
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager |@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
方法 or 属性:static getLocation(options?: GetLocationOption): void;
废弃版本:N/A|类名:Geolocation
方法 or 属性:static getLocation(options?: GetLocationOption): void;
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.getCurrentLocation |@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
方法 or 属性:static getLocationType(options?: GetLocationTypeOption): void;
废弃版本:N/A|类名:Geolocation
方法 or 属性:static getLocationType(options?: GetLocationTypeOption): void;
废弃版本:9
代替接口:N/A|@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
方法 or 属性:static subscribe(options: SubscribeLocationOption): void;
废弃版本:N/A|类名:Geolocation
方法 or 属性:static subscribe(options: SubscribeLocationOption): void;
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.on|@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
方法 or 属性:static unsubscribe(): void;
废弃版本:N/A|类名:Geolocation
方法 or 属性:static unsubscribe(): void;
废弃版本:9
代替接口:ohos.geoLocationManager/geoLocationManager.off|@system.geolocation.d.ts| +|废弃版本有变化|类名:Geolocation
方法 or 属性:static getSupportedCoordTypes(): Array\;
废弃版本:N/A|类名:Geolocation
方法 or 属性:static getSupportedCoordTypes(): Array\;
废弃版本:9
代替接口:N/A|@system.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:latitude?: number;
起始版本:N/A|类名:GeoAddress
方法 or 属性:latitude?: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:longitude?: number;
起始版本:N/A|类名:GeoAddress
方法 or 属性:longitude?: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:locale?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:locale?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:placeName?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:placeName?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:countryCode?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:countryCode?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:countryName?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:countryName?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:administrativeArea?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:administrativeArea?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:subAdministrativeArea?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:subAdministrativeArea?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:locality?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:locality?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:subLocality?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:subLocality?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:roadName?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:roadName?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:subRoadName?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:subRoadName?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:premises?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:premises?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:postalCode?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:postalCode?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:phoneNumber?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:phoneNumber?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:addressUrl?: string;
起始版本:N/A|类名:GeoAddress
方法 or 属性:addressUrl?: string;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:descriptions?: Array\;
起始版本:N/A|类名:GeoAddress
方法 or 属性:descriptions?: Array\;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoAddress
方法 or 属性:descriptionsSize?: number;
起始版本:N/A|类名:GeoAddress
方法 or 属性:descriptionsSize?: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:latitude: number;
起始版本:N/A|类名:Location
方法 or 属性:latitude: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:longitude: number;
起始版本:N/A|类名:Location
方法 or 属性:longitude: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:altitude: number;
起始版本:N/A|类名:Location
方法 or 属性:altitude: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:accuracy: number;
起始版本:N/A|类名:Location
方法 or 属性:accuracy: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:speed: number;
起始版本:N/A|类名:Location
方法 or 属性:speed: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:timeStamp: number;
起始版本:N/A|类名:Location
方法 or 属性:timeStamp: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:direction: number;
起始版本:N/A|类名:Location
方法 or 属性:direction: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:timeSinceBoot: number;
起始版本:N/A|类名:Location
方法 or 属性:timeSinceBoot: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:additions?: Array\;
起始版本:N/A|类名:Location
方法 or 属性:additions?: Array\;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:Location
方法 or 属性:additionSize?: number;
起始版本:N/A|类名:Location
方法 or 属性:additionSize?: number;
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:REVERSE_GEOCODE_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:REVERSE_GEOCODE_ERROR
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:GEOCODE_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:GEOCODE_ERROR
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:LOCATOR_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:LOCATOR_ERROR
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:LOCATION_SWITCH_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:LOCATION_SWITCH_ERROR
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:LAST_KNOWN_LOCATION_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:LAST_KNOWN_LOCATION_ERROR
起始版本:7|@ohos.geolocation.d.ts| +|起始版本有变化|类名:GeoLocationErrorCode
方法 or 属性:LOCATION_REQUEST_TIMEOUT_ERROR
起始版本:N/A|类名:GeoLocationErrorCode
方法 or 属性:LOCATION_REQUEST_TIMEOUT_ERROR
起始版本:7|@ohos.geolocation.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-global.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-global.md new file mode 100644 index 0000000000000000000000000000000000000000..09e4a9a1aa618d81a2592c1f3e23af5dabac0603 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-global.md @@ -0,0 +1,256 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.i18n
类名: System|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getSystemLanguages(): Array\;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getSystemLanguages(): Array\;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getSystemCountries(language: string): Array\;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getSystemCountries(language: string): Array\;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static isSuggested(language: string, region?: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static isSuggested(language: string, region?: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getSystemLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getSystemLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static setSystemLanguage(language: string): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static setSystemLanguage(language: string): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getSystemRegion(): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getSystemRegion(): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static setSystemRegion(region: string): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static setSystemRegion(region: string): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getSystemLocale(): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getSystemLocale(): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static setSystemLocale(locale: string): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static setSystemLocale(locale: string): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static is24HourClock(): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static is24HourClock(): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static set24HourClock(option: boolean): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static set24HourClock(option: boolean): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static addPreferredLanguage(language: string, index?: number): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static addPreferredLanguage(language: string, index?: number): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static removePreferredLanguage(index: number): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static removePreferredLanguage(index: number): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getPreferredLanguageList(): Array\;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getPreferredLanguageList(): Array\;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getFirstPreferredLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getFirstPreferredLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getAppPreferredLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getAppPreferredLanguage(): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static setUsingLocalDigit(flag: boolean): void;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static setUsingLocalDigit(flag: boolean): void;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: System
方法 or 属性:static getUsingLocalDigit(): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:System
方法or属性:static getUsingLocalDigit(): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: I18NUtil|@ohos.i18n.d.ts| +|新增|NA|类名:I18NUtil
方法or属性:|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: I18NUtil
方法 or 属性:static unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:I18NUtil
方法or属性:static unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: I18NUtil
方法 or 属性:static getDateOrder(locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:I18NUtil
方法or属性:static getDateOrder(locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:PhoneNumberFormatOptions
方法or属性:type?: string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: PhoneNumberFormat
方法 or 属性:getLocationName(number: string, locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:PhoneNumberFormat
方法or属性:getLocationName(number: string, locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isDigit(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isDigit(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isSpaceChar(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isSpaceChar(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isWhitespace(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isWhitespace(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isRTL(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isRTL(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isIdeograph(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isIdeograph(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isLetter(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isLetter(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isLowerCase(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isLowerCase(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static isUpperCase(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static isUpperCase(char: string): boolean;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Unicode
方法 or 属性:static getType(char: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:Unicode
方法or属性:static getType(char: string): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: TimeZone
方法 or 属性:static getAvailableIDs(): Array\;|@ohos.i18n.d.ts| +|新增|NA|类名:TimeZone
方法or属性:static getAvailableIDs(): Array\;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: TimeZone
方法 or 属性:static getAvailableZoneCityIDs(): Array\;|@ohos.i18n.d.ts| +|新增|NA|类名:TimeZone
方法or属性:static getAvailableZoneCityIDs(): Array\;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: TimeZone
方法 or 属性:static getCityDisplayName(cityID: string, locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:TimeZone
方法or属性:static getCityDisplayName(cityID: string, locale: string): string;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: TimeZone
方法 or 属性:static getTimezoneFromCity(cityID: string): TimeZone;|@ohos.i18n.d.ts| +|新增|NA|类名:TimeZone
方法or属性:static getTimezoneFromCity(cityID: string): TimeZone;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Transliterator|@ohos.i18n.d.ts| +|新增|NA|类名:Transliterator
方法or属性:|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Transliterator
方法 or 属性:static getAvailableIDs(): string[];|@ohos.i18n.d.ts| +|新增|NA|类名:Transliterator
方法or属性:static getAvailableIDs(): string[];|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Transliterator
方法 or 属性:static getInstance(id: string): Transliterator;|@ohos.i18n.d.ts| +|新增|NA|类名:Transliterator
方法or属性:static getInstance(id: string): Transliterator;|@ohos.i18n.d.ts| +|新增|NA|模块名: ohos.i18n
类名: Transliterator
方法 or 属性:transform(text: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:Transliterator
方法or属性:transform(text: string): string;|@ohos.i18n.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:calendar?: string;|@ohos.intl.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:collation?: string;|@ohos.intl.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:hourCycle?: string;|@ohos.intl.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:numberingSystem?: string;|@ohos.intl.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:numeric?: boolean;|@ohos.intl.d.ts| +|新增|NA|类名:LocaleOptions
方法or属性:caseFirst?: string;|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:locale?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:dateStyle?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:timeStyle?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:hourCycle?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:timeZone?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:numberingSystem?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:hour12?: boolean|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:weekday?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:era?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:year?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:month?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:day?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:hour?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:minute?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:second?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:timeZoneName?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:dayPeriod?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:localeMatcher?: string|@ohos.intl.d.ts| +|新增|NA|类名:DateTimeOptions
方法or属性:formatMatcher?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:locale?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:currency?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:currencySign?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:currencyDisplay?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:unit?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:unitDisplay?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:unitUsage?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:signDisplay?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:compactDisplay?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:notation?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:localeMatcher?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:style?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:numberingSystem?: string|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:useGrouping?: boolean|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:minimumIntegerDigits?: number|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:minimumFractionDigits?: number|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:maximumFractionDigits?: number|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:minimumSignificantDigits?: number|@ohos.intl.d.ts| +|新增|NA|类名:NumberOptions
方法or属性:maximumSignificantDigits?: number|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:localeMatcher?: string;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:usage?: string;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:sensitivity?: string;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:ignorePunctuation?: boolean;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:collation?: string;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:numeric?: boolean;|@ohos.intl.d.ts| +|新增|NA|类名:CollatorOptions
方法or属性:caseFirst?: string;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:localeMatcher?: string;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:type?: string;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:minimumIntegerDigits?: number;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:minimumFractionDigits?: number;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:maximumFractionDigits?: number;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:minimumSignificantDigits?: number;|@ohos.intl.d.ts| +|新增|NA|类名:PluralRulesOptions
方法or属性:maximumSignificantDigits?: number;|@ohos.intl.d.ts| +|新增|NA|类名:RelativeTimeFormatInputOptions
方法or属性:localeMatcher?: string;|@ohos.intl.d.ts| +|新增|NA|类名:RelativeTimeFormatInputOptions
方法or属性:numeric?: string;|@ohos.intl.d.ts| +|新增|NA|类名:RelativeTimeFormatInputOptions
方法or属性:style?: string;|@ohos.intl.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringValue(resource: Resource, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringValue(resource: Resource): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayValue(resource: Resource, callback: _AsyncCallback\>): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayValue(resource: Resource): Promise\>;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContent(resource: Resource, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContent(resource: Resource): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContentBase64(resource: Resource, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContentBase64(resource: Resource): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringValue(resource: Resource, num: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringValue(resource: Resource, num: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringByName(resName: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringByName(resName: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayByName(resName: string, callback: _AsyncCallback\>): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayByName(resName: string): Promise\>;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaByName(resName: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaByName(resName: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaBase64ByName(resName: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaBase64ByName(resName: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringByName(resName: string, num: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringByName(resName: string, num: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringSync(resId: number): string;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringSync(resource: Resource): string;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringByNameSync(resName: string): string;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getBoolean(resId: number): boolean;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getBoolean(resource: Resource): boolean;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getBooleanByName(resName: string): boolean;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getNumber(resId: number): number;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getNumber(resource: Resource): number;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getNumberByName(resName: string): number;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringValue(resId: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringValue(resId: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayValue(resId: number, callback: _AsyncCallback\>): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getStringArrayValue(resId: number): Promise\>;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringValue(resId: number, num: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getPluralStringValue(resId: number, num: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContent(resId: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContent(resId: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContentBase64(resId: number, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getMediaContentBase64(resId: number): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getRawFileContent(path: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getRawFileContent(path: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getRawFd(path: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:getRawFd(path: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:closeRawFd(path: string, callback: _AsyncCallback\): void;|@ohos.resourceManager.d.ts| +|新增|NA|类名:ResourceManager
方法or属性:closeRawFd(path: string): Promise\;|@ohos.resourceManager.d.ts| +|新增|NA|模块名: resource
类名: Resource|resource.d.ts| +|新增|NA|模块名: resource
类名: Resource
方法 or 属性: bundleName: string;|resource.d.ts| +|新增|NA|模块名: resource
类名: Resource
方法 or 属性: moduleName: string;|resource.d.ts| +|新增|NA|模块名: resource
类名: Resource
方法 or 属性: id: number;|resource.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function getSystemLanguages(): Array\;|NA|@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function getSystemCountries(language: string): Array\;|NA|@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function isSuggested(language: string, region?: string): boolean;|NA|@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function setSystemLanguage(language: string): boolean;|NA|@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function setSystemRegion(region: string): boolean;|NA|@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法 or 属性:function setSystemLocale(locale: string): boolean;|NA|@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;
废弃版本:9
代替接口:ohos.System.getDisplayCountry |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;
废弃版本:9
代替接口:ohos.System.getDisplayLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getSystemLanguage(): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getSystemLanguage(): string;
废弃版本:9
代替接口:ohos.System.getSystemLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getSystemRegion(): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getSystemRegion(): string;
废弃版本:9
代替接口:ohos.System.getSystemRegion |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getSystemLocale(): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getSystemLocale(): string;
废弃版本:9
代替接口:ohos.System.getSystemLocale |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Util
废弃版本:N/A|类名:Util
废弃版本:9
代替接口:I18NUtil |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Util
方法 or 属性:unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;
废弃版本:N/A|类名:Util
方法 or 属性:unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;
废弃版本:9
代替接口:I18NUtil.unitConvert |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
废弃版本:N/A|类名:Character
废弃版本:9
代替接口:Unicode |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isDigit(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isDigit(char: string): boolean;
废弃版本:9
代替接口:Unicode.isDigit |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isSpaceChar(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isSpaceChar(char: string): boolean;
废弃版本:9
代替接口:Unicode.isSpaceChar |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isWhitespace(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isWhitespace(char: string): boolean;
废弃版本:9
代替接口:Unicode.isWhitespace |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isRTL(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isRTL(char: string): boolean;
废弃版本:9
代替接口:Unicode.isRTL |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isIdeograph(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isIdeograph(char: string): boolean;
废弃版本:9
代替接口:Unicode.isIdeograph |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isLetter(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isLetter(char: string): boolean;
废弃版本:9
代替接口:Unicode.isLetter |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isLowerCase(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isLowerCase(char: string): boolean;
废弃版本:9
代替接口:Unicode.isLowerCase |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:isUpperCase(char: string): boolean;
废弃版本:N/A|类名:Character
方法 or 属性:isUpperCase(char: string): boolean;
废弃版本:9
代替接口:Unicode.isUpperCase |@ohos.i18n.d.ts| +|废弃版本有变化|类名:Character
方法 or 属性:getType(char: string): string;
废弃版本:N/A|类名:Character
方法 or 属性:getType(char: string): string;
废弃版本:9
代替接口:Unicode.getType |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function is24HourClock(): boolean;
废弃版本:N/A|类名:i18n
方法 or 属性:function is24HourClock(): boolean;
废弃版本:9
代替接口:ohos.System.is24HourClock |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function set24HourClock(option: boolean): boolean;
废弃版本:N/A|类名:i18n
方法 or 属性:function set24HourClock(option: boolean): boolean;
废弃版本:9
代替接口:ohos.System.set24HourClock |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function addPreferredLanguage(language: string, index?: number): boolean;
废弃版本:N/A|类名:i18n
方法 or 属性:function addPreferredLanguage(language: string, index?: number): boolean;
废弃版本:9
代替接口:ohos.System.addPreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function removePreferredLanguage(index: number): boolean;
废弃版本:N/A|类名:i18n
方法 or 属性:function removePreferredLanguage(index: number): boolean;
废弃版本:9
代替接口:ohos.System.removePreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getPreferredLanguageList(): Array\;
废弃版本:N/A|类名:i18n
方法 or 属性:function getPreferredLanguageList(): Array\;
废弃版本:9
代替接口:ohos.System.getPreferredLanguageList |@ohos.i18n.d.ts| +|废弃版本有变化|类名:i18n
方法 or 属性:function getFirstPreferredLanguage(): string;
废弃版本:N/A|类名:i18n
方法 or 属性:function getFirstPreferredLanguage(): string;
废弃版本:9
代替接口:ohos.System.getFirstPreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|类名:AsyncCallback
废弃版本:N/A|类名:AsyncCallback
废弃版本:9
代替接口:N/A|@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getString(resId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getString(resId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getString(resId: number): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getString(resId: number): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getStringArray(resId: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getStringArray(resId: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getStringArray(resId: number): Promise\>;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getStringArray(resId: number): Promise\>;
废弃版本:9
代替接口:ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getMedia(resId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getMedia(resId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getMedia(resId: number): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getMedia(resId: number): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getMediaBase64(resId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getMediaBase64(resId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getMediaBase64(resId: number): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getMediaBase64(resId: number): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getPluralString(resId: number, num: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getPluralString(resId: number, num: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getPluralString(resId: number, num: number): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getPluralString(resId: number, num: number): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getRawFile(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getRawFile(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getRawFile(path: string): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getRawFile(path: string): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getRawFileDescriptor(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getRawFileDescriptor(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:getRawFileDescriptor(path: string): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:getRawFileDescriptor(path: string): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:closeRawFileDescriptor(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:closeRawFileDescriptor(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|类名:ResourceManager
方法 or 属性:closeRawFileDescriptor(path: string): Promise\;
废弃版本:N/A|类名:ResourceManager
方法 or 属性:closeRawFileDescriptor(path: string): Promise\;
废弃版本:9
代替接口:ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isDigit(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isDigit(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isSpaceChar(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isSpaceChar(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isWhitespace(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isWhitespace(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isRTL(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isRTL(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isIdeograph(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isIdeograph(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isLetter(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isLetter(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isLowerCase(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isLowerCase(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:isUpperCase(char: string): boolean;
起始版本:N/A|类名:Character
方法 or 属性:isUpperCase(char: string): boolean;
起始版本:8|@ohos.i18n.d.ts| +|起始版本有变化|类名:Character
方法 or 属性:getType(char: string): string;
起始版本:N/A|类名:Character
方法 or 属性:getType(char: string): string;
起始版本:8|@ohos.i18n.d.ts| +|函数有变化|类名:ResourceManager
方法 or 属性:getDeviceCapability(callback: AsyncCallback\): void;
|类名:ResourceManager
方法 or 属性:getDeviceCapability(callback: _AsyncCallback\): void;
|@ohos.resourceManager.d.ts| +|函数有变化|类名:ResourceManager
方法 or 属性:getConfiguration(callback: AsyncCallback\): void;
|类名:ResourceManager
方法 or 属性:getConfiguration(callback: _AsyncCallback\): void;
|@ohos.resourceManager.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-graphic.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-graphic.md new file mode 100644 index 0000000000000000000000000000000000000000..f5c37b3baf8de599b41a131a45adbff4b01fd8cf --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-graphic.md @@ -0,0 +1,402 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: colorSpaceManager|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: UNKNOWN = 0|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: ADOBE_RGB_1998 = 1|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: DCI_P3 = 2|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: DISPLAY_P3 = 3|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: SRGB = 4|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpace
方法 or 属性: CUSTOM = 5|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: redX: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: redY: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: greenX: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: greenY: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: blueX: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: blueY: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: whitePointX: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpacePrimaries
方法 or 属性: whitePointY: number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpaceManager|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpaceManager
方法 or 属性: getColorSpaceName(): ColorSpace;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpaceManager
方法 or 属性: getWhitePoint(): Array\;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: ColorSpaceManager
方法 or 属性: getGamma(): number;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: colorSpaceManager
方法 or 属性: function create(colorSpaceName: ColorSpace): ColorSpaceManager;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|模块名: ohos.graphics.colorSpaceManager
类名: colorSpaceManager
方法 or 属性: function create(primaries: ColorSpacePrimaries, gamma: number): ColorSpaceManager;|@ohos.graphics.colorSpaceManager.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly READ_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNPACK_ROW_LENGTH: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNPACK_SKIP_ROWS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNPACK_SKIP_PIXELS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PACK_ROW_LENGTH: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PACK_SKIP_ROWS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PACK_SKIP_PIXELS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DEPTH: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly STENCIL: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB10_A2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_BINDING_3D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNPACK_SKIP_IMAGES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNPACK_IMAGE_HEIGHT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_3D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_WRAP_R: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_3D_TEXTURE_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_2_10_10_10_REV: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_ELEMENTS_VERTICES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_ELEMENTS_INDICES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_MIN_LOD: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_MAX_LOD: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_BASE_LEVEL: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_MAX_LEVEL: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MIN: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DEPTH_COMPONENT24: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_TEXTURE_LOD_BIAS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_COMPARE_MODE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_COMPARE_FUNC: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly CURRENT_QUERY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly QUERY_RESULT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly QUERY_RESULT_AVAILABLE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly STREAM_READ: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly STREAM_COPY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly STATIC_READ: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly STATIC_COPY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DYNAMIC_READ: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DYNAMIC_COPY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_DRAW_BUFFERS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER0: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER1: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER3: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER4: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER5: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER6: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER7: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER9: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER10: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER11: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER12: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER13: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER14: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_BUFFER15: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_FRAGMENT_UNIFORM_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_VERTEX_UNIFORM_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_3D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_2D_SHADOW: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAGMENT_SHADER_DERIVATIVE_HINT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PIXEL_PACK_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PIXEL_UNPACK_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PIXEL_PACK_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly PIXEL_UNPACK_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT2x3: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT2x4: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT3x2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT3x4: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT4x2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_MAT4x3: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SRGB: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SRGB8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SRGB8_ALPHA8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COMPARE_REF_TO_TEXTURE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA32F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB32F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA16F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB16F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly VERTEX_ATTRIB_ARRAY_INTEGER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_ARRAY_TEXTURE_LAYERS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MIN_PROGRAM_TEXEL_OFFSET: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_PROGRAM_TEXEL_OFFSET: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_VARYING_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_2D_ARRAY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_BINDING_2D_ARRAY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R11F_G11F_B10F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_10F_11F_11F_REV: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB9_E5: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_5_9_9_9_REV: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BUFFER_MODE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_VARYINGS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BUFFER_START: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BUFFER_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RASTERIZER_DISCARD: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INTERLEAVED_ATTRIBS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SEPARATE_ATTRIBS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA32UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB32UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA16UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB16UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA8UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB8UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA32I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB32I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA16I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB16I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA8I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB8I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RED_INTEGER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB_INTEGER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA_INTEGER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_2D_ARRAY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_2D_ARRAY_SHADOW: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_CUBE_SHADOW: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_VEC2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_VEC3: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_VEC4: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INT_SAMPLER_2D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INT_SAMPLER_3D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INT_SAMPLER_CUBE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INT_SAMPLER_2D_ARRAY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_SAMPLER_2D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_SAMPLER_3D: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_SAMPLER_CUBE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_SAMPLER_2D_ARRAY: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DEPTH_COMPONENT32F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DEPTH32F_STENCIL8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FLOAT_32_UNSIGNED_INT_24_8_REV: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_RED_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_DEFAULT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_INT_24_8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DEPTH24_STENCIL8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNED_NORMALIZED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_FRAMEBUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly READ_FRAMEBUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly DRAW_FRAMEBUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly READ_FRAMEBUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RENDERBUFFER_SAMPLES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_COLOR_ATTACHMENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT1: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT2: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT3: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT4: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT5: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT6: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT7: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT9: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT10: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT11: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT12: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT13: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT14: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COLOR_ATTACHMENT15: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_SAMPLES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly HALF_FLOAT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG_INTEGER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG8: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R16F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R32F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG16F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG32F: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R8I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R8UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R16I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R16UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R32I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R32UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG8I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG8UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG16I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG16UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG32I: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG32UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly VERTEX_ARRAY_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly R8_SNORM: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RG8_SNORM: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB8_SNORM: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGBA8_SNORM: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SIGNED_NORMALIZED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COPY_READ_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COPY_WRITE_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COPY_READ_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly COPY_WRITE_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BUFFER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BUFFER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BUFFER_START: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BUFFER_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_VERTEX_UNIFORM_BLOCKS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_FRAGMENT_UNIFORM_BLOCKS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_COMBINED_UNIFORM_BLOCKS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_UNIFORM_BUFFER_BINDINGS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_UNIFORM_BLOCK_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BUFFER_OFFSET_ALIGNMENT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly ACTIVE_UNIFORM_BLOCKS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_TYPE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_INDEX: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_OFFSET: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_ARRAY_STRIDE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_MATRIX_STRIDE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_IS_ROW_MAJOR: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_DATA_SIZE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_ACTIVE_UNIFORMS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INVALID_INDEX: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_VERTEX_OUTPUT_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_FRAGMENT_INPUT_COMPONENTS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_SERVER_WAIT_TIMEOUT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly OBJECT_TYPE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_CONDITION: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_STATUS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_FLAGS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_FENCE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_GPU_COMMANDS_COMPLETE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly UNSIGNALED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SIGNALED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly ALREADY_SIGNALED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TIMEOUT_EXPIRED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly CONDITION_SATISFIED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly WAIT_FAILED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SYNC_FLUSH_COMMANDS_BIT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly VERTEX_ATTRIB_ARRAY_DIVISOR: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly ANY_SAMPLES_PASSED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly ANY_SAMPLES_PASSED_CONSERVATIVE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly SAMPLER_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly RGB10_A2UI: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly INT_2_10_10_10_REV: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_PAUSED: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_ACTIVE: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TRANSFORM_FEEDBACK_BINDING: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_IMMUTABLE_FORMAT: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_ELEMENT_INDEX: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly TEXTURE_IMMUTABLE_LEVELS: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:readonly MAX_CLIENT_WAIT_TIMEOUT_WEBGL: webgl.GLenum;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, pboOffset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, srcData: ArrayBufferView \| null): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, srcData: ArrayBufferView, srcOffset: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, pboOffset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:texSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, srcData: ArrayBufferView \| null, srcOffset?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:compressedTexImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, imageSize: webgl.GLsizei, offset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:compressedTexImage3D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, border: webgl.GLint, srcData: ArrayBufferView, srcOffset?: webgl.GLuint, srcLengthOverride?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:compressedTexSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, format: webgl.GLenum, imageSize: webgl.GLsizei, offset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextBase
方法or属性:compressedTexSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei, format: webgl.GLenum, srcData: ArrayBufferView, srcOffset?: webgl.GLuint, srcLengthOverride?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:bufferData(target: webgl.GLenum, size: webgl.GLsizeiptr, usage: webgl.GLenum): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:bufferData(target: webgl.GLenum, srcData: BufferSource \| null, usage: webgl.GLenum): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:bufferSubData(target: webgl.GLenum, dstByteOffset: webgl.GLintptr, srcData: BufferSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:bufferData(target: webgl.GLenum, srcData: ArrayBufferView, usage: webgl.GLenum, srcOffset: webgl.GLuint, length?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:bufferSubData(target: webgl.GLenum, dstByteOffset: webgl.GLintptr, srcData: ArrayBufferView, srcOffset: webgl.GLuint, length?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, pixels: ArrayBufferView \| null): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, pixels: ArrayBufferView \| null): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, pboOffset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, format: webgl.GLenum, type: webgl.GLenum, srcData: ArrayBufferView, srcOffset: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, pboOffset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, source: webgl.TexImageSource): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:texSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, srcData: ArrayBufferView, srcOffset: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:compressedTexImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, imageSize: webgl.GLsizei, offset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:compressedTexImage2D(target: webgl.GLenum, level: webgl.GLint, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei, border: webgl.GLint, srcData: ArrayBufferView, srcOffset?: webgl.GLuint, srcLengthOverride?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:compressedTexSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, imageSize: webgl.GLsizei, offset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:compressedTexSubImage2D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, srcData: ArrayBufferView, srcOffset?: webgl.GLuint, srcLengthOverride?: webgl.GLuint): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:readPixels(x: webgl.GLint, y: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, dstData: ArrayBufferView \| null): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:readPixels(x: webgl.GLint, y: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, offset: webgl.GLintptr): void;|webgl2.d.ts| +|新增|NA|类名:WebGL2RenderingContextOverloads
方法or属性:readPixels(x: webgl.GLint, y: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei, format: webgl.GLenum, type: webgl.GLenum, dstData: ArrayBufferView, dstOffset: webgl.GLuint): void;|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:copyBufferSubData(readTarget: GLenum, writeTarget: GLenum, readOffset: GLintptr, writeOffset: GLintptr, size: GLsizeiptr): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:copyBufferSubData(readTarget: webgl.GLenum, writeTarget: webgl.GLenum, readOffset: webgl.GLintptr, writeOffset: webgl.GLintptr, size: webgl.GLsizeiptr): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getBufferSubData(target: GLenum, srcByteOffset: GLintptr, dstBuffer: ArrayBufferView, dstOffset?: GLuint, length?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:getBufferSubData(target: webgl.GLenum, srcByteOffset: webgl.GLintptr, dstBuffer: ArrayBufferView, dstOffset?: webgl.GLuint, length?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:blitFramebuffer(srcX0: GLint, srcY0: GLint, srcX1: GLint, srcY1: GLint, dstX0: GLint, dstY0: GLint, dstX1: GLint, dstY1: GLint, mask: GLbitfield, filter: GLenum): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:blitFramebuffer(srcX0: webgl.GLint, srcY0: webgl.GLint, srcX1: webgl.GLint, srcY1: webgl.GLint, dstX0: webgl.GLint, dstY0: webgl.GLint, dstX1: webgl.GLint, dstY1: webgl.GLint, mask: webgl.GLbitfield, filter: webgl.GLenum): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:framebufferTextureLayer(target: GLenum, attachment: GLenum, texture: WebGLTexture \| null, level: GLint, layer: GLint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:framebufferTextureLayer(target: webgl.GLenum, attachment: webgl.GLenum, texture: webgl.WebGLTexture \| null, level: webgl.GLint, layer: webgl.GLint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:invalidateFramebuffer(target: GLenum, attachments: GLenum[]): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:invalidateFramebuffer(target: webgl.GLenum, attachments: webgl.GLenum[]): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:invalidateSubFramebuffer(target: GLenum, attachments: GLenum[], x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:invalidateSubFramebuffer(target: webgl.GLenum, attachments: webgl.GLenum[], x: webgl.GLint, y: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:readBuffer(src: GLenum): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:readBuffer(src: webgl.GLenum): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getInternalformatParameter(target: GLenum, internalformat: GLenum, pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getInternalformatParameter(target: webgl.GLenum, internalformat: webgl.GLenum, pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:renderbufferStorageMultisample(target: GLenum, samples: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:renderbufferStorageMultisample(target: webgl.GLenum, samples: webgl.GLsizei, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:texStorage2D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:texStorage2D(target: webgl.GLenum, levels: webgl.GLsizei, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:texStorage3D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:texStorage3D(target: webgl.GLenum, levels: webgl.GLsizei, internalformat: webgl.GLenum, width: webgl.GLsizei, height: webgl.GLsizei, depth: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:copyTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:copyTexSubImage3D(target: webgl.GLenum, level: webgl.GLint, xoffset: webgl.GLint, yoffset: webgl.GLint, zoffset: webgl.GLint, x: webgl.GLint, y: webgl.GLint, width: webgl.GLsizei, height: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getFragDataLocation(program: WebGLProgram, name: string): GLint;
|类名:WebGL2RenderingContextBase
方法 or 属性:getFragDataLocation(program: webgl.WebGLProgram, name: string): webgl.GLint;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform1ui(location: WebGLUniformLocation \| null, v0: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform1ui(location: webgl.WebGLUniformLocation \| null, v0: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform2ui(location: WebGLUniformLocation \| null, v0: GLuint, v1: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform2ui(location: webgl.WebGLUniformLocation \| null, v0: webgl.GLuint, v1: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform3ui(location: WebGLUniformLocation \| null, v0: GLuint, v1: GLuint, v2: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform3ui(location: webgl.WebGLUniformLocation \| null, v0: webgl.GLuint, v1: webgl.GLuint, v2: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform4ui(location: WebGLUniformLocation \| null, v0: GLuint, v1: GLuint, v2: GLuint, v3: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform4ui(location: webgl.WebGLUniformLocation \| null, v0: webgl.GLuint, v1: webgl.GLuint, v2: webgl.GLuint, v3: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform1uiv(location: WebGLUniformLocation \| null, data: Uint32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform1uiv(location: webgl.WebGLUniformLocation \| null, data: Uint32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform2uiv(location: WebGLUniformLocation \| null, data: Uint32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform2uiv(location: webgl.WebGLUniformLocation \| null, data: Uint32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform3uiv(location: WebGLUniformLocation \| null, data: Uint32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform3uiv(location: webgl.WebGLUniformLocation \| null, data: Uint32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniform4uiv(location: WebGLUniformLocation \| null, data: Uint32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniform4uiv(location: webgl.WebGLUniformLocation \| null, data: Uint32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix3x2fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix3x2fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix4x2fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix4x2fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix2x3fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix2x3fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix4x3fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix4x3fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix2x4fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix2x4fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix3x4fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformMatrix3x4fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4i(index: GLuint, x: GLint, y: GLint, z: GLint, w: GLint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4i(index: webgl.GLuint, x: webgl.GLint, y: webgl.GLint, z: webgl.GLint, w: webgl.GLint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4iv(index: GLuint, values: Int32List): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4iv(index: webgl.GLuint, values: webgl.Int32List): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4ui(index: GLuint, x: GLuint, y: GLuint, z: GLuint, w: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4ui(index: webgl.GLuint, x: webgl.GLuint, y: webgl.GLuint, z: webgl.GLuint, w: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4uiv(index: GLuint, values: Uint32List): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribI4uiv(index: webgl.GLuint, values: Uint32List): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribIPointer(index: GLuint, size: GLint, type: GLenum, stride: GLsizei, offset: GLintptr): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribIPointer(index: webgl.GLuint, size: webgl.GLint, type: webgl.GLenum, stride: webgl.GLsizei, offset: webgl.GLintptr): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribDivisor(index: GLuint, divisor: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:vertexAttribDivisor(index: webgl.GLuint, divisor: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:drawArraysInstanced(mode: GLenum, first: GLint, count: GLsizei, instanceCount: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:drawArraysInstanced(mode: webgl.GLenum, first: webgl.GLint, count: webgl.GLsizei, instanceCount: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:drawElementsInstanced(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr, instanceCount: GLsizei): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:drawElementsInstanced(mode: webgl.GLenum, count: webgl.GLsizei, type: webgl.GLenum, offset: webgl.GLintptr, instanceCount: webgl.GLsizei): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:drawRangeElements(mode: GLenum, start: GLuint, end: GLuint, count: GLsizei, type: GLenum, offset: GLintptr): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:drawRangeElements(mode: webgl.GLenum, start: webgl.GLuint, end: webgl.GLuint, count: webgl.GLsizei, type: webgl.GLenum, offset: webgl.GLintptr): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:drawBuffers(buffers: GLenum[]): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:drawBuffers(buffers: webgl.GLenum[]): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Float32List, srcOffset?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferfv(buffer: webgl.GLenum, drawbuffer: webgl.GLint, values: webgl.Float32List, srcOffset?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Int32List, srcOffset?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferiv(buffer: webgl.GLenum, drawbuffer: webgl.GLint, values: webgl.Int32List, srcOffset?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferuiv(buffer: webgl.GLenum, drawbuffer: webgl.GLint, values: Uint32List, srcOffset?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferfi(buffer: GLenum, drawbuffer: GLint, depth: GLfloat, stencil: GLint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:clearBufferfi(buffer: webgl.GLenum, drawbuffer: webgl.GLint, depth: webgl.GLfloat, stencil: webgl.GLint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:isQuery(query: WebGLQuery \| null): GLboolean;
|类名:WebGL2RenderingContextBase
方法 or 属性:isQuery(query: WebGLQuery \| null): webgl.GLboolean;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:beginQuery(target: GLenum, query: WebGLQuery): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:beginQuery(target: webgl.GLenum, query: WebGLQuery): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:endQuery(target: GLenum): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:endQuery(target: webgl.GLenum): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getQuery(target: GLenum, pname: GLenum): WebGLQuery \| null;
|类名:WebGL2RenderingContextBase
方法 or 属性:getQuery(target: webgl.GLenum, pname: webgl.GLenum): WebGLQuery \| null;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getQueryParameter(query: WebGLQuery, pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getQueryParameter(query: WebGLQuery, pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:isSampler(sampler: WebGLSampler \| null): GLboolean;
|类名:WebGL2RenderingContextBase
方法 or 属性:isSampler(sampler: WebGLSampler \| null): webgl.GLboolean;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:bindSampler(unit: GLuint, sampler: WebGLSampler \| null): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:bindSampler(unit: webgl.GLuint, sampler: WebGLSampler \| null): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:samplerParameteri(sampler: WebGLSampler, pname: GLenum, param: GLint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:samplerParameteri(sampler: WebGLSampler, pname: webgl.GLenum, param: webgl.GLint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:samplerParameterf(sampler: WebGLSampler, pname: GLenum, param: GLfloat): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:samplerParameterf(sampler: WebGLSampler, pname: webgl.GLenum, param: webgl.GLfloat): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getSamplerParameter(sampler: WebGLSampler, pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getSamplerParameter(sampler: WebGLSampler, pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:fenceSync(condition: GLenum, flags: GLbitfield): WebGLSync \| null;
|类名:WebGL2RenderingContextBase
方法 or 属性:fenceSync(condition: webgl.GLenum, flags: webgl.GLbitfield): WebGLSync \| null;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:isSync(sync: WebGLSync \| null): GLboolean;
|类名:WebGL2RenderingContextBase
方法 or 属性:isSync(sync: WebGLSync \| null): webgl.GLboolean;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
|类名:WebGL2RenderingContextBase
方法 or 属性:clientWaitSync(sync: WebGLSync, flags: webgl.GLbitfield, timeout: GLuint64 ): webgl.GLenum;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:waitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLint64): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:waitSync(sync: WebGLSync, flags: webgl.GLbitfield, timeout: GLint64): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getSyncParameter(sync: WebGLSync, pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getSyncParameter(sync: WebGLSync, pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:isTransformFeedback(tf: WebGLTransformFeedback \| null): GLboolean;
|类名:WebGL2RenderingContextBase
方法 or 属性:isTransformFeedback(tf: WebGLTransformFeedback \| null): webgl.GLboolean;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:bindTransformFeedback(target: GLenum, tf: WebGLTransformFeedback \| null): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:bindTransformFeedback(target: webgl.GLenum, tf: WebGLTransformFeedback \| null): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:beginTransformFeedback(primitiveMode: GLenum): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:beginTransformFeedback(primitiveMode: webgl.GLenum): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:transformFeedbackVaryings(program: WebGLProgram, varyings: string[], bufferMode: GLenum): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:transformFeedbackVaryings(program: webgl.WebGLProgram, varyings: string[], bufferMode: webgl.GLenum): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getTransformFeedbackVarying(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null;
|类名:WebGL2RenderingContextBase
方法 or 属性:getTransformFeedbackVarying(program: webgl.WebGLProgram, index: webgl.GLuint): webgl.WebGLActiveInfo \| null;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:bindBufferBase(target: GLenum, index: GLuint, buffer: WebGLBuffer \| null): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:bindBufferBase(target: webgl.GLenum, index: webgl.GLuint, buffer: webgl.WebGLBuffer \| null): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:bindBufferRange(target: GLenum, index: GLuint, buffer: WebGLBuffer \| null, offset: GLintptr, size: GLsizeiptr): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:bindBufferRange(target: webgl.GLenum, index: webgl.GLuint, buffer: webgl.WebGLBuffer \| null, offset: webgl.GLintptr, size: webgl.GLsizeiptr): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getIndexedParameter(target: GLenum, index: GLuint): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getIndexedParameter(target: webgl.GLenum, index: webgl.GLuint): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getUniformIndices(program: WebGLProgram, uniformNames: string[]): GLuint[] \| null;
|类名:WebGL2RenderingContextBase
方法 or 属性:getUniformIndices(program: webgl.WebGLProgram, uniformNames: string[]): webgl.GLuint[] \| null;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniforms(program: WebGLProgram, uniformIndices: GLuint[], pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniforms(program: webgl.WebGLProgram, uniformIndices: webgl.GLuint[], pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getUniformBlockIndex(program: WebGLProgram, uniformBlockName: string): GLuint;
|类名:WebGL2RenderingContextBase
方法 or 属性:getUniformBlockIndex(program: webgl.WebGLProgram, uniformBlockName: string): webgl.GLuint;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniformBlockParameter(program: WebGLProgram, uniformBlockIndex: GLuint, pname: GLenum): any;
|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniformBlockParameter(program: webgl.WebGLProgram, uniformBlockIndex: webgl.GLuint, pname: webgl.GLenum): any;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniformBlockName(program: WebGLProgram, uniformBlockIndex: GLuint): string \| null;
|类名:WebGL2RenderingContextBase
方法 or 属性:getActiveUniformBlockName(program: webgl.WebGLProgram, uniformBlockIndex: webgl.GLuint): string \| null;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:uniformBlockBinding(program: WebGLProgram, uniformBlockIndex: GLuint, uniformBlockBinding: GLuint): void;
|类名:WebGL2RenderingContextBase
方法 or 属性:uniformBlockBinding(program: webgl.WebGLProgram, uniformBlockIndex: webgl.GLuint, uniformBlockBinding: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextBase
方法 or 属性:isVertexArray(vertexArray: WebGLVertexArrayObject \| null): GLboolean;
|类名:WebGL2RenderingContextBase
方法 or 属性:isVertexArray(vertexArray: WebGLVertexArrayObject \| null): webgl.GLboolean;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform1fv(location: WebGLUniformLocation \| null, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform1fv(location: webgl.WebGLUniformLocation \| null, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform2fv(location: WebGLUniformLocation \| null, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform2fv(location: webgl.WebGLUniformLocation \| null, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform3fv(location: WebGLUniformLocation \| null, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform3fv(location: webgl.WebGLUniformLocation \| null, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform4fv(location: WebGLUniformLocation \| null, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform4fv(location: webgl.WebGLUniformLocation \| null, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform1iv(location: WebGLUniformLocation \| null, data: Int32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform1iv(location: webgl.WebGLUniformLocation \| null, data: webgl.Int32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform2iv(location: WebGLUniformLocation \| null, data: Int32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform2iv(location: webgl.WebGLUniformLocation \| null, data: webgl.Int32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform3iv(location: WebGLUniformLocation \| null, data: Int32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform3iv(location: webgl.WebGLUniformLocation \| null, data: webgl.Int32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform4iv(location: WebGLUniformLocation \| null, data: Int32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniform4iv(location: webgl.WebGLUniformLocation \| null, data: webgl.Int32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix2fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix2fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix3fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix3fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| +|函数有变化|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix4fv(location: WebGLUniformLocation \| null, transpose: GLboolean, data: Float32List, srcOffset?: GLuint, srcLength?: GLuint): void;
|类名:WebGL2RenderingContextOverloads
方法 or 属性:uniformMatrix4fv(location: webgl.WebGLUniformLocation \| null, transpose: webgl.GLboolean, data: webgl.Float32List, srcOffset?: webgl.GLuint, srcLength?: webgl.GLuint): void;
|webgl2.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-misc.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-misc.md new file mode 100644 index 0000000000000000000000000000000000000000..8fe5ac12d6d69f227f9ce9387b2a91c1f56ff291 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-misc.md @@ -0,0 +1,622 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: const MAX_TYPE_NUM: number|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getInputMethodSetting(): InputMethodSetting;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getInputMethodController(): InputMethodController;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getSetting(): InputMethodSetting;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getController(): InputMethodController;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchInputMethod(target: InputMethodProperty, callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchInputMethod(target: InputMethodProperty): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getCurrentInputMethod(): InputMethodProperty;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchCurrentInputMethodSubtype(target: InputMethodSubtype, callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchCurrentInputMethodSubtype(target: InputMethodSubtype): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function getCurrentInputMethodSubtype(): InputMethodSubtype;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype, callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: inputMethod
方法 or 属性: function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: on(type: 'imeChange', callback: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: off(type: 'imeChange', callback?: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listInputMethodSubtype(inputMethodProperty: InputMethodProperty, callback: AsyncCallback\>): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listInputMethodSubtype(inputMethodProperty: InputMethodProperty): Promise\>;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listCurrentInputMethodSubtype(callback: AsyncCallback\>): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listCurrentInputMethodSubtype(): Promise\>;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: getInputMethods(enable: boolean, callback: AsyncCallback\>): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: getInputMethods(enable: boolean): Promise\>;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listInputMethod(callback: AsyncCallback\>): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: listInputMethod(): Promise\>;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: showOptionalInputMethods(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: showOptionalInputMethods(): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: displayOptionalInputMethod(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodSetting
方法 or 属性: displayOptionalInputMethod(): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: stopInputSession(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: stopInputSession(): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: stopInput(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: stopInput(): Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: showSoftKeyboard(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: showSoftKeyboard():Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: hideSoftKeyboard(callback: AsyncCallback\): void;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodController
方法 or 属性: hideSoftKeyboard():Promise\;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly packageName: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly methodId: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly name: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly id: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly label?: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly icon?: string;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: readonly iconId?: number;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethod
类名: InputMethodProperty
方法 or 属性: extra: object;|@ohos.inputMethod.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_UNSPECIFIED: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_GO: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_SEARCH: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_SEND: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_NEXT: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_DONE: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const ENTER_KEY_TYPE_PREVIOUS: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_NULL: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_TEXT: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_NUMBER: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_PHONE: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_DATETIME: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_EMAIL: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_URI: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const PATTERN_PASSWORD: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const FLAG_SELECTING: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const FLAG_SINGLE_LINE: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const DISPLAY_MODE_PART: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const DISPLAY_MODE_FULL: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_ASCII: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_NONE: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_AUTO_CAP_CHARACTERS: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_AUTO_CAP_SENTENCES: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_AUTO_WORDS: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_MULTI_LINE: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const OPTION_NO_FULLSCREEN: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const CURSOR_UP: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const CURSOR_DOWN: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const CURSOR_LEFT: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const CURSOR_RIGHT: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: const WINDOW_TYPE_INPUT_METHOD_FLOAT: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: function getInputMethodAbility(): InputMethodAbility;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: function getInputMethodEngine(): InputMethodEngine;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: function getKeyboardDelegate(): KeyboardDelegate;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: inputMethodEngine
方法 or 属性: function createKeyboardDelegate(): KeyboardDelegate;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardController|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardController
方法 or 属性: hide(callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardController
方法 or 属性: hide(): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardController
方法 or 属性: hideKeyboard(callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardController
方法 or 属性: hideKeyboard(): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodEngine
方法 or 属性: off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'inputStop', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'inputStop', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'setCallingWindow', callback: (wid:number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'setCallingWindow', callback: (wid:number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputMethodAbility
方法 or 属性: off(type: 'setSubtype', callback?: (inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: sendKeyFunction(action: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: sendKeyFunction(action: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: deleteForward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: deleteForward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: deleteBackward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: deleteBackward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: insertText(text: string, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: insertText(text: string): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getForward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getForward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getBackward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getBackward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getEditorAttribute(callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: TextInputClient
方法 or 属性: getEditorAttribute(): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: sendKeyFunction(action: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: sendKeyFunction(action: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: deleteForward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: deleteForward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: deleteBackward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: deleteBackward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: insertText(text: string, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: insertText(text: string): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getForward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getForward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getBackward(length: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getBackward(length: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getEditorAttribute(callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: getEditorAttribute(): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: moveCursor(direction: number, callback: AsyncCallback\): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: InputClient
方法 or 属性: moveCursor(direction: number): Promise\;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: on(type: 'textChange', callback: (text: string) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyboardDelegate
方法 or 属性: off(type: 'textChange', callback?: (text: string) => void): void;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: EditorAttribute|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: EditorAttribute
方法 or 属性: readonly inputPattern: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: EditorAttribute
方法 or 属性: readonly enterKeyType: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyEvent|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyEvent
方法 or 属性: readonly keyCode: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.inputMethodEngine
类名: KeyEvent
方法 or 属性: readonly keyAction: number;|@ohos.inputMethodEngine.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionAbility
类名: InputMethodExtensionAbility|@ohos.InputMethodExtensionAbility.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionAbility
类名: InputMethodExtensionAbility
方法 or 属性: context: InputMethodExtensionContext;|@ohos.InputMethodExtensionAbility.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionAbility
类名: InputMethodExtensionAbility
方法 or 属性: onCreate(want: Want): void;|@ohos.InputMethodExtensionAbility.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionAbility
类名: InputMethodExtensionAbility
方法 or 属性: onDestroy(): void;|@ohos.InputMethodExtensionAbility.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionContext
类名: InputMethodExtensionContext|@ohos.InputMethodExtensionContext.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionContext
类名: InputMethodExtensionContext
方法 or 属性: destroy(callback: AsyncCallback\): void;|@ohos.InputMethodExtensionContext.d.ts| +|新增|NA|模块名: ohos.InputMethodExtensionContext
类名: InputMethodExtensionContext
方法 or 属性: destroy(): Promise\;|@ohos.InputMethodExtensionContext.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly label?: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly name: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly id: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly mode?: 'upper'\|'lower';|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly locale: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly language: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly icon?: string;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: readonly iconId?: number;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|模块名: ohos.InputMethodSubtype
类名: InputMethodSubtype
方法 or 属性: extra: object;|@ohos.InputMethodSubtype.d.ts| +|新增|NA|类名:pasteboard
方法or属性:const MIMETYPE_PIXELMAP: string;|@ohos.pasteboard.d.ts| +|新增|NA|类名:pasteboard
方法or属性:function createData(mimeType: string, value: ValueType): PasteData;|@ohos.pasteboard.d.ts| +|新增|NA|类名:pasteboard
方法or属性:function createRecord(mimeType: string, value: ValueType): PasteDataRecord;|@ohos.pasteboard.d.ts| +|新增|NA|模块名: ohos.pasteboard
类名: ShareOption|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:|@ohos.pasteboard.d.ts| +|新增|NA|模块名: ohos.pasteboard
类名: ShareOption
方法 or 属性:INAPP|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:INAPP|@ohos.pasteboard.d.ts| +|新增|NA|模块名: ohos.pasteboard
类名: ShareOption
方法 or 属性:LOCALDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:LOCALDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|模块名: ohos.pasteboard
类名: ShareOption
方法 or 属性:CROSSDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|类名:ShareOption
方法or属性:CROSSDEVICE|@ohos.pasteboard.d.ts| +|新增|NA|模块名: ohos.pasteboard
类名: PasteDataProperty
方法 or 属性:shareOption: ShareOption;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteDataProperty
方法or属性:shareOption: ShareOption;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteDataRecord
方法or属性:pixelMap: image.PixelMap;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteDataRecord
方法or属性:data: {

[mimeType: string]: ArrayBuffer

}|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteDataRecord
方法or属性:toPlainText(): string;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:addRecord(mimeType: string, value: ValueType): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:getPrimaryPixelMap(): image.PixelMap;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:setProperty(property: PasteDataProperty): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:getRecord(index: number): PasteDataRecord;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:hasType(mimeType: string): boolean;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:removeRecord(index: number): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:PasteData
方法or属性:replaceRecord(index: number, record: PasteDataRecord): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:clearData(callback: AsyncCallback\): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:clearData(): Promise\;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:getData(callback: AsyncCallback\): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:getData(): Promise\;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:hasData(callback: AsyncCallback\): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:hasData(): Promise\;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:setData(data: PasteData, callback: AsyncCallback\): void;|@ohos.pasteboard.d.ts| +|新增|NA|类名:SystemPasteboard
方法or属性:setData(data: PasteData): Promise\;|@ohos.pasteboard.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_PERMISSION: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_PARAMCHECK: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_UNSUPPORTED: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_FILEIO: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_FILEPATH: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_SERVICE: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const EXCEPTION_OTHERS: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const ERROR_OFFLINE: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const ERROR_UNSUPPORTED_NETWORK_TYPE: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:const PAUSED_BY_USER: number;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:function downloadFile(context: BaseContext, config: DownloadConfig, callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:function downloadFile(context: BaseContext, config: DownloadConfig): Promise\;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:function uploadFile(context: BaseContext, config: UploadConfig, callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:request
方法or属性:function uploadFile(context: BaseContext, config: UploadConfig): Promise\;|@ohos.request.d.ts| +|新增|NA|模块名: ohos.request
类名: DownloadConfig
方法 or 属性:background?: boolean;|@ohos.request.d.ts| +|新增|NA|类名:DownloadConfig
方法or属性:background?: boolean;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:delete(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:delete(): Promise\;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:suspend(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:suspend(): Promise\;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:restore(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:restore(): Promise\;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:getTaskInfo(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:getTaskInfo(): Promise\;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:getTaskMimeType(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:DownloadTask
方法or属性:getTaskMimeType(): Promise\;|@ohos.request.d.ts| +|新增|NA|模块名: ohos.request
类名: TaskState|@ohos.request.d.ts| +|新增|NA|类名:TaskState
方法or属性:|@ohos.request.d.ts| +|新增|NA|模块名: ohos.request
类名: TaskState
方法 or 属性:path: string;|@ohos.request.d.ts| +|新增|NA|类名:TaskState
方法or属性:path: string;|@ohos.request.d.ts| +|新增|NA|模块名: ohos.request
类名: TaskState
方法 or 属性:responseCode: number;|@ohos.request.d.ts| +|新增|NA|类名:TaskState
方法or属性:responseCode: number;|@ohos.request.d.ts| +|新增|NA|模块名: ohos.request
类名: TaskState
方法 or 属性:message: string;|@ohos.request.d.ts| +|新增|NA|类名:TaskState
方法or属性:message: string;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:on(type:'complete' \| 'fail', callback: Callback\>): void;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:on(type:'complete' \| 'fail', callback: Callback\>): void;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:off(type:'complete' \| 'fail', callback?: Callback\>): void;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:off(type:'complete' \| 'fail', callback?: Callback\>): void;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:delete(callback: AsyncCallback\): void;|@ohos.request.d.ts| +|新增|NA|类名:UploadTask
方法or属性:delete(): Promise\;|@ohos.request.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: EventType
方法 or 属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:EventType
方法or属性:type EventType =

'beginWakeUp'

\| 'endWakeUp'

\| 'beginScreenOn'

\| 'endScreenOn'

\| 'beginScreenOff'

\| 'endScreenOff'

\| 'unlockScreen'

\| 'lockScreen'

\| 'beginExitAnimation'

\| 'beginSleep'

\| 'endSleep'

\| 'changeUser'

\| 'screenlockEnabled'

\| 'serviceRestart'|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function isLocked(): boolean;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function unlock(callback: AsyncCallback\): void;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function unlock():Promise\;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function lock(callback: AsyncCallback\): void;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function lock():Promise\;|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: SystemEvent|@ohos.screenLock.d.ts| +|新增|NA|类名:SystemEvent
方法or属性:|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: SystemEvent
方法 or 属性:eventType: EventType,|@ohos.screenLock.d.ts| +|新增|NA|类名:SystemEvent
方法or属性:eventType: EventType,|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.screenLock
类名: SystemEvent
方法 or 属性:params: string|@ohos.screenLock.d.ts| +|新增|NA|类名:SystemEvent
方法or属性:params: string|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function onSystemEvent(callback: Callback\): boolean;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function sendScreenLockEvent(event: String, parameter: number, callback: AsyncCallback\): void;|@ohos.screenLock.d.ts| +|新增|NA|类名:screenLock
方法or属性:function sendScreenLockEvent(event: String, parameter: number): Promise\;|@ohos.screenLock.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setTime(time : number, callback : AsyncCallback\) : void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setTime(time : number) : Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getCurrentTime(isNano: boolean, callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getCurrentTime(callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getCurrentTime(isNano?: boolean): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealActiveTime(isNano: boolean, callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealActiveTime(callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealActiveTime(isNano?: boolean): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealTime(isNano: boolean, callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealTime(callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getRealTime(isNano?: boolean): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setDate(date: Date, callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setDate(date: Date): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getDate(callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getDate(): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setTimezone(timezone: string, callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function setTimezone(timezone: string): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getTimezone(callback: AsyncCallback\): void;|@ohos.systemDateTime.d.ts| +|新增|NA|模块名: ohos.systemDateTime
类名: systemDateTime
方法 or 属性: function getTimezone(): Promise\;|@ohos.systemDateTime.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function getColorsSync(wallpaperType: WallpaperType): Array\;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function getMinHeightSync(): number;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function getMinWidthSync(): number;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function restore(wallpaperType: WallpaperType, callback: AsyncCallback\): void;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function restore(wallpaperType: WallpaperType): Promise\;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function getImage(wallpaperType: WallpaperType, callback: AsyncCallback\): void;|@ohos.wallpaper.d.ts| +|新增|NA|类名:wallpaper
方法or属性:function getImage(wallpaperType: WallpaperType): Promise\;|@ohos.wallpaper.d.ts| +|删除|模块名: ohos.inputmethod
类名: inputMethod|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: inputMethod
方法 or 属性:const MAX_TYPE_NUM: number|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: inputMethod
方法 or 属性:function getInputMethodSetting(): InputMethodSetting;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: inputMethod
方法 or 属性:function getInputMethodController(): InputMethodController;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodSetting|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodSetting
方法 or 属性:listInputMethod(callback: AsyncCallback\>): void;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodSetting
方法 or 属性:listInputMethod(): Promise\>;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodSetting
方法 or 属性:displayOptionalInputMethod(callback: AsyncCallback\): void;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodSetting
方法 or 属性:displayOptionalInputMethod(): Promise\;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodController|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodController
方法 or 属性:stopInput(callback: AsyncCallback\): void;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodController
方法 or 属性:stopInput(): Promise\;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodProperty|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodProperty
方法 or 属性:readonly packageName: string;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethod
类名: InputMethodProperty
方法 or 属性:readonly methodId: string;|NA|@ohos.inputmethod.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_UNSPECIFIED: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_GO: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_SEARCH: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_SEND: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_NEXT: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_DONE: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const ENTER_KEY_TYPE_PREVIOUS: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_NULL: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_TEXT: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_NUMBER: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_PHONE: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_DATETIME: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_EMAIL: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_URI: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const PATTERN_PASSWORD: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const FLAG_SELECTING: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const FLAG_SINGLE_LINE: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const DISPLAY_MODE_PART: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const DISPLAY_MODE_FULL: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_ASCII: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_NONE: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_AUTO_CAP_CHARACTERS: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_AUTO_CAP_SENTENCES: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_AUTO_WORDS: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_MULTI_LINE: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:const OPTION_NO_FULLSCREEN: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:function getInputMethodEngine(): InputMethodEngine;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: inputMethodEngine
方法 or 属性:function createKeyboardDelegate(): KeyboardDelegate;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardController|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardController
方法 or 属性:hideKeyboard(callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardController
方法 or 属性:hideKeyboard(): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法 or 属性:off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:sendKeyFunction(action: number, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:sendKeyFunction(action: number): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:deleteForward(length: number, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:deleteForward(length: number): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:deleteBackward(length: number, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:deleteBackward(length: number): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:insertText(text: string, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:insertText(text: string): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getForward(length: number, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getForward(length: number): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getBackward(length: number, callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getBackward(length: number): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getEditorAttribute(callback: AsyncCallback\): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: TextInputClient
方法 or 属性:getEditorAttribute(): Promise\;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:on(type: 'textChange', callback: (text: string) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyboardDelegate
方法 or 属性:off(type: 'textChange', callback?: (text: string) => void): void;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: EditorAttribute|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: EditorAttribute
方法 or 属性:readonly inputPattern: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: EditorAttribute
方法 or 属性:readonly enterKeyType: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyEvent|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyEvent
方法 or 属性:readonly keyCode: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: KeyEvent
方法 or 属性:readonly keyAction: number;|NA|@ohos.inputmethodengine.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function screenshotLiveWallpaper(scale: number, pixelFormat: image.PixelMapFormat, callback: AsyncCallback\): void;|NA|@ohos.wallpaper.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法 or 属性:function screenshotLiveWallpaper(scale: number, pixelFormat: image.PixelMapFormat): Promise\;|NA|@ohos.wallpaper.d.ts| +|model有变化|类名:request
方法 or 属性:function download(config: DownloadConfig, callback: AsyncCallback\): void;
model:N/A|类名:request
方法 or 属性:function download(config: DownloadConfig, callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.request.d.ts| +|model有变化|类名:request
方法 or 属性:function download(config: DownloadConfig): Promise\;
model:N/A|类名:request
方法 or 属性:function download(config: DownloadConfig): Promise\;
model:@FAModelOnly|@ohos.request.d.ts| +|model有变化|类名:request
方法 or 属性:function upload(config: UploadConfig, callback: AsyncCallback\): void;
model:N/A|类名:request
方法 or 属性:function upload(config: UploadConfig, callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.request.d.ts| +|model有变化|类名:request
方法 or 属性:function upload(config: UploadConfig): Promise\;
model:N/A|类名:request
方法 or 属性:function upload(config: UploadConfig): Promise\;
model:@FAModelOnly|@ohos.request.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_REALTIME: number;
访问级别:公开API|类名:systemTimer
方法 or 属性:const TIMER_TYPE_REALTIME: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_WAKEUP: number;
访问级别:公开API|类名:systemTimer
方法 or 属性:const TIMER_TYPE_WAKEUP: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_EXACT: number;
访问级别:公开API|类名:systemTimer
方法 or 属性:const TIMER_TYPE_EXACT: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_IDLE: number;
访问级别:公开API|类名:systemTimer
方法 or 属性:const TIMER_TYPE_IDLE: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions, callback: AsyncCallback\): void;
访问级别:公开API|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions): Promise\;
访问级别:公开API|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions): Promise\;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\): void;
访问级别:公开API|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number): Promise\;
访问级别:公开API|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number): Promise\;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function stopTimer(timer: number, callback: AsyncCallback\): void;
访问级别:公开API|类名:systemTimer
方法 or 属性:function stopTimer(timer: number, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function stopTimer(timer: number): Promise\;
访问级别:公开API|类名:systemTimer
方法 or 属性:function stopTimer(timer: number): Promise\;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number, callback: AsyncCallback\): void;
访问级别:公开API|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number, callback: AsyncCallback\): void;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number): Promise\;
访问级别:公开API|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number): Promise\;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
访问级别:公开API|类名:TimerOptions
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
方法 or 属性:type: number;
访问级别:公开API|类名:TimerOptions
方法 or 属性:type: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
方法 or 属性:repeat: boolean;
访问级别:公开API|类名:TimerOptions
方法 or 属性:repeat: boolean;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
方法 or 属性:interval?: number;
访问级别:公开API|类名:TimerOptions
方法 or 属性:interval?: number;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
方法 or 属性:wantAgent?: WantAgent;
访问级别:公开API|类名:TimerOptions
方法 or 属性:wantAgent?: WantAgent;
访问级别:系统API|@ohos.systemTimer.d.ts| +|访问级别有变化|类名:TimerOptions
方法 or 属性:callback?: () => void;
访问级别:公开API|类名:TimerOptions
方法 or 属性:callback?: () => void;
访问级别:系统API|@ohos.systemTimer.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createHtmlData(htmlText: string): PasteData;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createHtmlData(htmlText: string): PasteData;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createWantData(want: Want): PasteData;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createWantData(want: Want): PasteData;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createPlainTextData(text: string): PasteData;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createPlainTextData(text: string): PasteData;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createUriData(uri: string): PasteData;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createUriData(uri: string): PasteData;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createHtmlTextRecord(htmlText: string): PasteDataRecord;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createHtmlTextRecord(htmlText: string): PasteDataRecord;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createWantRecord(want: Want): PasteDataRecord;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createWantRecord(want: Want): PasteDataRecord;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createPlainTextRecord(text: string): PasteDataRecord;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createPlainTextRecord(text: string): PasteDataRecord;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:pasteboard
方法 or 属性:function createUriRecord(uri: string): PasteDataRecord;
废弃版本:N/A|类名:pasteboard
方法 or 属性:function createUriRecord(uri: string): PasteDataRecord;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteDataRecord
方法 or 属性:convertToText(callback: AsyncCallback\): void;
废弃版本:N/A|类名:PasteDataRecord
方法 or 属性:convertToText(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteDataRecord
方法 or 属性:convertToText(): Promise\;
废弃版本:N/A|类名:PasteDataRecord
方法 or 属性:convertToText(): Promise\;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:addHtmlRecord(htmlText: string): void;
废弃版本:N/A|类名:PasteData
方法 or 属性:addHtmlRecord(htmlText: string): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:addWantRecord(want: Want): void;
废弃版本:N/A|类名:PasteData
方法 or 属性:addWantRecord(want: Want): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:addTextRecord(text: string): void;
废弃版本:N/A|类名:PasteData
方法 or 属性:addTextRecord(text: string): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:addUriRecord(uri: string): void;
废弃版本:N/A|类名:PasteData
方法 or 属性:addUriRecord(uri: string): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:getRecordAt(index: number): PasteDataRecord;
废弃版本:N/A|类名:PasteData
方法 or 属性:getRecordAt(index: number): PasteDataRecord;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:hasMimeType(mimeType: string): boolean;
废弃版本:N/A|类名:PasteData
方法 or 属性:hasMimeType(mimeType: string): boolean;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:removeRecordAt(index: number): boolean;
废弃版本:N/A|类名:PasteData
方法 or 属性:removeRecordAt(index: number): boolean;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:PasteData
方法 or 属性:replaceRecordAt(index: number, record: PasteDataRecord): boolean;
废弃版本:N/A|类名:PasteData
方法 or 属性:replaceRecordAt(index: number, record: PasteDataRecord): boolean;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:clear(callback: AsyncCallback\): void;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:clear(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:clear(): Promise\;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:clear(): Promise\;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:getPasteData(callback: AsyncCallback\): void;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:getPasteData(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:getPasteData(): Promise\;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:getPasteData(): Promise\;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:hasPasteData(callback: AsyncCallback\): void;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:hasPasteData(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:hasPasteData(): Promise\;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:hasPasteData(): Promise\;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:setPasteData(data: PasteData, callback: AsyncCallback\): void;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:setPasteData(data: PasteData, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:SystemPasteboard
方法 or 属性:setPasteData(data: PasteData): Promise\;
废弃版本:N/A|类名:SystemPasteboard
方法 or 属性:setPasteData(data: PasteData): Promise\;
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|类名:request
方法 or 属性:function download(config: DownloadConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:request
方法 or 属性:function download(config: DownloadConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|类名:request
方法 or 属性:function download(config: DownloadConfig): Promise\;
废弃版本:N/A|类名:request
方法 or 属性:function download(config: DownloadConfig): Promise\;
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|类名:request
方法 or 属性:function upload(config: UploadConfig, callback: AsyncCallback\): void;
废弃版本:N/A|类名:request
方法 or 属性:function upload(config: UploadConfig, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|类名:request
方法 or 属性:function upload(config: UploadConfig): Promise\;
废弃版本:N/A|类名:request
方法 or 属性:function upload(config: UploadConfig): Promise\;
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:remove(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:remove(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:remove(): Promise\;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:remove(): Promise\;
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:pause(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:pause(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.suspend |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:pause(): Promise\;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:pause(): Promise\;
废弃版本:9
代替接口:ohos.request.suspend |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:resume(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:resume(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.restore |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:resume(): Promise\;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:resume(): Promise\;
废弃版本:9
代替接口:ohos.request.restore |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:query(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:query(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.getTaskInfo |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:query(): Promise\;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:query(): Promise\;
废弃版本:9
代替接口:ohos.request.getTaskInfo |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:queryMimeType(callback: AsyncCallback\): void;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:queryMimeType(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.getTaskMimeType |@ohos.request.d.ts| +|废弃版本有变化|类名:DownloadTask
方法 or 属性:queryMimeType(): Promise\;
废弃版本:N/A|类名:DownloadTask
方法 or 属性:queryMimeType(): Promise\;
废弃版本:9
代替接口:ohos.request.getTaskMimeType |@ohos.request.d.ts| +|废弃版本有变化|类名:UploadTask
方法 or 属性:remove(callback: AsyncCallback\): void;
废弃版本:N/A|类名:UploadTask
方法 or 属性:remove(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|类名:UploadTask
方法 or 属性:remove(): Promise\;
废弃版本:N/A|类名:UploadTask
方法 or 属性:remove(): Promise\;
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function isScreenLocked(callback: AsyncCallback\): void;
废弃版本:N/A|类名:screenLock
方法 or 属性:function isScreenLocked(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function isScreenLocked(): Promise\;
废弃版本:N/A|类名:screenLock
方法 or 属性:function isScreenLocked(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function isSecureMode(callback: AsyncCallback\): void;
废弃版本:N/A|类名:screenLock
方法 or 属性:function isSecureMode(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function isSecureMode(): Promise\;
废弃版本:N/A|类名:screenLock
方法 or 属性:function isSecureMode(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function unlockScreen(callback: AsyncCallback\): void;
废弃版本:N/A|类名:screenLock
方法 or 属性:function unlockScreen(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:screenLock
方法 or 属性:function unlockScreen():Promise\;
废弃版本:N/A|类名:screenLock
方法 or 属性:function unlockScreen():Promise\;
废弃版本:9
代替接口:N/A|@ohos.screenLock.d.ts| +|废弃版本有变化|类名:systemTime
废弃版本:N/A|类名:systemTime
废弃版本:9
代替接口:ohos.systemDateTime |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setTime(time : number, callback : AsyncCallback\) : void;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setTime(time : number, callback : AsyncCallback\) : void;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setTime(time : number) : Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setTime(time : number) : Promise\;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getCurrentTime(isNano?: boolean): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getCurrentTime(isNano?: boolean): Promise\;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getCurrentTime |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getRealActiveTime(isNano?: boolean): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getRealActiveTime(isNano?: boolean): Promise\;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getRealActiveTime |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getRealTime(isNano?: boolean): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getRealTime(isNano?: boolean): Promise\;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getRealTime |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setDate(date: Date, callback: AsyncCallback\): void;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setDate(date: Date, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setDate(date: Date): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setDate(date: Date): Promise\;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getDate(callback: AsyncCallback\): void;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getDate(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getDate |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getDate(): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getDate(): Promise\;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getDate |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setTimezone(timezone: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setTimezone(timezone: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function setTimezone(timezone: string): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function setTimezone(timezone: string): Promise\;
废弃版本:9
代替接口:N/A|@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getTimezone(callback: AsyncCallback\): void;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getTimezone(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getTimezone |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:systemTime
方法 or 属性:function getTimezone(): Promise\;
废弃版本:N/A|类名:systemTime
方法 or 属性:function getTimezone(): Promise\;
废弃版本:9
代替接口:ohos.systemDateTime/systemDateTime.getTimezone |@ohos.systemTime.d.ts| +|废弃版本有变化|类名:RgbaColor
废弃版本:N/A|类名:RgbaColor
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getFile(wallpaperType: WallpaperType): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getFile(wallpaperType: WallpaperType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:N/A|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
废弃版本:9
代替接口:N/A|@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:UploadResponse
废弃版本:N/A|类名:UploadResponse
废弃版本:9
代替接口:ohos.request |@system.request.d.ts| +|废弃版本有变化|类名:UploadResponse
方法 or 属性:code: number;
废弃版本:N/A|类名:UploadResponse
方法 or 属性:code: number;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadResponse
方法 or 属性:data: string;
废弃版本:N/A|类名:UploadResponse
方法 or 属性:data: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadResponse
方法 or 属性:headers: Object;
废弃版本:N/A|类名:UploadResponse
方法 or 属性:headers: Object;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadResponse
废弃版本:N/A|类名:DownloadResponse
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadResponse
方法 or 属性:token: string;
废弃版本:N/A|类名:DownloadResponse
方法 or 属性:token: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteResponse
废弃版本:N/A|类名:OnDownloadCompleteResponse
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteResponse
方法 or 属性:uri: string;
废弃版本:N/A|类名:OnDownloadCompleteResponse
方法 or 属性:uri: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
废弃版本:N/A|类名:RequestFile
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
方法 or 属性:filename?: string;
废弃版本:N/A|类名:RequestFile
方法 or 属性:filename?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
方法 or 属性:name?: string;
废弃版本:N/A|类名:RequestFile
方法 or 属性:name?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
方法 or 属性:uri: string;
废弃版本:N/A|类名:RequestFile
方法 or 属性:uri: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
方法 or 属性:type?: string;
废弃版本:N/A|类名:RequestFile
方法 or 属性:type?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestData
废弃版本:N/A|类名:RequestData
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestData
方法 or 属性:name: string;
废弃版本:N/A|类名:RequestData
方法 or 属性:name: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:RequestData
方法 or 属性:value: string;
废弃版本:N/A|类名:RequestData
方法 or 属性:value: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
废弃版本:N/A|类名:UploadRequestOptions
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:url: string;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:url: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:data?: Array\;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:data?: Array\;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:files: Array\;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:files: Array\;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:header?: Object;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:header?: Object;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:method?: string;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:method?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:success?: (data: UploadResponse) => void;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:success?: (data: UploadResponse) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:UploadRequestOptions
方法 or 属性:complete?: () => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
废弃版本:N/A|类名:DownloadRequestOptions
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:url: string;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:url: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:filename?: string;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:filename?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:header?: string;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:header?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:description?: string;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:description?: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:success?: (data: DownloadResponse) => void;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:success?: (data: DownloadResponse) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:DownloadRequestOptions
方法 or 属性:complete?: () => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
废弃版本:N/A|类名:OnDownloadCompleteOptions
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
方法 or 属性:token: string;
废弃版本:N/A|类名:OnDownloadCompleteOptions
方法 or 属性:token: string;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
方法 or 属性:success?: (data: OnDownloadCompleteResponse) => void;
废弃版本:N/A|类名:OnDownloadCompleteOptions
方法 or 属性:success?: (data: OnDownloadCompleteResponse) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:N/A|类名:OnDownloadCompleteOptions
方法 or 属性:fail?: (data: any, code: number) => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
方法 or 属性:complete?: () => void;
废弃版本:N/A|类名:OnDownloadCompleteOptions
方法 or 属性:complete?: () => void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:Request
废弃版本:N/A|类名:Request
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
废弃版本:N/A|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
废弃版本:N/A|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|废弃版本有变化|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
废弃版本:N/A|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
废弃版本:9
代替接口:N/A|@system.request.d.ts| +|起始版本有变化|类名:DownloadTask
起始版本:N/A|类名:DownloadTask
起始版本:6|@ohos.request.d.ts| +|起始版本有变化|类名:UploadTask
起始版本:N/A|类名:UploadTask
起始版本:6|@ohos.request.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_REALTIME: number;
起始版本:N/A|类名:systemTimer
方法 or 属性:const TIMER_TYPE_REALTIME: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_WAKEUP: number;
起始版本:N/A|类名:systemTimer
方法 or 属性:const TIMER_TYPE_WAKEUP: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_EXACT: number;
起始版本:N/A|类名:systemTimer
方法 or 属性:const TIMER_TYPE_EXACT: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:const TIMER_TYPE_IDLE: number;
起始版本:N/A|类名:systemTimer
方法 or 属性:const TIMER_TYPE_IDLE: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions, callback: AsyncCallback\): void;
起始版本:N/A|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions, callback: AsyncCallback\): void;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions): Promise\;
起始版本:N/A|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions): Promise\;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\): void;
起始版本:N/A|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\): void;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number): Promise\;
起始版本:N/A|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number): Promise\;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function stopTimer(timer: number, callback: AsyncCallback\): void;
起始版本:N/A|类名:systemTimer
方法 or 属性:function stopTimer(timer: number, callback: AsyncCallback\): void;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function stopTimer(timer: number): Promise\;
起始版本:N/A|类名:systemTimer
方法 or 属性:function stopTimer(timer: number): Promise\;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number, callback: AsyncCallback\): void;
起始版本:N/A|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number, callback: AsyncCallback\): void;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number): Promise\;
起始版本:N/A|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number): Promise\;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
起始版本:N/A|类名:TimerOptions
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
方法 or 属性:type: number;
起始版本:N/A|类名:TimerOptions
方法 or 属性:type: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
方法 or 属性:repeat: boolean;
起始版本:N/A|类名:TimerOptions
方法 or 属性:repeat: boolean;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
方法 or 属性:interval?: number;
起始版本:N/A|类名:TimerOptions
方法 or 属性:interval?: number;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
方法 or 属性:wantAgent?: WantAgent;
起始版本:N/A|类名:TimerOptions
方法 or 属性:wantAgent?: WantAgent;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:TimerOptions
方法 or 属性:callback?: () => void;
起始版本:N/A|类名:TimerOptions
方法 or 属性:callback?: () => void;
起始版本:7|@ohos.systemTimer.d.ts| +|起始版本有变化|类名:RgbaColor
起始版本:N/A|类名:RgbaColor
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:WallpaperType
起始版本:N/A|类名:WallpaperType
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\>): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getColors(wallpaperType: WallpaperType): Promise\>;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getId(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinHeight(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getMinWidth(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isChangePermitted(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function isOperationAllowed(): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function reset(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
起始版本:N/A|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function on(type: 'colorChange', callback: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:N/A|类名:wallpaper
方法 or 属性:function off(type: 'colorChange', callback?: (colors: Array\, wallpaperType: WallpaperType) => void): void;
起始版本:7|@ohos.wallpaper.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static upload(options: UploadRequestOptions): void;
起始版本:3|@system.request.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static download(options: DownloadRequestOptions): void;
起始版本:3|@system.request.d.ts| +|起始版本有变化|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
起始版本:N/A|类名:Request
方法 or 属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;
起始版本:3|@system.request.d.ts| +|权限有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
权限:ohos.permission.READ_USER_STORAGE|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\): void;
权限:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| +|权限有变化|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
权限:ohos.permission.READ_USER_STORAGE|类名:wallpaper
方法 or 属性:function getPixelMap(wallpaperType: WallpaperType): Promise\;
权限:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| +|新增(错误码)|NA|类名:SystemPasteboard
方法 or 属性:on(type: 'update', callback: () => void): void;
错误码内容: 401|@ohos.pasteboard.d.ts| +|新增(错误码)|NA|类名:SystemPasteboard
方法 or 属性:off(type: 'update', callback?: () => void): void;
错误码内容: 401|@ohos.pasteboard.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions, callback: AsyncCallback\): void;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function createTimer(options: TimerOptions): Promise\;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\): void;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function startTimer(timer: number, triggerTime: number): Promise\;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function stopTimer(timer: number, callback: AsyncCallback\): void;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function stopTimer(timer: number): Promise\;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number, callback: AsyncCallback\): void;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(错误码)|NA|类名:systemTimer
方法 or 属性:function destroyTimer(timer: number): Promise\;
错误码内容: 202, 401|@ohos.systemTimer.d.ts| +|新增(权限)|类名:DownloadTask
权限:N/A|类名:DownloadTask
权限:ohos.permission.INTERNET|@ohos.request.d.ts| +|新增(权限)|类名:UploadTask
权限:N/A|类名:UploadTask
权限:ohos.permission.INTERNET|@ohos.request.d.ts| +|SysCap有变化|类名:DownloadTask
SysCap:N/A|类名:DownloadTask
SysCap:SystemCapability.MiscServices.Download|@ohos.request.d.ts| +|SysCap有变化|类名:UploadTask
SysCap:N/A|类名:UploadTask
SysCap:SystemCapability.MiscServices.Download|@ohos.request.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getCurrentTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getCurrentTime(isNano: boolean, callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getCurrentTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getCurrentTime(callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getRealActiveTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getRealActiveTime(isNano: boolean, callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getRealActiveTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getRealActiveTime(callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getRealTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getRealTime(isNano: boolean, callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| +|函数有变化|类名:systemTime
方法 or 属性:function getRealTime(isNano?: boolean, callback: AsyncCallback\): void;
|类名:systemTime
方法 or 属性:function getRealTime(callback: AsyncCallback\): void;
|@ohos.systemTime.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-msdp.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-msdp.md new file mode 100644 index 0000000000000000000000000000000000000000..b3d4c74b87764202a15d060ff82550b8a0190f8c --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-msdp.md @@ -0,0 +1,17 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.stationary
类名: stationary|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityType
方法 or 属性: type ActivityType = 'still' \| 'relativeStill';|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityType
方法 or 属性: type ActivityType = 'still' \| 'relativeStill';|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityResponse|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityResponse
方法 or 属性: state: ActivityState;|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityEvent|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityEvent
方法 or 属性: ENTER = 1|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityEvent
方法 or 属性: EXIT = 2|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityEvent
方法 or 属性: ENTER_EXIT = 3|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityState|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityState
方法 or 属性: ENTER = 1|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: ActivityState
方法 or 属性: EXIT = 2|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: stationary
方法 or 属性: function on(activity: ActivityType, event: ActivityEvent, reportLatencyNs: number, callback: Callback\): void;|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: stationary
方法 or 属性: function once(activity: ActivityType, callback: Callback\): void;|@ohos.stationary.d.ts| +|新增|NA|模块名: ohos.stationary
类名: stationary
方法 or 属性: function off(activity: ActivityType, event: ActivityEvent, callback?: Callback\): void;|@ohos.stationary.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multi-modal-input.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multi-modal-input.md new file mode 100644 index 0000000000000000000000000000000000000000..6fece4a2ece02cb53e2bc67ad079b74991979d3d --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multi-modal-input.md @@ -0,0 +1,601 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: ChangedType
方法 or 属性:type ChangedType = 'add' \| 'remove';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:ChangedType
方法or属性:type ChangedType = 'add' \| 'remove';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: ChangedType
方法 or 属性:type ChangedType = 'add' \| 'remove';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:ChangedType
方法or属性:type ChangedType = 'add' \| 'remove';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: AxisType
方法 or 属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisType
方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:NONE = 0|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:NONE = 0|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:UNKNOWN = 1|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:UNKNOWN = 1|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:ALPHABETIC_KEYBOARD = 2|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:ALPHABETIC_KEYBOARD = 2|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:DIGITAL_KEYBOARD = 3|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:DIGITAL_KEYBOARD = 3|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:HANDWRITING_PEN = 4|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:HANDWRITING_PEN = 4|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: KeyboardType
方法 or 属性:REMOTE_CONTROL = 5|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:KeyboardType
方法or属性:REMOTE_CONTROL = 5|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: DeviceListener|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:DeviceListener
方法or属性:|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: DeviceListener
方法 or 属性:type: ChangedType;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:DeviceListener
方法or属性:type: ChangedType;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDevice
类名: DeviceListener
方法 or 属性:deviceId: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:DeviceListener
方法or属性:deviceId: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function on(type: "change", listener: Callback\): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function off(type: "change", listener?: Callback\): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisRange
方法or属性:fuzz: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisRange
方法or属性:flat: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:AxisRange
方法or属性:resolution: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:bus: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:product: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:vendor: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:version: number;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:phys: string;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:InputDeviceData
方法or属性:uniq: string;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getDeviceList(callback: AsyncCallback\>): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getDeviceList(): Promise\>;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getDeviceInfo(deviceId: number, callback: AsyncCallback\): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getDeviceInfo(deviceId: number): Promise\;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function supportKeys(deviceId: number, keys: Array\, callback: AsyncCallback\>): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function supportKeys(deviceId: number, keys: Array\): Promise\>;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getKeyboardType(deviceId: number, callback: AsyncCallback\): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|类名:inputDevice
方法or属性:function getKeyboardType(deviceId: number): Promise\;|@ohos.multimodalInput.inputDevice.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg
方法 or 属性: MSG_COOPERATE_INFO_START = 200|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg
方法 or 属性: MSG_COOPERATE_INFO_SUCCESS = 201|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg
方法 or 属性: MSG_COOPERATE_INFO_FAIL = 202|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg
方法 or 属性: MSG_COOPERATE_STATE_ON = 500|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: EventMsg
方法 or 属性: MSG_COOPERATE_STATE_OFF = 501|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function enable(enable: boolean, callback: AsyncCallback\): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function enable(enable: boolean): Promise\;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback\): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise\;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function stop(callback: AsyncCallback\): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function stop(): Promise\;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function getState(deviceDescriptor: string, callback: AsyncCallback\<{ state: boolean }>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function getState(deviceDescriptor: string): Promise\<{ state: boolean }>;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function on(type: 'cooperation', callback: AsyncCallback\<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputDeviceCooperate
类名: inputDeviceCooperate
方法 or 属性: function off(type: 'cooperation', callback?: AsyncCallback\): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent
方法 or 属性: id: number;|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent
方法 or 属性: deviceId: number;|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent
方法 or 属性: actionTime: number;|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent
方法 or 属性: screenId: number;|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.inputEvent
类名: InputEvent
方法 or 属性: windowId: number;|@ohos.multimodalInput.inputEvent.d.ts| +|新增|NA|类名:inputMonitor
方法or属性:function on(type:"mouse", receiver:Callback\):void;|@ohos.multimodalInput.inputMonitor.d.ts| +|新增|NA|类名:inputMonitor
方法or属性:function off(type:"mouse", receiver?:Callback\):void;|@ohos.multimodalInput.inputMonitor.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FN = 0|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_UNKNOWN = -1|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HOME = 1|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BACK = 2|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_PLAY_PAUSE = 10|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_STOP = 11|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_NEXT = 12|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_PREVIOUS = 13|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_REWIND = 14|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_FAST_FORWARD = 15|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VOLUME_UP = 16|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VOLUME_DOWN = 17|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_POWER = 18|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CAMERA = 19|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VOLUME_MUTE = 22|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MUTE = 23|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_UP = 40|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_DOWN = 41|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_0 = 2000|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_1 = 2001|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_2 = 2002|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_3 = 2003|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_4 = 2004|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_5 = 2005|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_6 = 2006|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_7 = 2007|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_8 = 2008|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_9 = 2009|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_STAR = 2010|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_POUND = 2011|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DPAD_UP = 2012|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DPAD_DOWN = 2013|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DPAD_LEFT = 2014|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DPAD_RIGHT = 2015|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DPAD_CENTER = 2016|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_A = 2017|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_B = 2018|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_C = 2019|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_D = 2020|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_E = 2021|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F = 2022|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_G = 2023|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_H = 2024|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_I = 2025|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_J = 2026|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_K = 2027|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_L = 2028|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_M = 2029|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_N = 2030|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_O = 2031|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_P = 2032|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_Q = 2033|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_R = 2034|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_S = 2035|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_T = 2036|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_U = 2037|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_V = 2038|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_W = 2039|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_X = 2040|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_Y = 2041|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_Z = 2042|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_COMMA = 2043|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PERIOD = 2044|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ALT_LEFT = 2045|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ALT_RIGHT = 2046|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SHIFT_LEFT = 2047|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SHIFT_RIGHT = 2048|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TAB = 2049|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SPACE = 2050|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SYM = 2051|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EXPLORER = 2052|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ENVELOPE = 2053|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ENTER = 2054|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DEL = 2055|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_GRAVE = 2056|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MINUS = 2057|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EQUALS = 2058|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_LEFT_BRACKET = 2059|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_RIGHT_BRACKET = 2060|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BACKSLASH = 2061|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SEMICOLON = 2062|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_APOSTROPHE = 2063|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SLASH = 2064|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_AT = 2065|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PLUS = 2066|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MENU = 2067|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PAGE_UP = 2068|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PAGE_DOWN = 2069|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ESCAPE = 2070|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FORWARD_DEL = 2071|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CTRL_LEFT = 2072|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CTRL_RIGHT = 2073|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CAPS_LOCK = 2074|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCROLL_LOCK = 2075|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_META_LEFT = 2076|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_META_RIGHT = 2077|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FUNCTION = 2078|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SYSRQ = 2079|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BREAK = 2080|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MOVE_HOME = 2081|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MOVE_END = 2082|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_INSERT = 2083|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FORWARD = 2084|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_PLAY = 2085|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_PAUSE = 2086|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_CLOSE = 2087|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_EJECT = 2088|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_RECORD = 2089|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F1 = 2090|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F2 = 2091|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F3 = 2092|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F4 = 2093|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F5 = 2094|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F6 = 2095|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F7 = 2096|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F8 = 2097|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F9 = 2098|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F10 = 2099|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F11 = 2100|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F12 = 2101|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUM_LOCK = 2102|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_0 = 2103|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_1 = 2104|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_2 = 2105|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_3 = 2106|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_4 = 2107|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_5 = 2108|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_6 = 2109|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_7 = 2110|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_8 = 2111|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_9 = 2112|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_DIVIDE = 2113|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_MULTIPLY = 2114|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_SUBTRACT = 2115|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_ADD = 2116|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_DOT = 2117|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_COMMA = 2118|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_ENTER = 2119|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_EQUALS = 2120|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_LEFT_PAREN = 2121|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_RIGHT_PAREN = 2122|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VIRTUAL_MULTITASK = 2210|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SLEEP = 2600|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ZENKAKU_HANKAKU = 2601|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_102ND = 2602|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_RO = 2603|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KATAKANA = 2604|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HIRAGANA = 2605|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HENKAN = 2606|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KATAKANA_HIRAGANA = 2607|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MUHENKAN = 2608|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_LINEFEED = 2609|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MACRO = 2610|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NUMPAD_PLUSMINUS = 2611|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCALE = 2612|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HANGUEL = 2613|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HANJA = 2614|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_YEN = 2615|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_STOP = 2616|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_AGAIN = 2617|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROPS = 2618|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_UNDO = 2619|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_COPY = 2620|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_OPEN = 2621|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PASTE = 2622|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FIND = 2623|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CUT = 2624|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HELP = 2625|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CALC = 2626|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FILE = 2627|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BOOKMARKS = 2628|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NEXT = 2629|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PLAYPAUSE = 2630|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PREVIOUS = 2631|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_STOPCD = 2632|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CONFIG = 2634|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_REFRESH = 2635|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EXIT = 2636|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EDIT = 2637|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCROLLUP = 2638|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCROLLDOWN = 2639|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NEW = 2640|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_REDO = 2641|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CLOSE = 2642|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PLAY = 2643|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BASSBOOST = 2644|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PRINT = 2645|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CHAT = 2646|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FINANCE = 2647|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CANCEL = 2648|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDILLUM_TOGGLE = 2649|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDILLUM_DOWN = 2650|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDILLUM_UP = 2651|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SEND = 2652|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_REPLY = 2653|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FORWARDMAIL = 2654|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SAVE = 2655|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DOCUMENTS = 2656|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VIDEO_NEXT = 2657|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VIDEO_PREV = 2658|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_CYCLE = 2659|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_ZERO = 2660|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DISPLAY_OFF = 2661|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_MISC = 2662|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_GOTO = 2663|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_INFO = 2664|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROGRAM = 2665|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PVR = 2666|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SUBTITLE = 2667|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FULL_SCREEN = 2668|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KEYBOARD = 2669|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ASPECT_RATIO = 2670|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PC = 2671|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TV = 2672|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TV2 = 2673|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VCR = 2674|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VCR2 = 2675|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SAT = 2676|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CD = 2677|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TAPE = 2678|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TUNER = 2679|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PLAYER = 2680|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DVD = 2681|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_AUDIO = 2682|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VIDEO = 2683|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEMO = 2684|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CALENDAR = 2685|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_RED = 2686|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_GREEN = 2687|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_YELLOW = 2688|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BLUE = 2689|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CHANNELUP = 2690|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CHANNELDOWN = 2691|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_LAST = 2692|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_RESTART = 2693|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SLOW = 2694|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SHUFFLE = 2695|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VIDEOPHONE = 2696|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_GAMES = 2697|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ZOOMIN = 2698|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ZOOMOUT = 2699|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ZOOMRESET = 2700|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_WORDPROCESSOR = 2701|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EDITOR = 2702|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SPREADSHEET = 2703|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_GRAPHICSEDITOR = 2704|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PRESENTATION = 2705|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DATABASE = 2706|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_NEWS = 2707|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_VOICEMAIL = 2708|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ADDRESSBOOK = 2709|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MESSENGER = 2710|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_TOGGLE = 2711|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SPELLCHECK = 2712|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_COFFEE = 2713|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MEDIA_REPEAT = 2714|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_IMAGES = 2715|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BUTTONCONFIG = 2716|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_TASKMANAGER = 2717|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_JOURNAL = 2718|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CONTROLPANEL = 2719|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_APPSELECT = 2720|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCREENSAVER = 2721|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ASSISTANT = 2722|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBD_LAYOUT_NEXT = 2723|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_MIN = 2724|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BRIGHTNESS_MAX = 2725|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_PREV = 2726|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_NEXT = 2727|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_PREVGROUP = 2728|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_NEXTGROUP = 2729|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_ACCEPT = 2730|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_KBDINPUTASSIST_CANCEL = 2731|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_FRONT = 2800|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SETUP = 2801|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_WAKEUP = 2802|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SENDFILE = 2803|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DELETEFILE = 2804|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_XFER = 2805|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROG1 = 2806|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROG2 = 2807|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MSDOS = 2808|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SCREENLOCK = 2809|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DIRECTION_ROTATE_DISPLAY = 2810|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CYCLEWINDOWS = 2811|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_COMPUTER = 2812|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_EJECTCLOSECD = 2813|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ISO = 2814|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_MOVE = 2815|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F13 = 2816|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F14 = 2817|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F15 = 2818|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F16 = 2819|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F17 = 2820|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F18 = 2821|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F19 = 2822|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F20 = 2823|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F21 = 2824|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F22 = 2825|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F23 = 2826|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_F24 = 2827|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROG3 = 2828|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_PROG4 = 2829|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_DASHBOARD = 2830|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SUSPEND = 2831|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_HP = 2832|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SOUND = 2833|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_QUESTION = 2834|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CONNECT = 2836|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SPORT = 2837|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SHOP = 2838|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_ALTERASE = 2839|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_SWITCHVIDEOMODE = 2841|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BATTERY = 2842|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BLUETOOTH = 2843|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_WLAN = 2844|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_UWB = 2845|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_WWAN_WIMAX = 2846|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_RFKILL = 2847|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_CHANNEL = 3001|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_0 = 3100|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_1 = 3101|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_2 = 3102|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_3 = 3103|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_4 = 3104|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_5 = 3105|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_6 = 3106|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_7 = 3107|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_8 = 3108|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyCode
类名: KeyCode
方法 or 属性: KEYCODE_BTN_9 = 3109|@ohos.multimodalInput.keyCode.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Action|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Action
方法 or 属性: CANCEL = 0|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Action
方法 or 属性: DOWN = 1|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Action
方法 or 属性: UP = 2|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Key|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Key
方法 or 属性: code: KeyCode;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Key
方法 or 属性: pressedTime: number;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: Key
方法 or 属性: deviceId: number;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: action: Action;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: key: Key;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: unicodeChar: number;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: keys: Key[];|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: ctrlKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: altKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: shiftKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: logoKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: fnKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: capsLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: numLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.keyEvent
类名: KeyEvent
方法 or 属性: scrollLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: CANCEL = 0|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: MOVE = 1|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: BUTTON_DOWN = 2|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: BUTTON_UP = 3|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: AXIS_BEGIN = 4|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: AXIS_UPDATE = 5|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Action
方法 or 属性: AXIS_END = 6|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: LEFT = 0|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: MIDDLE = 1|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: RIGHT = 2|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: SIDE = 3|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: EXTRA = 4|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: FORWARD = 5|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: BACK = 6|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Button
方法 or 属性: TASK = 7|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Axis|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Axis
方法 or 属性: SCROLL_VERTICAL = 0|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Axis
方法 or 属性: SCROLL_HORIZONTAL = 1|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: Axis
方法 or 属性: PINCH = 2|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: AxisValue|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: AxisValue
方法 or 属性: axis: Axis;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: AxisValue
方法 or 属性: value: number|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: action: Action;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: screenX: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: screenY: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: windowX: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: windowY: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: rawDeltaX: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: rawDeltaY: number;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: button: Button;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: pressedButtons: Button[];|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: axes: AxisValue[];|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: pressedKeys: KeyCode[];|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: ctrlKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: altKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: shiftKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: logoKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: fnKey:boolean|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: capsLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: numLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.mouseEvent
类名: MouseEvent
方法 or 属性: scrollLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: DEFAULT|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: SOUTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: WEST_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH_SOUTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH_EAST_SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: NORTH_WEST_SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: CROSS|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: CURSOR_COPY|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: CURSOR_FORBID|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: COLOR_SUCKER|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: HAND_GRABBING|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: HAND_OPEN|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: HAND_POINTING|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: HELP|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MOVE|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: RESIZE_LEFT_RIGHT|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: RESIZE_UP_DOWN|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: SCREENSHOT_CHOOSE|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: SCREENSHOT_CURSOR|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: TEXT_CURSOR|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: ZOOM_IN|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: ZOOM_OUT|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_SOUTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_NORTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_NORTH_SOUTH|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_NORTH_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_NORTH_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: PointerStyle
方法 or 属性: MIDDLE_BTN_NORTH_SOUTH_WEST_EAST|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerSpeed(speed: number, callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerSpeed(speed: number): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function getPointerSpeed(callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function getPointerSpeed(): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerStyle(windowId: number, pointerStyle: PointerStyle, callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerStyle(windowId: number, pointerStyle: PointerStyle): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function getPointerStyle(windowId: number, callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function getPointerStyle(windowId: number): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerVisible(visible: boolean, callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function setPointerVisible(visible: boolean): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function isPointerVisible(callback: AsyncCallback\): void;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.pointer
类名: pointer
方法 or 属性: function isPointerVisible(): Promise\;|@ohos.multimodalInput.pointer.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Action|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Action
方法 or 属性: CANCEL = 0|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Action
方法 or 属性: DOWN = 1|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Action
方法 or 属性: MOVE = 2|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Action
方法 or 属性: UP = 3|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: FINGER = 0|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: PEN = 1|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: RUBBER = 2|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: BRUSH = 3|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: PENCIL = 4|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: AIRBRUSH = 5|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: MOUSE = 6|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: ToolType
方法 or 属性: LENS = 7|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: SourceType|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: SourceType
方法 or 属性: TOUCH_SCREEN = 0|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: SourceType
方法 or 属性: PEN = 1|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: SourceType
方法 or 属性: TOUCH_PAD = 2|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: id: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: pressedTime: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: screenX: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: screenY: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: windowX: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: windowY: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: pressure: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: width: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: height: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: tiltX: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: tiltY: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: toolX: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: toolY: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: toolWidth: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: toolHeight: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: rawX: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: rawY: number;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: Touch
方法 or 属性: toolType: ToolType;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: TouchEvent|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: TouchEvent
方法 or 属性: action: Action;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: TouchEvent
方法 or 属性: touch: Touch;|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: TouchEvent
方法 or 属性: touches: Touch[];|@ohos.multimodalInput.touchEvent.d.ts| +|新增|NA|模块名: ohos.multimodalInput.touchEvent
类名: TouchEvent
方法 or 属性: sourceType: SourceType;|@ohos.multimodalInput.touchEvent.d.ts| +|废弃版本有变化|类名:inputDevice
方法 or 属性:function getDeviceIds(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:inputDevice
方法 or 属性:function getDeviceIds(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|类名:inputDevice
方法 or 属性:function getDeviceIds(): Promise\>;
废弃版本:N/A|类名:inputDevice
方法 or 属性:function getDeviceIds(): Promise\>;
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|类名:inputDevice
方法 or 属性:function getDevice(deviceId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:inputDevice
方法 or 属性:function getDevice(deviceId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|类名:inputDevice
方法 or 属性:function getDevice(deviceId: number): Promise\;
废弃版本:N/A|类名:inputDevice
方法 or 属性:function getDevice(deviceId: number): Promise\;
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:N/A|类名:SourceType
方法 or 属性:type SourceType = 'keyboard' \| 'mouse' \| 'touchpad' \| 'touchscreen' \| 'joystick' \| 'trackball';
起始版本:9|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:AxisRange
起始版本:N/A|类名:AxisRange
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:AxisRange
方法 or 属性:source: SourceType;
起始版本:N/A|类名:AxisRange
方法 or 属性:source: SourceType;
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:AxisRange
方法 or 属性:min: number;
起始版本:N/A|类名:AxisRange
方法 or 属性:min: number;
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:InputDeviceData
起始版本:N/A|类名:InputDeviceData
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:InputDeviceData
方法 or 属性:id: number;
起始版本:N/A|类名:InputDeviceData
方法 or 属性:id: number;
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:InputDeviceData
方法 or 属性:name: string;
起始版本:N/A|类名:InputDeviceData
方法 or 属性:name: string;
起始版本:8|@ohos.multimodalInput.inputDevice.d.ts| +|起始版本有变化|类名:KeyEvent
起始版本:N/A|类名:KeyEvent
起始版本:8|@ohos.multimodalInput.inputEventClient.d.ts| +|新增(错误码)|NA|类名:inputConsumer
方法 or 属性:function on(type: "key", keyOptions: KeyOptions, callback: Callback\): void;
错误码内容: 401|@ohos.multimodalInput.inputConsumer.d.ts| +|新增(错误码)|NA|类名:inputConsumer
方法 or 属性:function off(type: "key", keyOptions: KeyOptions, callback?: Callback\): void;
错误码内容: 401|@ohos.multimodalInput.inputConsumer.d.ts| +|新增(错误码)|NA|类名:inputEventClient
方法 or 属性:function injectEvent({KeyEvent: KeyEvent}): void;
错误码内容: 401|@ohos.multimodalInput.inputEventClient.d.ts| +|新增(错误码)|NA|类名:inputMonitor
方法 or 属性:function on(type:"touch", receiver:TouchEventReceiver):void;
错误码内容: 401, 201|@ohos.multimodalInput.inputMonitor.d.ts| +|新增(错误码)|NA|类名:inputMonitor
方法 or 属性:function off(type:"touch", receiver?:TouchEventReceiver):void;
错误码内容: 401, 201|@ohos.multimodalInput.inputMonitor.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multimedia.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multimedia.md new file mode 100644 index 0000000000000000000000000000000000000000..66cd73a47249a4dc47fdf9083babb51306be474d --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-multimedia.md @@ -0,0 +1,1682 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.effectKit
类名: effectKit|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Filter|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Filter
方法 or 属性: blur(radius:number): Filter;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Filter
方法 or 属性: brightness(bright:number): Filter;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Filter
方法 or 属性: grayscale(): Filter;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Filter
方法 or 属性: getPixelMap(): image.PixelMap;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: ColorPicker|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: ColorPicker
方法 or 属性: getMainColor(): Promise\;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: ColorPicker
方法 or 属性: getMainColorSync(): Color;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Color|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Color
方法 or 属性: red: number;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Color
方法 or 属性: green: number;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Color
方法 or 属性: blue: number;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: Color
方法 or 属性: alpha: number;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: effectKit
方法 or 属性: function createEffect(source: image.PixelMap): Filter;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: effectKit
方法 or 属性: function createColorPicker(source: image.PixelMap): Promise\;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.effectKit
类名: effectKit
方法 or 属性: function createColorPicker(source: image.PixelMap, callback: AsyncCallback\): void;|@ohos.effectKit.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_INVALID_PARAM = 6800101|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_INVALID_PARAM = 6800101|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_NO_MEMORY = 6800102|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_NO_MEMORY = 6800102|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_ILLEGAL_STATE = 6800103|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_ILLEGAL_STATE = 6800103|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_UNSUPPORTED = 6800104|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_UNSUPPORTED = 6800104|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_TIMEOUT = 6800105|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_TIMEOUT = 6800105|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_STREAM_LIMIT = 6800201|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_STREAM_LIMIT = 6800201|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioErrors
方法 or 属性:ERROR_SYSTEM = 6800301|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioErrors
方法or属性:ERROR_SYSTEM = 6800301|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: audio
方法 or 属性:const LOCAL_NETWORK_ID: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:audio
方法or属性:const LOCAL_NETWORK_ID: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: audio
方法 or 属性:const DEFAULT_VOLUME_GROUP_ID: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:audio
方法or属性:const DEFAULT_VOLUME_GROUP_ID: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: audio
方法 or 属性:const DEFAULT_INTERRUPT_GROUP_ID: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:audio
方法or属性:const DEFAULT_INTERRUPT_GROUP_ID: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: audio
方法 or 属性:function createTonePlayer(options: AudioRendererInfo, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:audio
方法or属性:function createTonePlayer(options: AudioRendererInfo, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: audio
方法 or 属性:function createTonePlayer(options: AudioRendererInfo): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:audio
方法or属性:function createTonePlayer(options: AudioRendererInfo): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_NEW = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_PREPARED = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_RUNNING = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_STOPPED = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_RELEASED = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioState
方法or属性:STATE_PAUSED = 5|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeType
方法 or 属性:ALL = 100|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeType
方法or属性:ALL = 100|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: DeviceFlag
方法 or 属性:NONE_DEVICES_FLAG = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:DeviceFlag
方法or属性:NONE_DEVICES_FLAG = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: DeviceFlag
方法 or 属性:DISTRIBUTED_OUTPUT_DEVICES_FLAG = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:DeviceFlag
方法or属性:DISTRIBUTED_OUTPUT_DEVICES_FLAG = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: DeviceFlag
方法 or 属性:DISTRIBUTED_INPUT_DEVICES_FLAG = 8|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:DeviceFlag
方法or属性:DISTRIBUTED_INPUT_DEVICES_FLAG = 8|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: DeviceFlag
方法 or 属性:ALL_DISTRIBUTED_DEVICES_FLAG = 12|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:DeviceFlag
方法or属性:ALL_DISTRIBUTED_DEVICES_FLAG = 12|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: DeviceType
方法 or 属性:DEFAULT = 1000|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:DeviceType
方法or属性:DEFAULT = 1000|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: CommunicationDeviceType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:CommunicationDeviceType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: CommunicationDeviceType
方法 or 属性:SPEAKER = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:CommunicationDeviceType
方法or属性:SPEAKER = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioSampleFormat
方法 or 属性:SAMPLE_FORMAT_F32LE = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioSampleFormat
方法or属性:SAMPLE_FORMAT_F32LE = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: StreamUsage
方法 or 属性:STREAM_USAGE_VOICE_ASSISTANT = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:StreamUsage
方法or属性:STREAM_USAGE_VOICE_ASSISTANT = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptRequestType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptRequestType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptRequestType
方法 or 属性:INTERRUPT_REQUEST_TYPE_DEFAULT = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptRequestType
方法or属性:INTERRUPT_REQUEST_TYPE_DEFAULT = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererFilter|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererFilter
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererFilter
方法 or 属性:uid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererFilter
方法or属性:uid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererFilter
方法 or 属性:rendererInfo?: AudioRendererInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererFilter
方法or属性:rendererInfo?: AudioRendererInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererFilter
方法 or 属性:rendererId?: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererFilter
方法or属性:rendererId?: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptMode|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptMode
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptMode
方法 or 属性:SHARE_MODE = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptMode
方法or属性:SHARE_MODE = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptMode
方法 or 属性:INDEPENDENT_MODE = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptMode
方法or属性:INDEPENDENT_MODE = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptForceType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptForceType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptForceType
方法 or 属性:INTERRUPT_FORCE = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptForceType
方法or属性:INTERRUPT_FORCE = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptForceType
方法 or 属性:INTERRUPT_SHARE = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptForceType
方法or属性:INTERRUPT_SHARE = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptEvent|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptEvent
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptEvent
方法 or 属性:eventType: InterruptType;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptEvent
方法or属性:eventType: InterruptType;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptEvent
方法 or 属性:forceType: InterruptForceType;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptEvent
方法or属性:forceType: InterruptForceType;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptEvent
方法 or 属性:hintType: InterruptHint;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptEvent
方法or属性:hintType: InterruptHint;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioScene
方法or属性:AUDIO_SCENE_RINGING = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioScene
方法or属性:AUDIO_SCENE_PHONE_CALL = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioScene
方法or属性:AUDIO_SCENE_VOICE_CHAT = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioManager
方法or属性:getVolumeManager(): AudioVolumeManager;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioManager
方法or属性:getStreamManager(): AudioStreamManager;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioManager
方法or属性:getRoutingManager(): AudioRoutingManager;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptRequestResultType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptRequestResultType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptRequestResultType
方法 or 属性:INTERRUPT_REQUEST_GRANT = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptRequestResultType
方法or属性:INTERRUPT_REQUEST_GRANT = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptRequestResultType
方法 or 属性:INTERRUPT_REQUEST_REJECT = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptRequestResultType
方法or属性:INTERRUPT_REQUEST_REJECT = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptResult|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptResult
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptResult
方法 or 属性:requestResult: InterruptRequestResultType;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptResult
方法or属性:requestResult: InterruptRequestResultType;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: InterruptResult
方法 or 属性:interruptNode: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:InterruptResult
方法or属性:interruptNode: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:getDevices(deviceFlag: DeviceFlag): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:off(type: 'deviceChange', callback?: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:off(type: 'deviceChange', callback?: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:isCommunicationDeviceActive(deviceType: CommunicationDeviceType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:isCommunicationDeviceActive(deviceType: CommunicationDeviceType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:isCommunicationDeviceActive(deviceType: CommunicationDeviceType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:isCommunicationDeviceActive(deviceType: CommunicationDeviceType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectInputDevice(inputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectInputDevice(inputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRoutingManager
方法 or 属性:selectInputDevice(inputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRoutingManager
方法or属性:selectInputDevice(inputAudioDevices: AudioDeviceDescriptors): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:getCurrentAudioRendererInfoArray(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:getCurrentAudioRendererInfoArray(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:getCurrentAudioRendererInfoArray(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:getCurrentAudioRendererInfoArray(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:getCurrentAudioCapturerInfoArray(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:getCurrentAudioCapturerInfoArray(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:getCurrentAudioCapturerInfoArray(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:getCurrentAudioCapturerInfoArray(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:on(type: "audioRendererChange", callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:on(type: "audioRendererChange", callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:off(type: "audioRendererChange"): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:off(type: "audioRendererChange"): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:on(type: "audioCapturerChange", callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:on(type: "audioCapturerChange", callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:off(type: "audioCapturerChange"): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:off(type: "audioCapturerChange"): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:isActive(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:isActive(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioStreamManager
方法 or 属性:isActive(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioStreamManager
方法or属性:isActive(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法 or 属性:getVolumeGroupInfos(networkId: string, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:getVolumeGroupInfos(networkId: string, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法 or 属性:getVolumeGroupInfos(networkId: string): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:getVolumeGroupInfos(networkId: string): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法 or 属性:getVolumeGroupManager(groupId: number, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:getVolumeGroupManager(groupId: number, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法 or 属性:getVolumeGroupManager(groupId: number): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:getVolumeGroupManager(groupId: number): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeManager
方法or属性:on(type: 'volumeChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setVolume(volumeType: AudioVolumeType, volume: number): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getMinVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getMaxVolume(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:mute(volumeType: AudioVolumeType, mute: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:isMute(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:isMute(volumeType: AudioVolumeType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:isMute(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:isMute(volumeType: AudioVolumeType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setRingerMode(mode: AudioRingMode, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setRingerMode(mode: AudioRingMode, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setRingerMode(mode: AudioRingMode): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setRingerMode(mode: AudioRingMode): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getRingerMode(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getRingerMode(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:getRingerMode(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:getRingerMode(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:on(type: 'ringerModeChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:on(type: 'ringerModeChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setMicrophoneMute(mute: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setMicrophoneMute(mute: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:setMicrophoneMute(mute: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:setMicrophoneMute(mute: boolean): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:isMicrophoneMute(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:isMicrophoneMute(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:isMicrophoneMute(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:isMicrophoneMute(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法 or 属性:on(type: 'micStateChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioVolumeGroupManager
方法or属性:on(type: 'micStateChange', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ConnectType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ConnectType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ConnectType
方法 or 属性:CONNECT_TYPE_LOCAL = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ConnectType
方法or属性:CONNECT_TYPE_LOCAL = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ConnectType
方法 or 属性:CONNECT_TYPE_DISTRIBUTED = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ConnectType
方法or属性:CONNECT_TYPE_DISTRIBUTED = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo
方法 or 属性:readonly networkId: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:readonly networkId: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo
方法 or 属性:readonly groupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:readonly groupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo
方法 or 属性:readonly mappingId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:readonly mappingId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo
方法 or 属性:readonly groupName: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:readonly groupName: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: VolumeGroupInfo
方法 or 属性:readonly type: ConnectType;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeGroupInfo
方法or属性:readonly type: ConnectType;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo
方法 or 属性:readonly streamId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:readonly streamId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo
方法 or 属性:readonly clientUid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:readonly clientUid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo
方法 or 属性:readonly rendererInfo: AudioRendererInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:readonly rendererInfo: AudioRendererInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo
方法 or 属性:readonly rendererState: AudioState;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:readonly rendererState: AudioState;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioRendererChangeInfo
方法 or 属性:readonly deviceDescriptors: AudioDeviceDescriptors;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRendererChangeInfo
方法or属性:readonly deviceDescriptors: AudioDeviceDescriptors;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo
方法 or 属性:readonly streamId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:readonly streamId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo
方法 or 属性:readonly clientUid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:readonly clientUid: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo
方法 or 属性:readonly capturerInfo: AudioCapturerInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:readonly capturerInfo: AudioCapturerInfo;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo
方法 or 属性:readonly capturerState: AudioState;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:readonly capturerState: AudioState;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioCapturerChangeInfo
方法 or 属性:readonly deviceDescriptors: AudioDeviceDescriptors;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturerChangeInfo
方法or属性:readonly deviceDescriptors: AudioDeviceDescriptors;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly id: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly id: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly name: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly name: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly address: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly address: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly sampleRates: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly sampleRates: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly channelCounts: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly channelCounts: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly channelMasks: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly channelMasks: Array\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly networkId: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly networkId: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly interruptGroupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly interruptGroupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: AudioDeviceDescriptor
方法 or 属性:readonly volumeGroupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioDeviceDescriptor
方法or属性:readonly volumeGroupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeEvent
方法or属性:volumeGroupId: number;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:VolumeEvent
方法or属性:networkId: string;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: MicStateChangeEvent|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:MicStateChangeEvent
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: MicStateChangeEvent
方法 or 属性:mute: boolean;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:MicStateChangeEvent
方法or属性:mute: boolean;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:getAudioStreamId(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:getAudioStreamId(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:setInterruptMode(mode: InterruptMode, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:setInterruptMode(mode: InterruptMode): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:setVolume(volume: number, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:setVolume(volume: number): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioRenderer
方法or属性:on(type: 'audioInterrupt', callback: Callback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: SourceType
方法 or 属性:SOURCE_TYPE_VOICE_RECOGNITION = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:SourceType
方法or属性:SOURCE_TYPE_VOICE_RECOGNITION = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturer
方法or属性:getAudioStreamId(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:AudioCapturer
方法or属性:getAudioStreamId(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_0 = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_0 = 0|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_1 = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_1 = 1|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_2 = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_2 = 2|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_3 = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_3 = 3|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_4 = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_4 = 4|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_5 = 5|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_5 = 5|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_6 = 6|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_6 = 6|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_7 = 7|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_7 = 7|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_8 = 8|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_8 = 8|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_9 = 9|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_9 = 9|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_S = 10|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_S = 10|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_P = 11|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_P = 11|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_A = 12|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_A = 12|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_B = 13|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_B = 13|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_C = 14|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_C = 14|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_DIAL_D = 15|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_DIAL_D = 15|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_DIAL = 100|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_DIAL = 100|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_BUSY = 101|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_BUSY = 101|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_CONGESTION = 102|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_CONGESTION = 102|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_RADIO_ACK = 103|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_RADIO_ACK = 103|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_RADIO_NOT_AVAILABLE = 104|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_RADIO_NOT_AVAILABLE = 104|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_CALL_WAITING = 106|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_CALL_WAITING = 106|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_SUPERVISORY_RINGTONE = 107|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_SUPERVISORY_RINGTONE = 107|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_PROPRIETARY_BEEP = 200|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_PROPRIETARY_BEEP = 200|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_PROPRIETARY_ACK = 201|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_PROPRIETARY_ACK = 201|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_PROPRIETARY_PROMPT = 203|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_PROPRIETARY_PROMPT = 203|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: ToneType
方法 or 属性:TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP = 204|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:ToneType
方法or属性:TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP = 204|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:load(type: ToneType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:load(type: ToneType, callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:load(type: ToneType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:load(type: ToneType): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:start(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:start(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:stop(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:stop(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.audio
类名: TonePlayer
方法 or 属性:release(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|类名:TonePlayer
方法or属性:release(): Promise\;|@ohos.multimedia.audio.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionType
方法 or 属性: type AVSessionType = 'audio' \| 'video';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionType
方法 or 属性: type AVSessionType = 'audio' \| 'video';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommandType
方法 or 属性: type AVControlCommandType = 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind' \|
'seek' \| 'setSpeed' \| 'setLoopMode' \| 'toggleFavorite';|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function createAVSession(context: Context, tag: string, type: AVSessionType, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function createAVSession(context: Context, tag: string, type: AVSessionType): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function getAllSessionDescriptors(callback: AsyncCallback\>>): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function getAllSessionDescriptors(): Promise\>>;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function createController(sessionId: string, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function createController(sessionId: string): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function castAudio(session: SessionToken \| 'all', audioDevices: Array\, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function castAudio(session: SessionToken \| 'all', audioDevices: Array\): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: SessionToken|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: SessionToken
方法 or 属性: sessionId: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: SessionToken
方法 or 属性: pid: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: SessionToken
方法 or 属性: uid: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function on(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function on(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function on(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function off(type: 'sessionCreate' \| 'sessionDestroy' \| 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function on(type: 'sessionServiceDie', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function off(type: 'sessionServiceDie', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function sendSystemAVKeyEvent(event: KeyEvent): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: avSession
方法 or 属性: function sendSystemControlCommand(command: AVControlCommand): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: readonly sessionId: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setAVMetadata(data: AVMetadata, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setAVMetadata(data: AVMetadata): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setAVPlaybackState(state: AVPlaybackState, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setAVPlaybackState(state: AVPlaybackState): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setLaunchAbility(ability: WantAgent, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: setLaunchAbility(ability: WantAgent): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: getController(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: getController(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: getOutputDevice(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: getOutputDevice(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'play' \| 'pause' \| 'stop' \| 'playNext' \| 'playPrevious' \| 'fastForward' \| 'rewind', callback?: () => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'seek', callback: (time: number) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'seek', callback?: (time: number) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'setSpeed', callback: (speed: number) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'setSpeed', callback?: (speed: number) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'setLoopMode', callback: (mode: LoopMode) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'toggleFavorite', callback: (assetId: string) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'handleKeyEvent', callback: (event: KeyEvent) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: on(type: 'outputDeviceChange', callback: (device: OutputDeviceInfo) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: activate(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: activate(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: deactivate(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: deactivate(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: destroy(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSession
方法 or 属性: destroy(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: assetId: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: title?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: artist?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: author?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: album?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: writer?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: composer?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: duration?: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: mediaImage?: image.PixelMap \| string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: publishDate?: Date;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: subtitle?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: description?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: lyric?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: previousAssetId?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVMetadata
方法 or 属性: nextAssetId?: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: state?: PlaybackState;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: speed?: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: position?: PlaybackPosition;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: bufferedTime?: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: loopMode?: LoopMode;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法 or 属性: isFavorite?: boolean;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackPosition|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackPosition
方法 or 属性: elapsedTime: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackPosition
方法 or 属性: updateTime: number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法 or 属性: isRemote: boolean;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法 or 属性: audioDeviceId: Array\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法 or 属性: deviceName: Array\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: LoopMode|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: LoopMode
方法 or 属性: LOOP_MODE_SEQUENCE = 0|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: LoopMode
方法 or 属性: LOOP_MODE_SINGLE = 1|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: LoopMode
方法 or 属性: LOOP_MODE_LIST = 2|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: LoopMode
方法 or 属性: LOOP_MODE_SHUFFLE = 3|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_INITIAL = 0|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_PREPARE = 1|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_PLAY = 2|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_PAUSE = 3|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_FAST_FORWARD = 4|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_REWIND = 5|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: PlaybackState
方法 or 属性: PLAYBACK_STATE_STOP = 6|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: sessionId: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: type: AVSessionType;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: sessionTag: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: elementName: ElementName;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: isActive: boolean;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: isTopSession: boolean;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法 or 属性: outputDevice: OutputDeviceInfo;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: readonly sessionId: string;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getAVPlaybackState(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getAVPlaybackState(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getAVMetadata(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getAVMetadata(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getOutputDevice(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getOutputDevice(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: sendAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: sendAVKeyEvent(event: KeyEvent): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getLaunchAbility(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getLaunchAbility(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getRealPlaybackPositionSync(): number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: isActive(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: isActive(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: destroy(callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: destroy(): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getValidCommands(callback: AsyncCallback\>): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: getValidCommands(): Promise\>;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: sendControlCommand(command: AVControlCommand, callback: AsyncCallback\): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: sendControlCommand(command: AVControlCommand): Promise\;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'metadataChange', filter: Array\ \| 'all', callback: (data: AVMetadata) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'metadataChange', callback?: (data: AVMetadata) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'playbackStateChange', filter: Array\ \| 'all', callback: (state: AVPlaybackState) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'sessionDestroy', callback: () => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'sessionDestroy', callback?: () => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'activeStateChange', callback: (isActive: boolean) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'activeStateChange', callback?: (isActive: boolean) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'validCommandChange', callback: (commands: Array\) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'validCommandChange', callback?: (commands: Array\) => void);|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: on(type: 'outputDeviceChange', callback: (device: OutputDeviceInfo) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionController
方法 or 属性: off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommand|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommand
方法 or 属性: command: AVControlCommandType;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVControlCommand
方法 or 属性: parameter?: LoopMode \| string \| number;|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_SERVICE_EXCEPTION = 6600101|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_SESSION_NOT_EXIST = 6600102|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_CONTROLLER_NOT_EXIST = 6600103|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_REMOTE_CONNECTION_ERR = 6600104|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_COMMAND_INVALID = 6600105|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_SESSION_INACTIVE = 6600106|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法 or 属性: ERR_CODE_MESSAGE_OVERLOAD = 6600107|@ohos.multimedia.avsession.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: camera|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: camera
方法 or 属性: function getCameraManager(context: Context): CameraManager;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatus|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatus
方法 or 属性: CAMERA_STATUS_APPEAR = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatus
方法 or 属性: CAMERA_STATUS_DISAPPEAR = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatus
方法 or 属性: CAMERA_STATUS_AVAILABLE = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatus
方法 or 属性: CAMERA_STATUS_UNAVAILABLE = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Profile|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Profile
方法 or 属性: readonly format: CameraFormat;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Profile
方法 or 属性: readonly size: Size;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameRateRange|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameRateRange
方法 or 属性: readonly min: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameRateRange
方法 or 属性: readonly max: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoProfile|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoProfile
方法 or 属性: readonly frameRateRange: FrameRateRange;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutputCapability|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法 or 属性: readonly previewProfiles: Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法 or 属性: readonly photoProfiles: Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法 or 属性: readonly videoProfiles: Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法 or 属性: readonly supportedMetadataObjectTypes: Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: INVALID_ARGUMENT = 7400101|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: OPERATION_NOT_ALLOWED = 7400102|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: SESSION_NOT_CONFIG = 7400103|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: SESSION_NOT_RUNNING = 7400104|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: SESSION_CONFIG_LOCKED = 7400105|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: DEVICE_SETTING_LOCKED = 7400106|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: CONFILICT_CAMERA = 7400107|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: DEVICE_DISABLED = 7400108|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraErrorCode
方法 or 属性: SERVICE_FATAL_ERROR = 7400201|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: getSupportedCameras(): Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: getSupportedOutputCapability(camera: CameraDevice): CameraOutputCapability;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: isCameraMuted(): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: isCameraMuteSupported(): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: muteCamera(mute: boolean): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createCameraInput(camera: CameraDevice): CameraInput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createCameraInput(position: CameraPosition, type: CameraType): CameraInput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createPreviewOutput(profile: Profile, surfaceId: string): PreviewOutput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createPhotoOutput(profile: Profile, surfaceId: string): PhotoOutput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createVideoOutput(profile: VideoProfile, surfaceId: string): VideoOutput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createMetadataOutput(metadataObjectTypes: Array\): MetadataOutput;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: createCaptureSession(): CaptureSession;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: on(type: 'cameraStatus', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraManager
方法 or 属性: on(type: 'cameraMute', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatusInfo|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatusInfo
方法 or 属性: camera: CameraDevice;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraStatusInfo
方法 or 属性: status: CameraStatus;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraPosition|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraPosition
方法 or 属性: CAMERA_POSITION_UNSPECIFIED = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraPosition
方法 or 属性: CAMERA_POSITION_BACK = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraPosition
方法 or 属性: CAMERA_POSITION_FRONT = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType
方法 or 属性: CAMERA_TYPE_DEFAULT = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType
方法 or 属性: CAMERA_TYPE_WIDE_ANGLE = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType
方法 or 属性: CAMERA_TYPE_ULTRA_WIDE = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType
方法 or 属性: CAMERA_TYPE_TELEPHOTO = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraType
方法 or 属性: CAMERA_TYPE_TRUE_DEPTH = 4|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ConnectionType|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ConnectionType
方法 or 属性: CAMERA_CONNECTION_BUILT_IN = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ConnectionType
方法 or 属性: CAMERA_CONNECTION_USB_PLUGIN = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ConnectionType
方法 or 属性: CAMERA_CONNECTION_REMOTE = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraDevice|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraDevice
方法 or 属性: readonly cameraId: string;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraDevice
方法 or 属性: readonly cameraPosition: CameraPosition;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraDevice
方法 or 属性: readonly cameraType: CameraType;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraDevice
方法 or 属性: readonly connectionType: ConnectionType;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Size|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Size
方法 or 属性: height: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Size
方法 or 属性: width: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Point|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Point
方法 or 属性: x: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Point
方法 or 属性: y: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput
方法 or 属性: open(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput
方法 or 属性: open(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput
方法 or 属性: close(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput
方法 or 属性: close(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraInput
方法 or 属性: on(type: 'error', camera: CameraDevice, callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraFormat|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraFormat
方法 or 属性: CAMERA_FORMAT_RGBA_8888 = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraFormat
方法 or 属性: CAMERA_FORMAT_YUV_420_SP = 1003|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraFormat
方法 or 属性: CAMERA_FORMAT_JPEG = 2000|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FlashMode|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FlashMode
方法 or 属性: FLASH_MODE_CLOSE = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FlashMode
方法 or 属性: FLASH_MODE_OPEN = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FlashMode
方法 or 属性: FLASH_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FlashMode
方法 or 属性: FLASH_MODE_ALWAYS_OPEN = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ExposureMode|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ExposureMode
方法 or 属性: EXPOSURE_MODE_LOCKED = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ExposureMode
方法 or 属性: EXPOSURE_MODE_AUTO = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ExposureMode
方法 or 属性: EXPOSURE_MODE_CONTINUOUS_AUTO = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusMode|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusMode
方法 or 属性: FOCUS_MODE_MANUAL = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusMode
方法 or 属性: FOCUS_MODE_CONTINUOUS_AUTO = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusMode
方法 or 属性: FOCUS_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusMode
方法 or 属性: FOCUS_MODE_LOCKED = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusState|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusState
方法 or 属性: FOCUS_STATE_SCAN = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusState
方法 or 属性: FOCUS_STATE_FOCUSED = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FocusState
方法 or 属性: FOCUS_STATE_UNFOCUSED = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法 or 属性: OFF = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法 or 属性: LOW = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法 or 属性: MIDDLE = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法 or 属性: HIGH = 3|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法 or 属性: AUTO = 4|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: beginConfig(): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: commitConfig(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: commitConfig(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: addInput(cameraInput: CameraInput): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: removeInput(cameraInput: CameraInput): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: addOutput(cameraOutput: CameraOutput): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: removeOutput(cameraOutput: CameraOutput): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: start(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: start(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: stop(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: stop(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: release(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: release(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: hasFlash(): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: isFlashModeSupported(flashMode: FlashMode): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getFlashMode(): FlashMode;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setFlashMode(flashMode: FlashMode): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: isExposureModeSupported(aeMode: ExposureMode): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getExposureMode(): ExposureMode;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setExposureMode(aeMode: ExposureMode): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getMeteringPoint(): Point;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setMeteringPoint(point: Point): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getExposureBiasRange(): Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setExposureBias(exposureBias: number): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getExposureValue(): number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: isFocusModeSupported(afMode: FocusMode): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getFocusMode(): FocusMode;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setFocusMode(afMode: FocusMode): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setFocusPoint(point: Point): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getFocusPoint(): Point;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getFocalLength(): number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getZoomRatioRange(): Array\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getZoomRatio(): number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setZoomRatio(zoomRatio: number): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: isVideoStabilizationModeSupported(vsMode: VideoStabilizationMode): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: getActiveVideoStabilizationMode(): VideoStabilizationMode;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: setVideoStabilizationMode(mode: VideoStabilizationMode): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: on(type: 'focusStateChange', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureSession
方法 or 属性: on(type: 'error', callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutput
方法 or 属性: release(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CameraOutput
方法 or 属性: release(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: start(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: start(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: stop(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: stop(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: on(type: 'frameStart', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: on(type: 'frameEnd', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PreviewOutput
方法 or 属性: on(type: 'error', callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ImageRotation|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ImageRotation
方法 or 属性: ROTATION_0 = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ImageRotation
方法 or 属性: ROTATION_90 = 90|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ImageRotation
方法 or 属性: ROTATION_180 = 180|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: ImageRotation
方法 or 属性: ROTATION_270 = 270|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Location|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Location
方法 or 属性: latitude: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Location
方法 or 属性: longitude: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Location
方法 or 属性: altitude: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: QualityLevel|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: QualityLevel
方法 or 属性: QUALITY_LEVEL_HIGH = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: QualityLevel
方法 or 属性: QUALITY_LEVEL_MEDIUM = 1|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: QualityLevel
方法 or 属性: QUALITY_LEVEL_LOW = 2|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法 or 属性: quality?: QualityLevel;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法 or 属性: rotation?: ImageRotation;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法 or 属性: location?: Location;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法 or 属性: mirror?: boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: capture(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: capture(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: capture(setting: PhotoCaptureSetting, callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: capture(setting?: PhotoCaptureSetting): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: isMirrorSupported(): boolean;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: on(type: 'captureStart', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: on(type: 'frameShutter', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: on(type: 'captureEnd', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: PhotoOutput
方法 or 属性: on(type: 'error', callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameShutterInfo|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameShutterInfo
方法 or 属性: captureId: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: FrameShutterInfo
方法 or 属性: timestamp: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureEndInfo|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureEndInfo
方法 or 属性: captureId: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: CaptureEndInfo
方法 or 属性: frameCount: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: start(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: start(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: stop(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: stop(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: on(type: 'frameStart', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: on(type: 'frameEnd', callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: VideoOutput
方法 or 属性: on(type: 'error', callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObjectType|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObjectType
方法 or 属性: FACE_DETECTION = 0|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Rect|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Rect
方法 or 属性: topLeftX: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Rect
方法 or 属性: topLeftY: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Rect
方法 or 属性: width: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: Rect
方法 or 属性: height: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObject|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObject
方法 or 属性: readonly type: MetadataObjectType;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObject
方法 or 属性: readonly timestamp: number;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataObject
方法 or 属性: readonly boundingBox: Rect;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: start(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: start(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: stop(callback: AsyncCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: stop(): Promise\;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: on(type: 'metadataObjectsAvailable', callback: AsyncCallback\>): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.camera
类名: MetadataOutput
方法 or 属性: on(type: 'error', callback: ErrorCallback\): void;|@ohos.multimedia.camera.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:BGRA_8888 = 4|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:BGRA_8888 = 4|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:RGB_888 = 5|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:RGB_888 = 5|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:ALPHA_8 = 6|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:ALPHA_8 = 6|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:RGBA_F16 = 7|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:RGBA_F16 = 7|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:NV21 = 8|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:NV21 = 8|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMapFormat
方法 or 属性:NV12 = 9|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMapFormat
方法or属性:NV12 = 9|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PropertyKey
方法 or 属性:DATE_TIME_ORIGINAL = "DateTimeOriginal"|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PropertyKey
方法or属性:DATE_TIME_ORIGINAL = "DateTimeOriginal"|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PropertyKey
方法 or 属性:EXPOSURE_TIME = "ExposureTime"|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PropertyKey
方法or属性:EXPOSURE_TIME = "ExposureTime"|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PropertyKey
方法 or 属性:SCENE_TYPE = "SceneType"|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PropertyKey
方法or属性:SCENE_TYPE = "SceneType"|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PropertyKey
方法 or 属性:ISO_SPEED_RATINGS = "ISOSpeedRatings"|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PropertyKey
方法or属性:ISO_SPEED_RATINGS = "ISOSpeedRatings"|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PropertyKey
方法 or 属性:F_NUMBER = "FNumber"|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PropertyKey
方法or属性:F_NUMBER = "FNumber"|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageFormat|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageFormat
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageFormat
方法 or 属性:YCBCR_422_SP = 1000|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageFormat
方法or属性:YCBCR_422_SP = 1000|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageFormat
方法 or 属性:JPEG = 2000|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageFormat
方法or属性:JPEG = 2000|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: AlphaType|@ohos.multimedia.image.d.ts| +|新增|NA|类名:AlphaType
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: AlphaType
方法 or 属性:UNKNOWN = 0|@ohos.multimedia.image.d.ts| +|新增|NA|类名:AlphaType
方法or属性:UNKNOWN = 0|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: AlphaType
方法 or 属性:OPAQUE = 1|@ohos.multimedia.image.d.ts| +|新增|NA|类名:AlphaType
方法or属性:OPAQUE = 1|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: AlphaType
方法 or 属性:PREMUL = 2|@ohos.multimedia.image.d.ts| +|新增|NA|类名:AlphaType
方法or属性:PREMUL = 2|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: AlphaType
方法 or 属性:UNPREMUL = 3|@ohos.multimedia.image.d.ts| +|新增|NA|类名:AlphaType
方法or属性:UNPREMUL = 3|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ScaleMode|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ScaleMode
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ScaleMode
方法 or 属性:FIT_TARGET_SIZE = 0|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ScaleMode
方法or属性:FIT_TARGET_SIZE = 0|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ScaleMode
方法 or 属性:CENTER_CROP = 1|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ScaleMode
方法or属性:CENTER_CROP = 1|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ComponentType|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ComponentType
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ComponentType
方法 or 属性:YUV_Y = 1|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ComponentType
方法or属性:YUV_Y = 1|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ComponentType
方法 or 属性:YUV_U = 2|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ComponentType
方法or属性:YUV_U = 2|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ComponentType
方法 or 属性:YUV_V = 3|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ComponentType
方法or属性:YUV_V = 3|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ComponentType
方法 or 属性:JPEG = 4|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ComponentType
方法or属性:JPEG = 4|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageInfo
方法 or 属性:density: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageInfo
方法or属性:density: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PackingOption
方法 or 属性:bufferSize?: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PackingOption
方法or属性:bufferSize?: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: DecodingOptions
方法 or 属性:fitDensity?: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:DecodingOptions
方法or属性:fitDensity?: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Component|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Component
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Component
方法 or 属性:readonly componentType: ComponentType;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Component
方法or属性:readonly componentType: ComponentType;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Component
方法 or 属性:readonly rowStride: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Component
方法or属性:readonly rowStride: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Component
方法 or 属性:readonly pixelStride: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Component
方法or属性:readonly pixelStride: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Component
方法 or 属性:readonly byteBuffer: ArrayBuffer;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Component
方法or属性:readonly byteBuffer: ArrayBuffer;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: InitializationOptions
方法 or 属性:alphaType?: AlphaType;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:InitializationOptions
方法or属性:alphaType?: AlphaType;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: InitializationOptions
方法 or 属性:scaleMode?: ScaleMode;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:InitializationOptions
方法or属性:scaleMode?: ScaleMode;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: SourceOptions|@ohos.multimedia.image.d.ts| +|新增|NA|类名:SourceOptions
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: SourceOptions
方法 or 属性:sourceDensity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:SourceOptions
方法or属性:sourceDensity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: SourceOptions
方法 or 属性:sourcePixelFormat?: PixelMapFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:SourceOptions
方法or属性:sourcePixelFormat?: PixelMapFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: SourceOptions
方法 or 属性:sourceSize?: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:SourceOptions
方法or属性:sourceSize?: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageSource(uri: string, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageSource(uri: string, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageSource(fd: number, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageSource(fd: number, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageSource(buf: ArrayBuffer): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageSource(buf: ArrayBuffer): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function CreateIncrementalSource(buf: ArrayBuffer): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function CreateIncrementalSource(buf: ArrayBuffer): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageReceiver(width: number, height: number, format: number, capacity: number): ImageReceiver;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageReceiver(width: number, height: number, format: number, capacity: number): ImageReceiver;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: image
方法 or 属性:function createImageCreator(width: number, height: number, format: number, capacity: number): ImageCreator;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:image
方法or属性:function createImageCreator(width: number, height: number, format: number, capacity: number): ImageCreator;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:getDensity():number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:getDensity():number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:opacity(rate: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:opacity(rate: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:opacity(rate: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:opacity(rate: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:createAlphaPixelmap(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:createAlphaPixelmap(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:createAlphaPixelmap(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:createAlphaPixelmap(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:scale(x: number, y: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:scale(x: number, y: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:scale(x: number, y: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:scale(x: number, y: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:translate(x: number, y: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:translate(x: number, y: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:translate(x: number, y: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:translate(x: number, y: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:rotate(angle: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:rotate(angle: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:rotate(angle: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:rotate(angle: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:flip(horizontal: boolean, vertical: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:flip(horizontal: boolean, vertical: boolean, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:flip(horizontal: boolean, vertical: boolean): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:flip(horizontal: boolean, vertical: boolean): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:crop(region: Region, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:crop(region: Region, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: PixelMap
方法 or 属性:crop(region: Region): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:PixelMap
方法or属性:crop(region: Region): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageSource
方法or属性:modifyImageProperty(key: string, value: string): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageSource
方法or属性:modifyImageProperty(key: string, value: string, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageSource
方法or属性:updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageSource
方法or属性:updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:clipRect: Region;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:clipRect: Region;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:readonly size: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:readonly size: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:readonly format: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:readonly format: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:getComponent(componentType: ComponentType, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:getComponent(componentType: ComponentType, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:getComponent(componentType: ComponentType): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:getComponent(componentType: ComponentType): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: Image
方法 or 属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:Image
方法or属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readonly size: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readonly size: Size;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readonly capacity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readonly capacity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readonly format: ImageFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readonly format: ImageFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:getReceivingSurfaceId(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:getReceivingSurfaceId(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:getReceivingSurfaceId(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:getReceivingSurfaceId(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readLatestImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readLatestImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readLatestImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readLatestImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readNextImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readNextImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:readNextImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:readNextImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:on(type: 'imageArrival', callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:on(type: 'imageArrival', callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageReceiver
方法 or 属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageReceiver
方法or属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:readonly capacity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:readonly capacity: number;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:readonly format: ImageFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:readonly format: ImageFormat;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:dequeueImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:dequeueImage(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:dequeueImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:dequeueImage(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:queueImage(interface: Image, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:queueImage(interface: Image, callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:queueImage(interface: Image): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:queueImage(interface: Image): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:on(type: 'imageRelease', callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:on(type: 'imageRelease', callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.image
类名: ImageCreator
方法 or 属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|类名:ImageCreator
方法or属性:release(): Promise\;|@ohos.multimedia.image.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayerState
方法 or 属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayerState
方法or属性:type AVPlayerState = 'idle' \| 'initialized' \| 'prepared' \| 'playing' \| 'paused' \| 'completed' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderState
方法 or 属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderState
方法or属性:type AVRecorderState = 'idle' \| 'prepared' \| 'started' \| 'paused' \| 'stopped' \| 'released' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecordState
方法 or 属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecordState
方法or属性:type VideoRecordState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createAVPlayer(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createAVPlayer() : Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createAVRecorder(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createAVRecorder() : Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createVideoRecorder(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:media
方法or属性:function createVideoRecorder(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: StateChangeReason|@ohos.multimedia.media.d.ts| +|新增|NA|类名:StateChangeReason
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: StateChangeReason
方法 or 属性:USER = 1|@ohos.multimedia.media.d.ts| +|新增|NA|类名:StateChangeReason
方法or属性:USER = 1|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: StateChangeReason
方法 or 属性:BACKGROUND = 2|@ohos.multimedia.media.d.ts| +|新增|NA|类名:StateChangeReason
方法or属性:BACKGROUND = 2|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_OK = 0|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_OK = 0|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_NO_PERMISSION = 201|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_NO_PERMISSION = 201|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_INVALID_PARAMETER = 401|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_INVALID_PARAMETER = 401|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_UNSUPPORT_CAPABILITY = 801|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_UNSUPPORT_CAPABILITY = 801|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_NO_MEMORY = 5400101|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_NO_MEMORY = 5400101|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_OPERATE_NOT_PERMIT = 5400102|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_OPERATE_NOT_PERMIT = 5400102|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_IO = 5400103|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_IO = 5400103|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_TIMEOUT = 5400104|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_TIMEOUT = 5400104|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_SERVICE_DIED = 5400105|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_SERVICE_DIED = 5400105|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVErrorCode
方法 or 属性:AVERR_UNSUPPORT_FORMAT = 5400106|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVErrorCode
方法or属性:AVERR_UNSUPPORT_FORMAT = 5400106|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:prepare(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:prepare(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:prepare(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:prepare(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:play(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:play(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:play(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:play(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:seek(timeMs: number, mode?:SeekMode): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:seek(timeMs: number, mode?:SeekMode): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:setVolume(volume: number): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:setVolume(volume: number): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:getTrackDescription(callback: AsyncCallback\>): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:getTrackDescription(callback: AsyncCallback\>): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:getTrackDescription() : Promise\>;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:getTrackDescription() : Promise\>;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:url ?: string;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:url ?: string;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:fdSrc ?: AVFileDescriptor;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:fdSrc ?: AVFileDescriptor;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:loop: boolean;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:loop: boolean;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:audioInterruptMode ?: audio.InterruptMode;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:audioInterruptMode ?: audio.InterruptMode;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:readonly currentTime: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:readonly currentTime: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:readonly duration: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:readonly duration: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:readonly state: AVPlayerState;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:readonly state: AVPlayerState;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:surfaceId ?: string;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:surfaceId ?: string;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:readonly width: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:readonly width: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:readonly height: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:readonly height: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:videoScaleType ?: VideoScaleType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:videoScaleType ?: VideoScaleType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:setSpeed(speed: PlaybackSpeed): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:setSpeed(speed: PlaybackSpeed): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:setBitrate(bitrate: number): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:setBitrate(bitrate: number): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'stateChange', callback: (state: AVPlayerState, reason: StateChangeReason) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'stateChange', callback: (state: AVPlayerState, reason: StateChangeReason) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'stateChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'stateChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'volumeChange', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'volumeChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'volumeChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'endOfStream', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'endOfStream', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'endOfStream'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'endOfStream'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'seekDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'seekDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'seekDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'seekDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'speedDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'speedDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'speedDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'speedDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'bitrateDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'bitrateDone', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'bitrateDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'bitrateDone'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'timeUpdate', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'timeUpdate', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'timeUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'timeUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'durationUpdate', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'durationUpdate', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'durationUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'durationUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'bufferingUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'bufferingUpdate'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'startRenderFrame', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'startRenderFrame', callback: Callback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'startRenderFrame'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'startRenderFrame'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'videoSizeChange', callback: (width: number, height: number) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'videoSizeChange', callback: (width: number, height: number) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'videoSizeChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'videoSizeChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'audioInterrupt'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'audioInterrupt'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'availableBitrates', callback: (bitrates: Array\) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'availableBitrates', callback: (bitrates: Array\) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'availableBitrates'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'availableBitrates'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVPlayer
方法 or 属性:off(type: 'error'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVPlayer
方法or属性:off(type: 'error'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVFileDescriptor|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVFileDescriptor
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVFileDescriptor
方法 or 属性:fd: number|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVFileDescriptor
方法or属性:fd: number|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVFileDescriptor
方法 or 属性:offset?: number|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVFileDescriptor
方法or属性:offset?: number|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVFileDescriptor
方法 or 属性:length?: number|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVFileDescriptor
方法or属性:length?: number|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioPlayer
方法or属性:fdSrc: AVFileDescriptor;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioPlayer
方法or属性:audioInterruptMode ?: audio.InterruptMode;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioPlayer
方法or属性:on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:prepare(config: AVRecorderConfig, callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:prepare(config: AVRecorderConfig, callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:prepare(config: AVRecorderConfig): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:prepare(config: AVRecorderConfig): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:getInputSurface(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:getInputSurface(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:getInputSurface(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:getInputSurface(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:start(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:start(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:resume(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:resume(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:resume(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:resume(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:readonly state: AVRecorderState;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:readonly state: AVRecorderState;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:on(type: 'stateChange', callback: (state: AVRecorderState, reason: StateChangeReason) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:on(type: 'stateChange', callback: (state: AVRecorderState, reason: StateChangeReason) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:off(type: 'stateChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:off(type: 'stateChange'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorder
方法 or 属性:off(type: 'error'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorder
方法or属性:off(type: 'error'): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:prepare(config: VideoRecorderConfig, callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:prepare(config: VideoRecorderConfig, callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:prepare(config: VideoRecorderConfig): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:prepare(config: VideoRecorderConfig): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:getInputSurface(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:getInputSurface(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:getInputSurface(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:getInputSurface(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:start(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:start(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:start(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:pause(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:pause(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:resume(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:resume(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:resume(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:resume(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:stop(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:stop(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:release(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:release(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:reset(callback: AsyncCallback\): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:reset(): Promise\;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:on(type: 'error', callback: ErrorCallback): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorder
方法 or 属性:readonly state: VideoRecordState;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorder
方法or属性:readonly state: VideoRecordState;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoPlayer
方法or属性:fdSrc: AVFileDescriptor;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoPlayer
方法or属性:audioInterruptMode ?: audio.InterruptMode;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoPlayer
方法or属性:videoScaleType ?: VideoScaleType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoPlayer
方法or属性:on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoScaleType|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoScaleType
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoScaleType
方法 or 属性:VIDEO_SCALE_TYPE_FIT = 0|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoScaleType
方法or属性:VIDEO_SCALE_TYPE_FIT = 0|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoScaleType
方法 or 属性:VIDEO_SCALE_TYPE_FIT_CROP = 1|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoScaleType
方法or属性:VIDEO_SCALE_TYPE_FIT_CROP = 1|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly audioBitrate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly audioBitrate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly audioChannels: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly audioChannels: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly audioCodec: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly audioCodec: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly audioSampleRate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly audioSampleRate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly fileFormat: ContainerFormatType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly fileFormat: ContainerFormatType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly videoBitrate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly videoBitrate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly videoCodec: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly videoCodec: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly videoFrameWidth: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly videoFrameWidth: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly videoFrameHeight: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly videoFrameHeight: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderProfile
方法 or 属性:readonly videoFrameRate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderProfile
方法or属性:readonly videoFrameRate: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AudioSourceType|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioSourceType
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AudioSourceType
方法 or 属性:AUDIO_SOURCE_TYPE_DEFAULT = 0|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioSourceType
方法or属性:AUDIO_SOURCE_TYPE_DEFAULT = 0|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AudioSourceType
方法 or 属性:AUDIO_SOURCE_TYPE_MIC = 1|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AudioSourceType
方法or属性:AUDIO_SOURCE_TYPE_MIC = 1|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoSourceType|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoSourceType
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoSourceType
方法 or 属性:VIDEO_SOURCE_TYPE_SURFACE_YUV = 0|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoSourceType
方法or属性:VIDEO_SOURCE_TYPE_SURFACE_YUV = 0|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoSourceType
方法 or 属性:VIDEO_SOURCE_TYPE_SURFACE_ES = 1|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoSourceType
方法or属性:VIDEO_SOURCE_TYPE_SURFACE_ES = 1|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:videoSourceType: VideoSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:videoSourceType: VideoSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:profile: VideoRecorderProfile;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:profile: VideoRecorderProfile;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:url: string;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:url: string;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:rotation?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:rotation?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: VideoRecorderConfig
方法 or 属性:location?: Location;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:VideoRecorderConfig
方法or属性:location?: Location;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:audioBitrate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:audioBitrate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:audioChannels?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:audioChannels?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:audioCodec?: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:audioCodec?: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:audioSampleRate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:audioSampleRate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:fileFormat: ContainerFormatType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:fileFormat: ContainerFormatType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:videoBitrate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:videoBitrate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:videoCodec?: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:videoCodec?: CodecMimeType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:videoFrameWidth?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:videoFrameWidth?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:videoFrameHeight?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:videoFrameHeight?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderProfile
方法 or 属性:videoFrameRate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderProfile
方法or属性:videoFrameRate?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:videoSourceType?: VideoSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:videoSourceType?: VideoSourceType;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:profile: AVRecorderProfile;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:profile: AVRecorderProfile;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:url: string;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:url: string;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:rotation?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:rotation?: number;|@ohos.multimedia.media.d.ts| +|新增|NA|模块名: ohos.multimedia.media
类名: AVRecorderConfig
方法 or 属性:location?: Location;|@ohos.multimedia.media.d.ts| +|新增|NA|类名:AVRecorderConfig
方法or属性:location?: Location;|@ohos.multimedia.media.d.ts| +|访问级别有变化|类名:VolumeEvent
访问级别:系统API|类名:VolumeEvent
访问级别:公开API|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:ActiveDeviceType
废弃版本:N/A|类名:ActiveDeviceType
废弃版本:9
代替接口:ohos.multimedia.audio.CommunicationDeviceType |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:ActiveDeviceType
方法 or 属性:SPEAKER = 2
废弃版本:N/A|类名:ActiveDeviceType
方法 or 属性:SPEAKER = 2
废弃版本:9
代替接口:ohos.multimedia.audio.CommunicationDeviceType.SPEAKER |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:ActiveDeviceType
方法 or 属性:BLUETOOTH_SCO = 7
废弃版本:N/A|类名:ActiveDeviceType
方法 or 属性:BLUETOOTH_SCO = 7
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptActionType
废弃版本:N/A|类名:InterruptActionType
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptActionType
方法 or 属性:TYPE_ACTIVATED = 0
废弃版本:N/A|类名:InterruptActionType
方法 or 属性:TYPE_ACTIVATED = 0
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptActionType
方法 or 属性:TYPE_INTERRUPT = 1
废弃版本:N/A|类名:InterruptActionType
方法 or 属性:TYPE_INTERRUPT = 1
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setVolume(volumeType: AudioVolumeType, volume: number): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getMinVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getMaxVolume(volumeType: AudioVolumeType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getDevices(deviceFlag: DeviceFlag): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:mute(volumeType: AudioVolumeType, mute: boolean): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isMute(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isMute(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isMute(volumeType: AudioVolumeType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isMute(volumeType: AudioVolumeType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isActive(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isActive(volumeType: AudioVolumeType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isActive(volumeType: AudioVolumeType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isActive(volumeType: AudioVolumeType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setMicrophoneMute(mute: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setMicrophoneMute(mute: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setMicrophoneMute(mute: boolean): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setMicrophoneMute(mute: boolean): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isMicrophoneMute(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isMicrophoneMute(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isMicrophoneMute(): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isMicrophoneMute(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setRingerMode(mode: AudioRingMode, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setRingerMode(mode: AudioRingMode, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setRingerMode(mode: AudioRingMode): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setRingerMode(mode: AudioRingMode): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getRingerMode(callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getRingerMode(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:getRingerMode(): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:getRingerMode(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:isDeviceActive(deviceType: ActiveDeviceType): Promise\;
废弃版本:N/A|类名:AudioManager
方法 or 属性:isDeviceActive(deviceType: ActiveDeviceType): Promise\;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:on(type: 'ringerModeChange', callback: Callback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:on(type: 'ringerModeChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:on(type: 'deviceChange', callback: Callback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:on(type: 'deviceChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioManager
方法 or 属性:off(type: 'deviceChange', callback?: Callback\): void;
废弃版本:N/A|类名:AudioManager
方法 or 属性:off(type: 'deviceChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
废弃版本:N/A|类名:InterruptAction
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
方法 or 属性:actionType: InterruptActionType;
废弃版本:N/A|类名:InterruptAction
方法 or 属性:actionType: InterruptActionType;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
方法 or 属性:type?: InterruptType;
废弃版本:N/A|类名:InterruptAction
方法 or 属性:type?: InterruptType;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
方法 or 属性:hint?: InterruptHint;
废弃版本:N/A|类名:InterruptAction
方法 or 属性:hint?: InterruptHint;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
方法 or 属性:activated?: boolean;
废弃版本:N/A|类名:InterruptAction
方法 or 属性:activated?: boolean;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioInterrupt
废弃版本:N/A|类名:AudioInterrupt
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioInterrupt
方法 or 属性:streamUsage: StreamUsage;
废弃版本:N/A|类名:AudioInterrupt
方法 or 属性:streamUsage: StreamUsage;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioInterrupt
方法 or 属性:contentType: ContentType;
废弃版本:N/A|类名:AudioInterrupt
方法 or 属性:contentType: ContentType;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioInterrupt
方法 or 属性:pauseWhenDucked: boolean;
废弃版本:N/A|类名:AudioInterrupt
方法 or 属性:pauseWhenDucked: boolean;
废弃版本:9
代替接口:N/A|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:AudioState
方法 or 属性:type AudioState = 'idle' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:N/A|类名:VideoPlayState
方法 or 属性:type VideoPlayState = 'idle' \| 'prepared' \| 'playing' \| 'paused' \| 'stopped' \| 'error';
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayerState |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:media
方法 or 属性:function createAudioPlayer(): AudioPlayer;
废弃版本:N/A|类名:media
方法 or 属性:function createAudioPlayer(): AudioPlayer;
废弃版本:9
代替接口:ohos.multimedia.media/media|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:media
方法 or 属性:function createAudioRecorder(): AudioRecorder;
废弃版本:N/A|类名:media
方法 or 属性:function createAudioRecorder(): AudioRecorder;
废弃版本:9
代替接口:ohos.multimedia.media/media|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:media
方法 or 属性:function createVideoPlayer(callback: AsyncCallback\): void;
废弃版本:N/A|类名:media
方法 or 属性:function createVideoPlayer(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:media
方法 or 属性:function createVideoPlayer() : Promise\;
废弃版本:N/A|类名:media
方法 or 属性:function createVideoPlayer() : Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
废弃版本:N/A|类名:AudioPlayer
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:play(): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:play(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:pause(): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:pause(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:stop(): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:stop(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:reset(): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:reset(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:seek(timeMs: number): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:seek(timeMs: number): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:setVolume(vol: number): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:setVolume(vol: number): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:release(): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:release(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:getTrackDescription(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:getTrackDescription(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:getTrackDescription() : Promise\>;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:getTrackDescription() : Promise\>;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:src: string;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:src: string;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:loop: boolean;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:loop: boolean;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:readonly currentTime: number;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:readonly currentTime: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:readonly duration: number;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:readonly duration: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:readonly state: AudioState;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:readonly state: AudioState;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'play' \| 'pause' \| 'stop' \| 'reset' \| 'dataLoad' \| 'finish' \| 'volumeChange', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'timeUpdate', callback: Callback\): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'timeUpdate', callback: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioPlayer
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:N/A|类名:AudioPlayer
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
废弃版本:N/A|类名:AudioRecorderConfig
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorderConfig |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:audioEncodeBitRate?: number;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:audioEncodeBitRate?: number;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:audioSampleRate?: number;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:audioSampleRate?: number;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:numberOfChannels?: number;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:numberOfChannels?: number;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:uri: string;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:uri: string;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:location?: Location;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:location?: Location;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:audioEncoderMime?: CodecMimeType;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:audioEncoderMime?: CodecMimeType;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorderConfig
方法 or 属性:fileFormat?: ContainerFormatType;
废弃版本:N/A|类名:AudioRecorderConfig
方法 or 属性:fileFormat?: ContainerFormatType;
废弃版本:9
代替接口:N/A|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
废弃版本:N/A|类名:AudioRecorder
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:prepare(config: AudioRecorderConfig): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:prepare(config: AudioRecorderConfig): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:start(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:start(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:pause(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:pause(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:resume(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:resume(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:stop(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:stop(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:release(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:release(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:reset(): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:reset(): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'prepare' \| 'start' \| 'pause' \| 'resume' \| 'stop' \| 'release' \| 'reset', callback: () => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:AudioRecorder
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:N/A|类名:AudioRecorder
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVRecorder|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
废弃版本:N/A|类名:VideoPlayer
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer |@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setDisplaySurface(surfaceId: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setDisplaySurface(surfaceId: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setDisplaySurface(surfaceId: string): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setDisplaySurface(surfaceId: string): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:prepare(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:prepare(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:prepare(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:prepare(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:play(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:play(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:play(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:play(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:pause(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:pause(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:pause(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:pause(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:stop(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:stop(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:stop(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:stop(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:reset(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:reset(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:reset(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:reset(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, mode:SeekMode, callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, mode:SeekMode, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, mode?:SeekMode): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:seek(timeMs: number, mode?:SeekMode): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setVolume(vol: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setVolume(vol: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setVolume(vol: number): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setVolume(vol: number): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:release(): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:release(): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:getTrackDescription(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:getTrackDescription(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:getTrackDescription() : Promise\>;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:getTrackDescription() : Promise\>;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:url: string;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:url: string;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:loop: boolean;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:loop: boolean;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:readonly currentTime: number;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:readonly currentTime: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:readonly duration: number;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:readonly duration: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:readonly state: VideoPlayState;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:readonly state: VideoPlayState;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:readonly width: number;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:readonly width: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:readonly height: number;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:readonly height: number;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setSpeed(speed:number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setSpeed(speed:number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:setSpeed(speed:number): Promise\;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:setSpeed(speed:number): Promise\;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:on(type: 'playbackCompleted', callback: Callback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:on(type: 'playbackCompleted', callback: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:on(type: 'startRenderFrame', callback: Callback\): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:on(type: 'startRenderFrame', callback: Callback\): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:on(type: 'videoSizeChanged', callback: (width: number, height: number) => void): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:on(type: 'videoSizeChanged', callback: (width: number, height: number) => void): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:VideoPlayer
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:N/A|类名:VideoPlayer
方法 or 属性:on(type: 'error', callback: ErrorCallback): void;
废弃版本:9
代替接口:ohos.multimedia.media/media.AVPlayer|@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:mediaLibrary
废弃版本:N/A|类名:mediaLibrary
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(): MediaLibrary;
废弃版本:N/A|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(): MediaLibrary;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(context: Context): MediaLibrary;
废弃版本:N/A|类名:mediaLibrary
方法 or 属性:function getMediaLibrary(context: Context): MediaLibrary;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
废弃版本:N/A|类名:MediaType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:FILE = 0
废弃版本:N/A|类名:MediaType
方法 or 属性:FILE = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:IMAGE
废弃版本:N/A|类名:MediaType
方法 or 属性:IMAGE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:VIDEO
废弃版本:N/A|类名:MediaType
方法 or 属性:VIDEO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
方法 or 属性:AUDIO
废弃版本:N/A|类名:MediaType
方法 or 属性:AUDIO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaAssetOption
废弃版本:N/A|类名:MediaAssetOption
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaAssetOption
方法 or 属性:src: string;
废弃版本:N/A|类名:MediaAssetOption
方法 or 属性:src: string;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaAssetOption
方法 or 属性:mimeType: string;
废弃版本:N/A|类名:MediaAssetOption
方法 or 属性:mimeType: string;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaAssetOption
方法 or 属性:relativePath?: string;
废弃版本:N/A|类名:MediaAssetOption
方法 or 属性:relativePath?: string;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaSelectOption
废弃版本:N/A|类名:MediaSelectOption
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaSelectOption
方法 or 属性:type: 'image' \| 'video' \| 'media';
废弃版本:N/A|类名:MediaSelectOption
方法 or 属性:type: 'image' \| 'video' \| 'media';
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaSelectOption
方法 or 属性:count: number;
废弃版本:N/A|类名:MediaSelectOption
方法 or 属性:count: number;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
废弃版本:N/A|类名:FileAsset
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly id: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly id: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly uri: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly uri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly mimeType: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly mimeType: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly mediaType: MediaType;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly mediaType: MediaType;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:displayName: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:displayName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:title: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:title: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:relativePath: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:relativePath: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly parent: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly parent: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly size: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly size: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateAdded: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateAdded: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateModified: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateModified: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly dateTaken: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly dateTaken: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly artist: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly artist: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly audioAlbum: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly audioAlbum: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly width: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly width: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly height: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly height: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:orientation: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:orientation: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly duration: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly duration: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumId: number;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumId: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumUri: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:readonly albumName: string;
废弃版本:N/A|类名:FileAsset
方法 or 属性:readonly albumName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isDirectory(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isDirectory(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isDirectory():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isDirectory():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:commitModify(): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:commitModify(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:open(mode: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:open(mode: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:open(mode: string): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:open(mode: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:close(fd: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:close(fd: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:close(fd: number): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:close(fd: number): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(size: Size, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(size: Size, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:getThumbnail(size?: Size): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:getThumbnail(size?: Size): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:favorite(isFavorite: boolean): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isFavorite(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isFavorite(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isFavorite():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isFavorite():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:trash(isTrash: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:trash(isTrash: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:trash(isTrash: boolean): Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:trash(isTrash: boolean): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isTrash(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isTrash(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
方法 or 属性:isTrash():Promise\;
废弃版本:N/A|类名:FileAsset
方法 or 属性:isTrash():Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
废弃版本:N/A|类名:FileKey
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ID = "file_id"
废弃版本:N/A|类名:FileKey
方法 or 属性:ID = "file_id"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:RELATIVE_PATH = "relative_path"
废弃版本:N/A|类名:FileKey
方法 or 属性:RELATIVE_PATH = "relative_path"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DISPLAY_NAME = "display_name"
废弃版本:N/A|类名:FileKey
方法 or 属性:DISPLAY_NAME = "display_name"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:PARENT = "parent"
废弃版本:N/A|类名:FileKey
方法 or 属性:PARENT = "parent"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:MIME_TYPE = "mime_type"
废弃版本:N/A|类名:FileKey
方法 or 属性:MIME_TYPE = "mime_type"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:MEDIA_TYPE = "media_type"
废弃版本:N/A|类名:FileKey
方法 or 属性:MEDIA_TYPE = "media_type"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:SIZE = "size"
废弃版本:N/A|类名:FileKey
方法 or 属性:SIZE = "size"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_ADDED = "date_added"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_ADDED = "date_added"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_MODIFIED = "date_modified"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_MODIFIED = "date_modified"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DATE_TAKEN = "date_taken"
废弃版本:N/A|类名:FileKey
方法 or 属性:DATE_TAKEN = "date_taken"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:TITLE = "title"
废弃版本:N/A|类名:FileKey
方法 or 属性:TITLE = "title"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ARTIST = "artist"
废弃版本:N/A|类名:FileKey
方法 or 属性:ARTIST = "artist"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:AUDIOALBUM = "audio_album"
废弃版本:N/A|类名:FileKey
方法 or 属性:AUDIOALBUM = "audio_album"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:DURATION = "duration"
废弃版本:N/A|类名:FileKey
方法 or 属性:DURATION = "duration"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:WIDTH = "width"
废弃版本:N/A|类名:FileKey
方法 or 属性:WIDTH = "width"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:HEIGHT = "height"
废弃版本:N/A|类名:FileKey
方法 or 属性:HEIGHT = "height"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ORIENTATION = "orientation"
废弃版本:N/A|类名:FileKey
方法 or 属性:ORIENTATION = "orientation"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ALBUM_ID = "bucket_id"
废弃版本:N/A|类名:FileKey
方法 or 属性:ALBUM_ID = "bucket_id"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
方法 or 属性:ALBUM_NAME = "bucket_display_name"
废弃版本:N/A|类名:FileKey
方法 or 属性:ALBUM_NAME = "bucket_display_name"
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
废弃版本:N/A|类名:MediaFetchOptions
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:selections: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:selections: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:selectionArgs: Array\;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:selectionArgs: Array\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:order?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:order?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:uri?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:uri?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:networkId?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:networkId?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
方法 or 属性:extendArgs?: string;
废弃版本:N/A|类名:MediaFetchOptions
方法 or 属性:extendArgs?: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
废弃版本:N/A|类名:FetchFileResult
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getCount(): number;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getCount(): number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:isAfterLast(): boolean;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:isAfterLast(): boolean;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:close(): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:close(): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getFirstObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getFirstObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getFirstObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getFirstObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getNextObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getNextObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getNextObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getNextObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getLastObject(callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getLastObject(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getLastObject(): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getLastObject(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number): Promise\;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getPositionObject(index: number): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getAllObject(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getAllObject(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
方法 or 属性:getAllObject(): Promise\>;
废弃版本:N/A|类名:FetchFileResult
方法 or 属性:getAllObject(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
废弃版本:N/A|类名:Album
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly albumId: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly albumId: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:albumName: string;
废弃版本:N/A|类名:Album
方法 or 属性:albumName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly albumUri: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly albumUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly dateModified: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly dateModified: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly count: number;
废弃版本:N/A|类名:Album
方法 or 属性:readonly count: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly relativePath: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly relativePath: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:readonly coverUri: string;
废弃版本:N/A|类名:Album
方法 or 属性:readonly coverUri: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:commitModify(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:commitModify(): Promise\;
废弃版本:N/A|类名:Album
方法 or 属性:commitModify(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
方法 or 属性:getFileAssets(options?: MediaFetchOptions): Promise\;
废弃版本:N/A|类名:Album
方法 or 属性:getFileAssets(options?: MediaFetchOptions): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
废弃版本:N/A|类名:DirectoryType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_CAMERA = 0
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_CAMERA = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_VIDEO
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_VIDEO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_IMAGE
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_IMAGE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_AUDIO
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_AUDIO
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_DOCUMENTS
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_DOCUMENTS
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
方法 or 属性:DIR_DOWNLOAD
废弃版本:N/A|类名:DirectoryType
方法 or 属性:DIR_DOWNLOAD
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
废弃版本:N/A|类名:MediaLibrary
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getPublicDirectory(type: DirectoryType): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getFileAssets(options: MediaFetchOptions): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:on(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:off(type: 'deviceChange'\|'albumChange'\|'imageChange'\|'audioChange'\|'videoChange'\|'fileChange'\|'remoteFileChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:deleteAsset(uri: string): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAlbums(options: MediaFetchOptions): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:storeMediaAsset(option: MediaAssetOption): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:storeMediaAsset(option: MediaAssetOption): Promise\;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, index: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, index: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, index?: number): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:startImagePreview(images: Array\, index?: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:startMediaSelect(option: MediaSelectOption, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:startMediaSelect(option: MediaSelectOption, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:startMediaSelect(option: MediaSelectOption): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:startMediaSelect(option: MediaSelectOption): Promise\>;
废弃版本:9
代替接口:N/A|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getActivePeers(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getActivePeers(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getActivePeers(): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getActivePeers(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAllPeers(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAllPeers(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:getAllPeers(): Promise\>;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:getAllPeers(): Promise\>;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:release(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
方法 or 属性:release(): Promise\;
废弃版本:N/A|类名:MediaLibrary
方法 or 属性:release(): Promise\;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
废弃版本:N/A|类名:Size
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
方法 or 属性:width: number;
废弃版本:N/A|类名:Size
方法 or 属性:width: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
方法 or 属性:height: number;
废弃版本:N/A|类名:Size
方法 or 属性:height: number;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
废弃版本:N/A|类名:PeerInfo
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly deviceName: string;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly deviceName: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly networkId: string;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly networkId: string;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly deviceType: DeviceType;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly deviceType: DeviceType;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
方法 or 属性:readonly isOnline: boolean;
废弃版本:N/A|类名:PeerInfo
方法 or 属性:readonly isOnline: boolean;
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
废弃版本:N/A|类名:DeviceType
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_UNKNOWN = 0
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_UNKNOWN = 0
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_LAPTOP
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_LAPTOP
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_PHONE
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_PHONE
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_TABLET
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_TABLET
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_WATCH
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_WATCH
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_CAR
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_CAR
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
方法 or 属性:TYPE_TV
废弃版本:N/A|类名:DeviceType
方法 or 属性:TYPE_TV
废弃版本:9
代替接口:ohos.file.picker |@ohos.multimedia.mediaLibrary.d.ts| +|起始版本有变化|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
起始版本:8|类名:AudioManager
方法 or 属性:on(type: 'volumeChange', callback: Callback\): void;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
起始版本:8|类名:VolumeEvent
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:volumeType: AudioVolumeType;
起始版本:8|类名:VolumeEvent
方法 or 属性:volumeType: AudioVolumeType;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:volume: number;
起始版本:8|类名:VolumeEvent
方法 or 属性:volume: number;
起始版本:9|@ohos.multimedia.audio.d.ts| +|起始版本有变化|类名:VolumeEvent
方法 or 属性:updateUi: boolean;
起始版本:8|类名:VolumeEvent
方法 or 属性:updateUi: boolean;
起始版本:9|@ohos.multimedia.audio.d.ts| +|权限有变化|类名:AudioPlayer
方法 or 属性:src: string;
权限:ohos.permission.READ_MEDIA|类名:AudioPlayer
方法 or 属性:src: string;
权限:ohos.permission.READ_MEDIA or ohos.permission.INTERNET|@ohos.multimedia.media.d.ts| +|删除(权限)|类名:VideoPlayer
方法 or 属性:prepare(callback: AsyncCallback\): void;
权限:ohos.permission.MICROPHONE|类名:VideoPlayer
方法 or 属性:prepare(callback: AsyncCallback\): void;
权限:N/A|@ohos.multimedia.media.d.ts| +|删除(权限)|类名:VideoPlayer
方法 or 属性:prepare(): Promise\;
权限:ohos.permission.MICROPHONE|类名:VideoPlayer
方法 or 属性:prepare(): Promise\;
权限:N/A|@ohos.multimedia.media.d.ts| +|函数有变化|类名:AudioRenderer
方法 or 属性:on(type: "markReach", frame: number, callback: (position: number) => {}): void;
|类名:AudioRenderer
方法 or 属性:on(type: "markReach", frame: number, callback: Callback\): void;
|@ohos.multimedia.audio.d.ts| +|函数有变化|类名:AudioRenderer
方法 or 属性:on(type: "periodReach", frame: number, callback: (position: number) => {}): void;
|类名:AudioRenderer
方法 or 属性:on(type: "periodReach", frame: number, callback: Callback\): void;
|@ohos.multimedia.audio.d.ts| +|函数有变化|类名:AudioCapturer
方法 or 属性:on(type: "markReach", frame: number, callback: (position: number) => {}): void;
|类名:AudioCapturer
方法 or 属性:on(type: "markReach", frame: number, callback: Callback\): void;
|@ohos.multimedia.audio.d.ts| +|函数有变化|类名:AudioCapturer
方法 or 属性:on(type: "periodReach", frame: number, callback: (position: number) => {}): void;
|类名:AudioCapturer
方法 or 属性:on(type: "periodReach", frame: number, callback: Callback\): void;
|@ohos.multimedia.audio.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-notification.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-notification.md new file mode 100644 index 0000000000000000000000000000000000000000..8ca083cc1efa12eed738f96ab538ee814f9dcfab --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-notification.md @@ -0,0 +1,559 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function publish(event: string, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function publish(event: string, options: CommonEventPublishData, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function publishAsUser(event: string, userId: number, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function publishAsUser(event: string, userId: number, options: CommonEventPublishData, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function createSubscriber(subscribeInfo: CommonEventSubscribeInfo): Promise\;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function subscribe(subscriber: CommonEventSubscriber, callback: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: commonEventManager
方法 or 属性: function unsubscribe(subscriber: CommonEventSubscriber, callback?: AsyncCallback\): void;|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BOOT_COMPLETED = "usual.event.BOOT_COMPLETED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_LOCKED_BOOT_COMPLETED = "usual.event.LOCKED_BOOT_COMPLETED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SHUTDOWN = "usual.event.SHUTDOWN"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BATTERY_CHANGED = "usual.event.BATTERY_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BATTERY_LOW = "usual.event.BATTERY_LOW"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BATTERY_OKAY = "usual.event.BATTERY_OKAY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_POWER_CONNECTED = "usual.event.POWER_CONNECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_POWER_DISCONNECTED = "usual.event.POWER_DISCONNECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SCREEN_OFF = "usual.event.SCREEN_OFF"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SCREEN_ON = "usual.event.SCREEN_ON"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_THERMAL_LEVEL_CHANGED = "usual.event.THERMAL_LEVEL_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_PRESENT = "usual.event.USER_PRESENT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_TIME_TICK = "usual.event.TIME_TICK"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_TIME_CHANGED = "usual.event.TIME_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DATE_CHANGED = "usual.event.DATE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_TIMEZONE_CHANGED = "usual.event.TIMEZONE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_CLOSE_SYSTEM_DIALOGS = "usual.event.CLOSE_SYSTEM_DIALOGS"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_ADDED = "usual.event.PACKAGE_ADDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_REPLACED = "usual.event.PACKAGE_REPLACED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_MY_PACKAGE_REPLACED = "usual.event.MY_PACKAGE_REPLACED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_REMOVED = "usual.event.PACKAGE_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BUNDLE_REMOVED = "usual.event.BUNDLE_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_FULLY_REMOVED = "usual.event.PACKAGE_FULLY_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_CHANGED = "usual.event.PACKAGE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_RESTARTED = "usual.event.PACKAGE_RESTARTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_DATA_CLEARED = "usual.event.PACKAGE_DATA_CLEARED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_CACHE_CLEARED = "usual.event.PACKAGE_CACHE_CLEARED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGES_SUSPENDED = "usual.event.PACKAGES_SUSPENDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGES_UNSUSPENDED = "usual.event.PACKAGES_UNSUSPENDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_MY_PACKAGE_SUSPENDED = "usual.event.MY_PACKAGE_SUSPENDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_MY_PACKAGE_UNSUSPENDED = "usual.event.MY_PACKAGE_UNSUSPENDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_UID_REMOVED = "usual.event.UID_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_FIRST_LAUNCH = "usual.event.PACKAGE_FIRST_LAUNCH"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION =
"usual.event.PACKAGE_NEEDS_VERIFICATION"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_PACKAGE_VERIFIED = "usual.event.PACKAGE_VERIFIED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE =
"usual.event.EXTERNAL_APPLICATIONS_AVAILABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE =
"usual.event.EXTERNAL_APPLICATIONS_UNAVAILABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_CONFIGURATION_CHANGED = "usual.event.CONFIGURATION_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_LOCALE_CHANGED = "usual.event.LOCALE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_MANAGE_PACKAGE_STORAGE = "usual.event.MANAGE_PACKAGE_STORAGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DRIVE_MODE = "common.event.DRIVE_MODE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_HOME_MODE = "common.event.HOME_MODE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_OFFICE_MODE = "common.event.OFFICE_MODE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_STARTED = "usual.event.USER_STARTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_BACKGROUND = "usual.event.USER_BACKGROUND"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_FOREGROUND = "usual.event.USER_FOREGROUND"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_SWITCHED = "usual.event.USER_SWITCHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_STARTING = "usual.event.USER_STARTING"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_UNLOCKED = "usual.event.USER_UNLOCKED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_STOPPING = "usual.event.USER_STOPPING"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_STOPPED = "usual.event.USER_STOPPED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGIN = "common.event.DISTRIBUTED_ACCOUNT_LOGIN"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOUT = "common.event.DISTRIBUTED_ACCOUNT_LOGOUT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISTRIBUTED_ACCOUNT_TOKEN_INVALID = "common.event.DISTRIBUTED_ACCOUNT_TOKEN_INVALID"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOFF = "common.event.DISTRIBUTED_ACCOUNT_LOGOFF"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_POWER_STATE = "usual.event.wifi.POWER_STATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_SCAN_FINISHED = "usual.event.wifi.SCAN_FINISHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_RSSI_VALUE = "usual.event.wifi.RSSI_VALUE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_CONN_STATE = "usual.event.wifi.CONN_STATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_HOTSPOT_STATE = "usual.event.wifi.HOTSPOT_STATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_AP_STA_JOIN = "usual.event.wifi.WIFI_HS_STA_JOIN"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_AP_STA_LEAVE = "usual.event.wifi.WIFI_HS_STA_LEAVE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE = "usual.event.wifi.mplink.STATE_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_CONN_STATE = "usual.event.wifi.p2p.CONN_STATE_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_STATE_CHANGED = "usual.event.wifi.p2p.STATE_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED =
"usual.event.wifi.p2p.DEVICES_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED =
"usual.event.wifi.p2p.PEER_DISCOVERY_STATE_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED =
"usual.event.wifi.p2p.CURRENT_DEVICE_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED =
"usual.event.wifi.p2p.GROUP_STATE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE =
"usual.event.bluetooth.handsfree.ag.CONNECT_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE =
"usual.event.bluetooth.handsfree.ag.CURRENT_DEVICE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE =
"usual.event.bluetooth.handsfree.ag.AUDIO_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE =
"usual.event.bluetooth.a2dpsource.CONNECT_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE =
"usual.event.bluetooth.a2dpsource.CURRENT_DEVICE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE =
"usual.event.bluetooth.a2dpsource.PLAYING_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE =
"usual.event.bluetooth.a2dpsource.AVRCP_CONNECT_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE =
"usual.event.bluetooth.a2dpsource.CODEC_VALUE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED =
"usual.event.bluetooth.remotedevice.DISCOVERED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE =
"usual.event.bluetooth.remotedevice.CLASS_VALUE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED =
"usual.event.bluetooth.remotedevice.ACL_CONNECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED =
"usual.event.bluetooth.remotedevice.ACL_DISCONNECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE =
"usual.event.bluetooth.remotedevice.NAME_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE =
"usual.event.bluetooth.remotedevice.PAIR_STATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE =
"usual.event.bluetooth.remotedevice.BATTERY_VALUE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT =
"usual.event.bluetooth.remotedevice.SDP_RESULT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE =
"usual.event.bluetooth.remotedevice.UUID_VALUE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ =
"usual.event.bluetooth.remotedevice.PAIRING_REQ"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL =
"usual.event.bluetooth.remotedevice.PAIRING_CANCEL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ =
"usual.event.bluetooth.remotedevice.CONNECT_REQ"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY =
"usual.event.bluetooth.remotedevice.CONNECT_REPLY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL =
"usual.event.bluetooth.remotedevice.CONNECT_CANCEL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE =
"usual.event.bluetooth.handsfreeunit.CONNECT_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE =
"usual.event.bluetooth.handsfreeunit.AUDIO_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT =
"usual.event.bluetooth.handsfreeunit.AG_COMMON_EVENT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE =
"usual.event.bluetooth.handsfreeunit.AG_CALL_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE =
"usual.event.bluetooth.host.STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE =
"usual.event.bluetooth.host.REQ_DISCOVERABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE = "usual.event.bluetooth.host.REQ_ENABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE =
"usual.event.bluetooth.host.REQ_DISABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE =
"usual.event.bluetooth.host.SCAN_MODE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED =
"usual.event.bluetooth.host.DISCOVERY_STARTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED =
"usual.event.bluetooth.host.DISCOVERY_FINISHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE =
"usual.event.bluetooth.host.NAME_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE =
"usual.event.bluetooth.a2dpsink.CONNECT_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE =
"usual.event.bluetooth.a2dpsink.PLAYING_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE =
"usual.event.bluetooth.a2dpsink.AUDIO_STATE_UPDATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED =
"usual.event.nfc.action.ADAPTER_STATE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED =
"usual.event.nfc.action.RF_FIELD_ON_DETECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED =
"usual.event.nfc.action.RF_FIELD_OFF_DETECTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISCHARGING = "usual.event.DISCHARGING"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_CHARGING = "usual.event.CHARGING"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED = "usual.event.DEVICE_IDLE_MODE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_POWER_SAVE_MODE_CHANGED = "usual.event.POWER_SAVE_MODE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_ADDED = "usual.event.USER_ADDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_REMOVED = "usual.event.USER_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_ABILITY_ADDED = "common.event.ABILITY_ADDED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_ABILITY_REMOVED = "common.event.ABILITY_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_ABILITY_UPDATED = "common.event.ABILITY_UPDATED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_LOCATION_MODE_STATE_CHANGED =
"usual.event.location.MODE_STATE_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_SLEEP = "common.event.IVI_SLEEP"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_PAUSE = "common.event.IVI_PAUSE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_STANDBY = "common.event.IVI_STANDBY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_LASTMODE_SAVE = "common.event.IVI_LASTMODE_SAVE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_VOLTAGE_ABNORMAL = "common.event.IVI_VOLTAGE_ABNORMAL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_HIGH_TEMPERATURE = "common.event.IVI_HIGH_TEMPERATURE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_EXTREME_TEMPERATURE = "common.event.IVI_EXTREME_TEMPERATURE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL = "common.event.IVI_TEMPERATURE_ABNORMAL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_VOLTAGE_RECOVERY = "common.event.IVI_VOLTAGE_RECOVERY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_TEMPERATURE_RECOVERY = "common.event.IVI_TEMPERATURE_RECOVERY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_IVI_ACTIVE = "common.event.IVI_ACTIVE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_STATE = "usual.event.hardware.usb.action.USB_STATE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_PORT_CHANGED = "usual.event.hardware.usb.action.USB_PORT_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_DEVICE_ATTACHED =
"usual.event.hardware.usb.action.USB_DEVICE_ATTACHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_DEVICE_DETACHED =
"usual.event.hardware.usb.action.USB_DEVICE_DETACHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_ACCESSORY_ATTACHED =
"usual.event.hardware.usb.action.USB_ACCESSORY_ATTACHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USB_ACCESSORY_DETACHED =
"usual.event.hardware.usb.action.USB_ACCESSORY_DETACHED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_REMOVED = "usual.event.data.DISK_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_UNMOUNTED = "usual.event.data.DISK_UNMOUNTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_MOUNTED = "usual.event.data.DISK_MOUNTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_BAD_REMOVAL = "usual.event.data.DISK_BAD_REMOVAL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_UNMOUNTABLE = "usual.event.data.DISK_UNMOUNTABLE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_DISK_EJECT = "usual.event.data.DISK_EJECT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VOLUME_REMOVED = "usual.event.data.VOLUME_REMOVED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VOLUME_UNMOUNTED = "usual.event.data.VOLUME_UNMOUNTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VOLUME_MOUNTED = "usual.event.data.VOLUME_MOUNTED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VOLUME_BAD_REMOVAL = "usual.event.data.VOLUME_BAD_REMOVAL"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VOLUME_EJECT = "usual.event.data.VOLUME_EJECT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED =
"usual.event.data.VISIBLE_ACCOUNTS_UPDATED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_ACCOUNT_DELETED = "usual.event.data.ACCOUNT_DELETED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_FOUNDATION_READY = "common.event.FOUNDATION_READY"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_AIRPLANE_MODE_CHANGED = "usual.event.AIRPLANE_MODE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SPLIT_SCREEN = "common.event.SPLIT_SCREEN"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SLOT_CHANGE = "usual.event.SLOT_CHANGE"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_SPN_INFO_CHANGED = "usual.event.SPN_INFO_CHANGED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_QUICK_FIX_APPLY_RESULT = "usual.event.QUICK_FIX_APPLY_RESULT"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.commonEventManager
类名: Support
方法 or 属性: COMMON_EVENT_USER_INFO_UPDATED = "usual.event.USER_INFO_UPDATED"|@ohos.commonEventManager.d.ts| +|新增|NA|模块名: ohos.notification
类名: RemoveReason|@ohos.notification.d.ts| +|新增|NA|类名:RemoveReason
方法or属性:|@ohos.notification.d.ts| +|新增|NA|模块名: ohos.notification
类名: RemoveReason
方法 or 属性:CLICK_REASON_REMOVE = 1|@ohos.notification.d.ts| +|新增|NA|类名:RemoveReason
方法or属性:CLICK_REASON_REMOVE = 1|@ohos.notification.d.ts| +|新增|NA|模块名: ohos.notification
类名: RemoveReason
方法 or 属性:CANCEL_REASON_REMOVE = 2|@ohos.notification.d.ts| +|新增|NA|类名:RemoveReason
方法or属性:CANCEL_REASON_REMOVE = 2|@ohos.notification.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publish(request: NotificationRequest, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publish(request: NotificationRequest): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publish(request: NotificationRequest, userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publish(request: NotificationRequest, userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publishAsBundle(request: NotificationRequest, representativeBundle: string, userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function publishAsBundle(request: NotificationRequest, representativeBundle: string, userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancel(id: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancel(id: number, label: string, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancel(id: number, label?: string): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelAsBundle(id: number, representativeBundle: string, userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelAsBundle(id: number, representativeBundle: string, userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelAll(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelAll(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlot(slot: NotificationSlot, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlot(slot: NotificationSlot): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlot(type: SlotType, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlot(type: SlotType): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlots(slots: Array\, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function addSlots(slots: Array\): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlot(slotType: SlotType, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlot(slotType: SlotType): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlots(callback: AsyncCallback\>): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlots(): Promise\>;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeSlot(slotType: SlotType, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeSlot(slotType: SlotType): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeAllSlots(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeAllSlots(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setNotificationEnable(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setNotificationEnable(bundle: BundleOption, enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(bundle: BundleOption, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(bundle: BundleOption): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationEnabled(userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function displayBadge(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function displayBadge(bundle: BundleOption, enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isBadgeDisplayed(bundle: BundleOption, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isBadgeDisplayed(bundle: BundleOption): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlotsByBundle(bundle: BundleOption, callback: AsyncCallback\>): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlotsByBundle(bundle: BundleOption): Promise\>;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlotNumByBundle(bundle: BundleOption, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSlotNumByBundle(bundle: BundleOption): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getAllActiveNotifications(callback: AsyncCallback\>): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getAllActiveNotifications(): Promise\>;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getActiveNotificationCount(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getActiveNotificationCount(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getActiveNotifications(callback: AsyncCallback\>): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getActiveNotifications(): Promise\>;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelGroup(groupName: string, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function cancelGroup(groupName: string): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeGroupByBundle(bundle: BundleOption, groupName: string, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function removeGroupByBundle(bundle: BundleOption, groupName: string): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDoNotDisturbDate(date: DoNotDisturbDate, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDoNotDisturbDate(date: DoNotDisturbDate): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDoNotDisturbDate(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDoNotDisturbDate(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDoNotDisturbDate(userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDoNotDisturbDate(userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isSupportDoNotDisturbMode(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isSupportDoNotDisturbMode(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isSupportTemplate(templateName: string, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isSupportTemplate(templateName: string): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function requestEnableNotification(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function requestEnableNotification(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDistributedEnable(enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDistributedEnable(enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isDistributedEnabled(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isDistributedEnabled(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDistributedEnableByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setDistributedEnableByBundle(bundle: BundleOption, enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isDistributedEnabledByBundle(bundle: BundleOption, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isDistributedEnabledByBundle(bundle: BundleOption): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDeviceRemindType(callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getDeviceRemindType(): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setNotificationEnableSlot(bundle: BundleOption, type: SlotType, enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setNotificationEnableSlot(bundle: BundleOption, type: SlotType, enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationSlotEnabled(bundle: BundleOption, type: SlotType, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function isNotificationSlotEnabled(bundle: BundleOption, type: SlotType): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setSyncNotificationEnabledWithoutApp(userId: number, enable: boolean, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function setSyncNotificationEnabledWithoutApp(userId: number, enable: boolean): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSyncNotificationEnabledWithoutApp(userId: number, callback: AsyncCallback\): void;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: notificationManager
方法 or 属性: function getSyncNotificationEnabledWithoutApp(userId: number): Promise\;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType
方法 or 属性: UNKNOWN_TYPE = 0|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType
方法 or 属性: SOCIAL_COMMUNICATION = 1|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType
方法 or 属性: SERVICE_INFORMATION = 2|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType
方法 or 属性: CONTENT_INFORMATION = 3|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotType
方法 or 属性: OTHER_TYPES = 0xFFFF|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType
方法 or 属性: NOTIFICATION_CONTENT_BASIC_TEXT|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType
方法 or 属性: NOTIFICATION_CONTENT_LONG_TEXT|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType
方法 or 属性: NOTIFICATION_CONTENT_PICTURE|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType
方法 or 属性: NOTIFICATION_CONTENT_CONVERSATION|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: ContentType
方法 or 属性: NOTIFICATION_CONTENT_MULTILINE|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel
方法 or 属性: LEVEL_NONE = 0|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel
方法 or 属性: LEVEL_MIN = 1|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel
方法 or 属性: LEVEL_LOW = 2|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel
方法 or 属性: LEVEL_DEFAULT = 3|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SlotLevel
方法 or 属性: LEVEL_HIGH = 4|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbType|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbType
方法 or 属性: TYPE_NONE = 0|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbType
方法 or 属性: TYPE_ONCE = 1|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbType
方法 or 属性: TYPE_DAILY = 2|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbType
方法 or 属性: TYPE_CLEARLY = 3|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法 or 属性: type: DoNotDisturbType;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法 or 属性: begin: Date;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法 or 属性: end: Date;|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DeviceRemindType|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DeviceRemindType
方法 or 属性: IDLE_DONOT_REMIND = 0|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DeviceRemindType
方法 or 属性: IDLE_REMIND = 1|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DeviceRemindType
方法 or 属性: ACTIVE_DONOT_REMIND = 2|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: DeviceRemindType
方法 or 属性: ACTIVE_REMIND = 3|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SourceType|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SourceType
方法 or 属性: TYPE_NORMAL = 0|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SourceType
方法 or 属性: TYPE_CONTINUOUS = 1|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationManager
类名: SourceType
方法 or 属性: TYPE_TIMER = 2|@ohos.notificationManager.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: NotificationKey|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: NotificationKey
方法 or 属性: id: number;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: NotificationKey
方法 or 属性: label?: string;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: RemoveReason|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: RemoveReason
方法 or 属性: CLICK_REASON_REMOVE = 1|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: RemoveReason
方法 or 属性: CANCEL_REASON_REMOVE = 2|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function subscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function subscribe(subscriber: NotificationSubscriber, info: NotificationSubscribeInfo, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function subscribe(subscriber: NotificationSubscriber, info?: NotificationSubscribeInfo): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function unsubscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function unsubscribe(subscriber: NotificationSubscriber): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function remove(hashCode: string, reason: RemoveReason): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function removeAll(bundle: BundleOption, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function removeAll(callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function removeAll(userId: number, callback: AsyncCallback\): void;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function removeAll(userId: number): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法 or 属性: function removeAll(bundle?: BundleOption): Promise\;|@ohos.notificationSubscribe.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback\): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function publishReminder(reminderReq: ReminderRequest): Promise\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function cancelReminder(reminderId: number, callback: AsyncCallback\): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function cancelReminder(reminderId: number): Promise\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function getValidReminders(callback: AsyncCallback\>): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function getValidReminders(): Promise\>;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function cancelAllReminders(callback: AsyncCallback\): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function cancelAllReminders(): Promise\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback\): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function addNotificationSlot(slot: NotificationSlot): Promise\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback\): void;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法 or 属性: function removeNotificationSlot(slotType: notification.SlotType): Promise\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButtonType|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButtonType
方法 or 属性: ACTION_BUTTON_TYPE_CLOSE = 0|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButtonType
方法 or 属性: ACTION_BUTTON_TYPE_SNOOZE = 1|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderType|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderType
方法 or 属性: REMINDER_TYPE_TIMER = 0|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderType
方法 or 属性: REMINDER_TYPE_CALENDAR = 1|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderType
方法 or 属性: REMINDER_TYPE_ALARM = 2|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButton|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButton
方法 or 属性: title: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ActionButton
方法 or 属性: type: ActionButtonType;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: WantAgent|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: WantAgent
方法 or 属性: pkgName: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: WantAgent
方法 or 属性: abilityName: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent
方法 or 属性: pkgName: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent
方法 or 属性: abilityName: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: reminderType: ReminderType;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: actionButton?: [ActionButton?, ActionButton?];|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: wantAgent?: WantAgent;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: maxScreenWantAgent?: MaxScreenWantAgent;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: ringDuration?: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: snoozeTimes?: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: timeInterval?: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: title?: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: content?: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: expiredContent?: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: snoozeContent?: string;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: notificationId?: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法 or 属性: slotType?: notification.SlotType;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法 or 属性: dateTime: LocalDateTime;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法 or 属性: repeatMonths?: Array\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法 or 属性: repeatDays?: Array\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法 or 属性: hour: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法 or 属性: minute: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法 or 属性: daysOfWeek?: Array\;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestTimer|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: ReminderRequestTimer
方法 or 属性: triggerTimeInSeconds: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: year: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: month: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: day: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: hour: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: minute: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法 or 属性: second?: number;|@ohos.reminderAgentManager.d.ts| +|新增|NA|模块名: commonEventSubscriber
类名: CommonEventSubscriber
方法 or 属性: finishCommonEvent(callback: AsyncCallback\): void;|commonEventSubscriber.d.ts| +|新增|NA|模块名: commonEventSubscriber
类名: CommonEventSubscriber
方法 or 属性: finishCommonEvent(): Promise\;|commonEventSubscriber.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption|NotificationCommonDef.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption
方法 or 属性: bundle: string;|NotificationCommonDef.d.ts| +|新增|NA|模块名: NotificationCommonDef
类名: BundleOption
方法 or 属性: uid?: number;|NotificationCommonDef.d.ts| +|新增|NA|模块名: notificationRequest
类名: NotificationRequest
方法 or 属性: removalWantAgent?: WantAgent;|notificationRequest.d.ts| +|新增|NA|模块名: notificationRequest
类名: NotificationRequest
方法 or 属性: badgeNumber?: number;|notificationRequest.d.ts| +|新增|NA|模块名: notificationSlot
类名: NotificationSlot
方法 or 属性: readonly enabled?: boolean;|notificationSlot.d.ts| +|废弃版本有变化|类名:commonEvent
废弃版本:N/A|类名:commonEvent
废弃版本:9
代替接口:ohos.commonEventManager |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function publish(event: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function publish(event: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.publish |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function publish(event: string, options: CommonEventPublishData, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function publish(event: string, options: CommonEventPublishData, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.publish |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function publishAsUser(event: string, userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function publishAsUser(event: string, userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function publishAsUser(event: string, userId: number, options: CommonEventPublishData, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function publishAsUser(event: string, userId: number, options: CommonEventPublishData, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function createSubscriber(subscribeInfo: CommonEventSubscribeInfo): Promise\;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function createSubscriber(subscribeInfo: CommonEventSubscribeInfo): Promise\;
废弃版本:9
代替接口:ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function subscribe(subscriber: CommonEventSubscriber, callback: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function subscribe(subscriber: CommonEventSubscriber, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.subscribe |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:commonEvent
方法 or 属性:function unsubscribe(subscriber: CommonEventSubscriber, callback?: AsyncCallback\): void;
废弃版本:N/A|类名:commonEvent
方法 or 属性:function unsubscribe(subscriber: CommonEventSubscriber, callback?: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.commonEventManager.unsubscribe |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:Support
废弃版本:N/A|类名:Support
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:notification
废弃版本:N/A|类名:notification
废弃版本:9
代替接口:ohos.notificationManager and ohos.notificationSubscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function publish(request: NotificationRequest, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function publish(request: NotificationRequest, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function publish(request: NotificationRequest): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function publish(request: NotificationRequest): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function publish(request: NotificationRequest, userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function publish(request: NotificationRequest, userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function publish(request: NotificationRequest, userId: number): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function publish(request: NotificationRequest, userId: number): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancel(id: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function cancel(id: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.cancel |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancel(id: number, label: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function cancel(id: number, label: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.cancel |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancel(id: number, label?: string): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function cancel(id: number, label?: string): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.cancel |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancelAll(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function cancelAll(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.cancelAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancelAll(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function cancelAll(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.cancelAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlot(slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlot(slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlot(slot: NotificationSlot): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlot(slot: NotificationSlot): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlot(type: SlotType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlot(type: SlotType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlot(type: SlotType): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlot(type: SlotType): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlots(slots: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlots(slots: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.addSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function addSlots(slots: Array\): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function addSlots(slots: Array\): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.addSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlot(slotType: SlotType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlot(slotType: SlotType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlot(slotType: SlotType): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlot(slotType: SlotType): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlots(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlots(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.notificationManager.getSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlots(): Promise\>;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlots(): Promise\>;
废弃版本:9
代替接口:ohos.notificationManager.getSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeSlot(slotType: SlotType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeSlot(slotType: SlotType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.removeSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeSlot(slotType: SlotType): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function removeSlot(slotType: SlotType): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.removeSlot |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAllSlots(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAllSlots(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.removeAllSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAllSlots(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAllSlots(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.removeAllSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:SlotType
废弃版本:N/A|类名:SlotType
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|类名:ContentType
废弃版本:N/A|类名:ContentType
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|类名:SlotLevel
废弃版本:N/A|类名:SlotLevel
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, info: NotificationSubscribeInfo, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, info: NotificationSubscribeInfo, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, info?: NotificationSubscribeInfo): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function subscribe(subscriber: NotificationSubscriber, info?: NotificationSubscribeInfo): Promise\;
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function unsubscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function unsubscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function unsubscribe(subscriber: NotificationSubscriber): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function unsubscribe(subscriber: NotificationSubscriber): Promise\;
废弃版本:9
代替接口:ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableNotification(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function enableNotification(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableNotification(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function enableNotification(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(bundle: BundleOption): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(bundle: BundleOption): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isNotificationEnabled(userId: number): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isNotificationEnabled(userId: number): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function displayBadge(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function displayBadge(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.displayBadge |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function displayBadge(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function displayBadge(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.displayBadge |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isBadgeDisplayed(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isBadgeDisplayed(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isBadgeDisplayed(bundle: BundleOption): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isBadgeDisplayed(bundle: BundleOption): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function setSlotByBundle(bundle: BundleOption, slot: NotificationSlot): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlotsByBundle(bundle: BundleOption, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlotsByBundle(bundle: BundleOption, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlotsByBundle(bundle: BundleOption): Promise\>;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlotsByBundle(bundle: BundleOption): Promise\>;
废弃版本:9
代替接口:ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlotNumByBundle(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlotNumByBundle(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getSlotNumByBundle(bundle: BundleOption): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getSlotNumByBundle(bundle: BundleOption): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAll(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAll(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAll(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAll(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAll(userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAll(userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAll(userId: number): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAll(userId: number): Promise\;
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeAll(bundle?: BundleOption): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function removeAll(bundle?: BundleOption): Promise\;
废弃版本:9
代替接口:notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getAllActiveNotifications(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getAllActiveNotifications(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getAllActiveNotifications(): Promise\>;
废弃版本:N/A|类名:notification
方法 or 属性:function getAllActiveNotifications(): Promise\>;
废弃版本:9
代替接口:ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getActiveNotificationCount(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getActiveNotificationCount(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getActiveNotificationCount |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getActiveNotificationCount(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getActiveNotificationCount(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getActiveNotificationCount |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getActiveNotifications(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getActiveNotifications(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getActiveNotifications(): Promise\>;
废弃版本:N/A|类名:notification
方法 or 属性:function getActiveNotifications(): Promise\>;
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancelGroup(groupName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function cancelGroup(groupName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function cancelGroup(groupName: string): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function cancelGroup(groupName: string): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeGroupByBundle(bundle: BundleOption, groupName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function removeGroupByBundle(bundle: BundleOption, groupName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.removeGroupByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function removeGroupByBundle(bundle: BundleOption, groupName: string): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function removeGroupByBundle(bundle: BundleOption, groupName: string): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.removeGroupByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function setDoNotDisturbDate(date: DoNotDisturbDate, userId: number): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDoNotDisturbDate(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getDoNotDisturbDate(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDoNotDisturbDate(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getDoNotDisturbDate(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDoNotDisturbDate(userId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getDoNotDisturbDate(userId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDoNotDisturbDate(userId: number): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getDoNotDisturbDate(userId: number): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function supportDoNotDisturbMode(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function supportDoNotDisturbMode(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isSupportDoNotDisturbMode |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function supportDoNotDisturbMode(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function supportDoNotDisturbMode(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isSupportDoNotDisturbMode |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isSupportTemplate(templateName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isSupportTemplate(templateName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isSupportTemplate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isSupportTemplate(templateName: string): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isSupportTemplate(templateName: string): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isSupportTemplate |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function requestEnableNotification(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function requestEnableNotification(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.requestEnableNotification |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function requestEnableNotification(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function requestEnableNotification(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.requestEnableNotification |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableDistributed(enable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function enableDistributed(enable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnable |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableDistributed(enable: boolean): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function enableDistributed(enable: boolean): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnable |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isDistributedEnabled(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isDistributedEnabled(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isDistributedEnabled(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isDistributedEnabled(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabled |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableDistributedByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function enableDistributedByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnableByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function enableDistributedByBundle(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function enableDistributedByBundle(bundle: BundleOption, enable: boolean): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnableByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isDistributedEnabledByBundle(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function isDistributedEnabledByBundle(bundle: BundleOption, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabledByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function isDistributedEnabledByBundle(bundle: BundleOption): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function isDistributedEnabledByBundle(bundle: BundleOption): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabledByBundle |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDeviceRemindType(callback: AsyncCallback\): void;
废弃版本:N/A|类名:notification
方法 or 属性:function getDeviceRemindType(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.notificationManager.getDeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|类名:notification
方法 or 属性:function getDeviceRemindType(): Promise\;
废弃版本:N/A|类名:notification
方法 or 属性:function getDeviceRemindType(): Promise\;
废弃版本:9
代替接口:ohos.notificationManager.getDeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|类名:BundleOption
废弃版本:N/A|类名:BundleOption
废弃版本:9
代替接口:ohos.notificationManager.BundleOption |@ohos.notification.d.ts| +|废弃版本有变化|类名:NotificationKey
废弃版本:N/A|类名:NotificationKey
废弃版本:9
代替接口:ohos.notificationManager.NotificationKey |@ohos.notification.d.ts| +|废弃版本有变化|类名:DoNotDisturbType
废弃版本:N/A|类名:DoNotDisturbType
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|类名:DoNotDisturbDate
废弃版本:N/A|类名:DoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:DeviceRemindType
废弃版本:N/A|类名:DeviceRemindType
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|类名:SourceType
废弃版本:N/A|类名:SourceType
废弃版本:9
代替接口:ohos.notificationManager.SourceType |@ohos.notification.d.ts| +|废弃版本有变化|类名:reminderAgent
废弃版本:N/A|类名:reminderAgent
废弃版本:9
代替接口:reminderAgentManager |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback\): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback\): void;
废弃版本:9
代替接口:reminderAgentManager.publishReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function publishReminder(reminderReq: ReminderRequest): Promise\;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function publishReminder(reminderReq: ReminderRequest): Promise\;
废弃版本:9
代替接口:reminderAgentManager.publishReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function cancelReminder(reminderId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function cancelReminder(reminderId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:reminderAgentManager.cancelReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function cancelReminder(reminderId: number): Promise\;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function cancelReminder(reminderId: number): Promise\;
废弃版本:9
代替接口:reminderAgentManager.cancelReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function getValidReminders(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function getValidReminders(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:reminderAgentManager.getValidReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function getValidReminders(): Promise\>;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function getValidReminders(): Promise\>;
废弃版本:9
代替接口:reminderAgentManager.getValidReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function cancelAllReminders(callback: AsyncCallback\): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function cancelAllReminders(callback: AsyncCallback\): void;
废弃版本:9
代替接口:reminderAgentManager.cancelAllReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function cancelAllReminders(): Promise\;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function cancelAllReminders(): Promise\;
废弃版本:9
代替接口:reminderAgentManager.cancelAllReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback\): void;
废弃版本:9
代替接口:reminderAgentManager.addNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function addNotificationSlot(slot: NotificationSlot): Promise\;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function addNotificationSlot(slot: NotificationSlot): Promise\;
废弃版本:9
代替接口:reminderAgentManager.addNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:reminderAgentManager.removeNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:reminderAgent
方法 or 属性:function removeNotificationSlot(slotType: notification.SlotType): Promise\;
废弃版本:N/A|类名:reminderAgent
方法 or 属性:function removeNotificationSlot(slotType: notification.SlotType): Promise\;
废弃版本:9
代替接口:reminderAgentManager.removeNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButtonType
废弃版本:N/A|类名:ActionButtonType
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButtonType
方法 or 属性:ACTION_BUTTON_TYPE_CLOSE = 0
废弃版本:N/A|类名:ActionButtonType
方法 or 属性:ACTION_BUTTON_TYPE_CLOSE = 0
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButtonType
方法 or 属性:ACTION_BUTTON_TYPE_SNOOZE = 1
废弃版本:N/A|类名:ActionButtonType
方法 or 属性:ACTION_BUTTON_TYPE_SNOOZE = 1
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_SNOOZE |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderType
废弃版本:N/A|类名:ReminderType
废弃版本:9
代替接口:reminderAgentManager.ReminderType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderType
方法 or 属性:REMINDER_TYPE_TIMER = 0
废弃版本:N/A|类名:ReminderType
方法 or 属性:REMINDER_TYPE_TIMER = 0
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_TIMER |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderType
方法 or 属性:REMINDER_TYPE_CALENDAR = 1
废弃版本:N/A|类名:ReminderType
方法 or 属性:REMINDER_TYPE_CALENDAR = 1
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_CALENDAR |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderType
方法 or 属性:REMINDER_TYPE_ALARM = 2
废弃版本:N/A|类名:ReminderType
方法 or 属性:REMINDER_TYPE_ALARM = 2
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_ALARM |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButton
废弃版本:N/A|类名:ActionButton
废弃版本:9
代替接口:reminderAgentManager.ActionButton |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButton
方法 or 属性:title: string;
废弃版本:N/A|类名:ActionButton
方法 or 属性:title: string;
废弃版本:9
代替接口:reminderAgentManager.ActionButton.title |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButton
方法 or 属性:type: ActionButtonType;
废弃版本:N/A|类名:ActionButton
方法 or 属性:type: ActionButtonType;
废弃版本:9
代替接口:reminderAgentManager.ActionButton.type |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:WantAgent
废弃版本:N/A|类名:WantAgent
废弃版本:9
代替接口:reminderAgentManager.WantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:WantAgent
方法 or 属性:pkgName: string;
废弃版本:N/A|类名:WantAgent
方法 or 属性:pkgName: string;
废弃版本:9
代替接口:reminderAgentManager.WantAgent.pkgName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:WantAgent
方法 or 属性:abilityName: string;
废弃版本:N/A|类名:WantAgent
方法 or 属性:abilityName: string;
废弃版本:9
代替接口:reminderAgentManager.WantAgent.abilityName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:MaxScreenWantAgent
废弃版本:N/A|类名:MaxScreenWantAgent
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:MaxScreenWantAgent
方法 or 属性:pkgName: string;
废弃版本:N/A|类名:MaxScreenWantAgent
方法 or 属性:pkgName: string;
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent.pkgName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:MaxScreenWantAgent
方法 or 属性:abilityName: string;
废弃版本:N/A|类名:MaxScreenWantAgent
方法 or 属性:abilityName: string;
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent.abilityName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
废弃版本:N/A|类名:ReminderRequest
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:reminderType: ReminderType;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:reminderType: ReminderType;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.reminderType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:actionButton?: [ActionButton?, ActionButton?];
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:actionButton?: [ActionButton?, ActionButton?];
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.actionButton |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:wantAgent?: WantAgent;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:wantAgent?: WantAgent;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.wantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:maxScreenWantAgent?: MaxScreenWantAgent;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:maxScreenWantAgent?: MaxScreenWantAgent;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.maxScreenWantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:ringDuration?: number;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:ringDuration?: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.ringDuration |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:snoozeTimes?: number;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:snoozeTimes?: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.snoozeTimes |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:timeInterval?: number;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:timeInterval?: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.timeInterval |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:title?: string;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:title?: string;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.title |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:content?: string;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:content?: string;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.content |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:expiredContent?: string;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:expiredContent?: string;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.expiredContent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:snoozeContent?: string;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:snoozeContent?: string;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.snoozeContent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:notificationId?: number;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:notificationId?: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.notificationId |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
方法 or 属性:slotType?: notification.SlotType;
废弃版本:N/A|类名:ReminderRequest
方法 or 属性:slotType?: notification.SlotType;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.slotType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestCalendar
废弃版本:N/A|类名:ReminderRequestCalendar
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestCalendar
方法 or 属性:dateTime: LocalDateTime;
废弃版本:N/A|类名:ReminderRequestCalendar
方法 or 属性:dateTime: LocalDateTime;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.dateTime |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestCalendar
方法 or 属性:repeatMonths?: Array\;
废弃版本:N/A|类名:ReminderRequestCalendar
方法 or 属性:repeatMonths?: Array\;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.repeatMonths |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestCalendar
方法 or 属性:repeatDays?: Array\;
废弃版本:N/A|类名:ReminderRequestCalendar
方法 or 属性:repeatDays?: Array\;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.repeatDays |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestAlarm
废弃版本:N/A|类名:ReminderRequestAlarm
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestAlarm
方法 or 属性:hour: number;
废弃版本:N/A|类名:ReminderRequestAlarm
方法 or 属性:hour: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.hour |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestAlarm
方法 or 属性:minute: number;
废弃版本:N/A|类名:ReminderRequestAlarm
方法 or 属性:minute: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.minute |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestAlarm
方法 or 属性:daysOfWeek?: Array\;
废弃版本:N/A|类名:ReminderRequestAlarm
方法 or 属性:daysOfWeek?: Array\;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.daysOfWeek |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestTimer
废弃版本:N/A|类名:ReminderRequestTimer
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:year: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:year: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.year |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:month: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:month: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.month |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:day: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:day: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.day |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:hour: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:hour: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.hour |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:minute: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:minute: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.minute |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
方法 or 属性:second?: number;
废弃版本:N/A|类名:LocalDateTime
方法 or 属性:second?: number;
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.second |@ohos.reminderAgent.d.ts| +|SysCap有变化|类名:ReminderRequestAlarm
SysCap:Define alarm reminder object.|类名:ReminderRequestAlarm
SysCap:SystemCapability.Notification.ReminderAgent|@ohos.reminderAgent.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, callback: AsyncCallback\): void;
|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: AsyncCallback\): void;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(hashCode: string, callback: AsyncCallback\): void;
|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: AsyncCallback\): void;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey): Promise\;
|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(hashCode: string): Promise\;
|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey, callback: AsyncCallback\): void;
|类名:notification
方法 or 属性:function remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\): void;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(hashCode: string, callback: AsyncCallback\): void;
|类名:notification
方法 or 属性:function remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\): void;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(bundle: BundleOption, notificationKey: NotificationKey): Promise\;
|类名:notification
方法 or 属性:function remove(hashCode: string, reason: RemoveReason): Promise\;
|@ohos.notification.d.ts| +|函数有变化|类名:notification
方法 or 属性:function remove(hashCode: string): Promise\;
|类名:notification
方法 or 属性:function remove(hashCode: string, reason: RemoveReason): Promise\;
|@ohos.notification.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-resource-scheduler.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-resource-scheduler.md new file mode 100644 index 0000000000000000000000000000000000000000..ea654bf00e7c052462e4c1905711ca9ad9f0d314 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-resource-scheduler.md @@ -0,0 +1,215 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo
方法 or 属性: requestId: number;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo
方法 or 属性: actualDelayTime: number;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function cancelSuspendDelay(requestId: number): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function getRemainingDelayTime(requestId: number, callback: AsyncCallback\): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function getRemainingDelayTime(requestId: number): Promise\;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function requestSuspendDelay(reason: string, callback: Callback\): DelaySuspendInfo;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent, callback: AsyncCallback\): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise\;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function stopBackgroundRunning(context: Context, callback: AsyncCallback\): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function stopBackgroundRunning(context: Context): Promise\;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function applyEfficiencyResources(request: EfficiencyResourcesRequest): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法 or 属性: function resetAllEfficiencyResources(): void;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: DATA_TRANSFER = 1|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: AUDIO_PLAYBACK = 2|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: AUDIO_RECORDING = 3|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: LOCATION = 4|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: BLUETOOTH_INTERACTION = 5|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: MULTI_DEVICE_CONNECTION = 6|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: WIFI_INTERACTION = 7|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: VOIP = 8|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法 or 属性: TASK_KEEPING = 9|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: CPU = 1|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: COMMON_EVENT = 1 \<\< 1|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: TIMER = 1 \<\< 2|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: WORK_SCHEDULER = 1 \<\< 3|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: BLUETOOTH = 1 \<\< 4|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: GPS = 1 \<\< 5|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法 or 属性: AUDIO = 1 \<\< 6|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: resourceTypes: number;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: isApply: boolean;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: timeOut: number;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: isPersist?: boolean;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: isProcess?: boolean;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法 or 属性: reason: string;|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: id: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: abilityInFgTotalTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: abilityPrevAccessTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: abilityPrevSeenTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: abilitySeenTotalTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: bundleName?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: fgAbilityAccessTotalTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: fgAbilityPrevAccessTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: infosBeginTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法 or 属性: infosEndTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法 or 属性: formName: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法 or 属性: formDimension: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法 or 属性: formId: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法 or 属性: formLastUsedTime: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法 or 属性: count: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: deviceId?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: bundleName: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: moduleName: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: abilityName?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: appLabelId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: labelId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: descriptionId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: abilityLableId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: abilityDescriptionId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: abilityIconId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: launchedCount: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: lastModuleUsedTime: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法 or 属性: formRecords: Array\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法 or 属性: name: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法 or 属性: eventId: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法 or 属性: count: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: appGroup?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: bundleName?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: indexOfLink?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: nameOfClass?: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: eventOccurredTime?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法 or 属性: eventId?: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法 or 属性: appOldGroup: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法 or 属性: appNewGroup: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法 or 属性: userId: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法 or 属性: changeReason: number;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法 or 属性: bundleName: string;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function isIdleState(bundleName: string, callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function isIdleState(bundleName: string): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryAppGroup(callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryAppGroup(): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryAppGroup(bundleName : string, callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryAppGroup(bundleName : string): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsMap|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsMap
方法 or 属性: [key: string]: BundleStatsInfo;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleStatsInfos(begin: number, end: number, callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleStatsInfos(begin: number, end: number): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法 or 属性: BY_OPTIMIZED = 0|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法 or 属性: BY_DAILY = 1|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法 or 属性: BY_WEEKLY = 2|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法 or 属性: BY_MONTHLY = 3|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法 or 属性: BY_ANNUALLY = 4|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleStatsInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleStatsInfoByInterval(byInterval: IntervalType, begin: number, end: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleEvents(begin: number, end: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryBundleEvents(begin: number, end: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryCurrentBundleEvents(begin: number, end: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryCurrentBundleEvents(begin: number, end: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryModuleUsageRecords(maxNum: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryModuleUsageRecords(maxNum: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryModuleUsageRecords(callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryModuleUsageRecords(): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: ALIVE_GROUP = 10|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: DAILY_GROUP = 20|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: FIXED_GROUP = 30|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: RARE_GROUP = 40|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: LIMITED_GROUP = 50|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法 or 属性: NEVER_GROUP = 60|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function setAppGroup(bundleName: string, newGroup: GroupType, callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function setAppGroup(bundleName: string, newGroup: GroupType): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function registerAppGroupCallBack(groupCallback: Callback\, callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function registerAppGroupCallBack(groupCallback: Callback\): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function unregisterAppGroupCallBack(callback: AsyncCallback\): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function unregisterAppGroupCallBack(): Promise\;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryDeviceEventStats(begin: number, end: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryDeviceEventStats(begin: number, end: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryNotificationEventStats(begin: number, end: number, callback: AsyncCallback\>): void;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法 or 属性: function queryNotificationEventStats(begin: number, end: number): Promise\>;|@ohos.resourceschedule.usageStatistics.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: workId: number;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: bundleName: string;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: abilityName: string;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: isPersisted?: boolean;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: networkType?: NetworkType;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: isCharging?: boolean;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: chargerType?: ChargingType;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: batteryLevel?: number;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: batteryStatus?: BatteryStatus;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: storageRequest?: StorageRequest;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: repeatCycleTime?: number;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: isRepeat?: boolean;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: repeatCount?: number;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: isDeepIdle?: boolean;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: idleWaitTime?: number;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法 or 属性: parameters?: {[key: string]: number \| string \| boolean};|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function startWork(work: WorkInfo): void;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function stopWork(work: WorkInfo, needCancel?: boolean): void;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function getWorkStatus(workId: number, callback: AsyncCallback\): void;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function getWorkStatus(workId: number): Promise\;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function obtainAllWorks(callback: AsyncCallback\): Array\;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function obtainAllWorks(): Promise\>;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function stopAndClearWorks(): void;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function isLastWorkTimeOut(workId: number, callback: AsyncCallback\): boolean;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法 or 属性: function isLastWorkTimeOut(workId: number): Promise\;|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_ANY = 0|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_MOBILE|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_WIFI|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_BLUETOOTH|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_WIFI_P2P|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法 or 属性: NETWORK_TYPE_ETHERNET|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: ChargingType|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法 or 属性: CHARGING_PLUGGED_ANY = 0|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法 or 属性: CHARGING_PLUGGED_AC|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法 or 属性: CHARGING_PLUGGED_USB|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法 or 属性: CHARGING_PLUGGED_WIRELESS|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法 or 属性: BATTERY_STATUS_LOW = 0|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法 or 属性: BATTERY_STATUS_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法 or 属性: BATTERY_STATUS_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法 or 属性: STORAGE_LEVEL_LOW = 0|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法 or 属性: STORAGE_LEVEL_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法 or 属性: STORAGE_LEVEL_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增|NA|模块名: ohos.WorkSchedulerExtensionAbility
类名: WorkSchedulerExtensionAbility|@ohos.WorkSchedulerExtensionAbility.d.ts| +|新增|NA|模块名: ohos.WorkSchedulerExtensionAbility
类名: WorkSchedulerExtensionAbility
方法 or 属性: onWorkStart(work: workScheduler.WorkInfo): void;|@ohos.WorkSchedulerExtensionAbility.d.ts| +|新增|NA|模块名: ohos.WorkSchedulerExtensionAbility
类名: WorkSchedulerExtensionAbility
方法 or 属性: onWorkStop(work: workScheduler.WorkInfo): void;|@ohos.WorkSchedulerExtensionAbility.d.ts| +|废弃版本有变化|类名:particleAbility
方法 or 属性:function startBackgroundRunning(id: number, request: NotificationRequest, callback: AsyncCallback\): void;
废弃版本:N/A|类名:particleAbility
方法 or 属性:function startBackgroundRunning(id: number, request: NotificationRequest, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|类名:particleAbility
方法 or 属性:function startBackgroundRunning(id: number, request: NotificationRequest): Promise\;
废弃版本:N/A|类名:particleAbility
方法 or 属性:function startBackgroundRunning(id: number, request: NotificationRequest): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|类名:particleAbility
方法 or 属性:function cancelBackgroundRunning(callback: AsyncCallback\): void;
废弃版本:N/A|类名:particleAbility
方法 or 属性:function cancelBackgroundRunning(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|类名:particleAbility
方法 or 属性:function cancelBackgroundRunning(): Promise\;
废弃版本:N/A|类名:particleAbility
方法 or 属性:function cancelBackgroundRunning(): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
废弃版本:N/A|类名:backgroundTaskManager
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:DelaySuspendInfo
废弃版本:N/A|类名:DelaySuspendInfo
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.DelaySuspendInfo |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function cancelSuspendDelay(requestId: number): void;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function cancelSuspendDelay(requestId: number): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.cancelSuspendDelay |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function getRemainingDelayTime(requestId: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function getRemainingDelayTime(requestId: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.getRemainingDelayTime |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function getRemainingDelayTime(requestId: number): Promise\;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function getRemainingDelayTime(requestId: number): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.getRemainingDelayTime |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function requestSuspendDelay(reason: string, callback: Callback\): DelaySuspendInfo;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function requestSuspendDelay(reason: string, callback: Callback\): DelaySuspendInfo;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.requestSuspendDelay |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent, callback: AsyncCallback\): void;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise\;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function stopBackgroundRunning(context: Context, callback: AsyncCallback\): void;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function stopBackgroundRunning(context: Context, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
方法 or 属性:function stopBackgroundRunning(context: Context): Promise\;
废弃版本:N/A|类名:backgroundTaskManager
方法 or 属性:function stopBackgroundRunning(context: Context): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:BackgroundMode
废弃版本:N/A|类名:BackgroundMode
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:bundleState
废弃版本:N/A|类名:bundleState
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:BundleStateInfo
废弃版本:N/A|类名:BundleStateInfo
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:BundleActiveState
废弃版本:N/A|类名:BundleActiveState
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function isIdleState(bundleName: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.isIdleState |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function isIdleState(bundleName: string): Promise\;
废弃版本:N/A|类名:bundleState
方法 or 属性:function isIdleState(bundleName: string): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.isIdleState |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryAppUsagePriorityGroup(callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryAppUsagePriorityGroup(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryAppGroup |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryAppUsagePriorityGroup(): Promise\;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryAppUsagePriorityGroup(): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryAppGroup |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:BundleActiveInfoResponse
废弃版本:N/A|类名:BundleActiveInfoResponse
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsMap |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleStateInfos(begin: number, end: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleStateInfos(begin: number, end: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfos |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleStateInfos(begin: number, end: number): Promise\;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleStateInfos(begin: number, end: number): Promise\;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfos |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:IntervalType
废弃版本:N/A|类名:IntervalType
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfoByInterval |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number): Promise\>;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number): Promise\>;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfoByInterval |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleActiveStates(begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleActiveStates(begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryBundleActiveStates(begin: number, end: number): Promise\>;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryBundleActiveStates(begin: number, end: number): Promise\>;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryCurrentBundleActiveStates(begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryCurrentBundleActiveStates(begin: number, end: number, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryCurrentBundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:bundleState
方法 or 属性:function queryCurrentBundleActiveStates(begin: number, end: number): Promise\>;
废弃版本:N/A|类名:bundleState
方法 or 属性:function queryCurrentBundleActiveStates(begin: number, end: number): Promise\>;
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryCurrentBundleEvents |@ohos.bundleState.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-security.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-security.md new file mode 100644 index 0000000000000000000000000000000000000000..10c57766cee349b5e2f36229a038dd0d67c500d4 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-security.md @@ -0,0 +1,512 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:AtManager
方法or属性:verifyAccessTokenSync(tokenID: number, permissionName: Permissions): GrantStatus;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:checkAccessToken(tokenID: number, permissionName: Permissions): Promise\;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:requestPermissionsFromUser(context: Context, permissionList: Array\, requestCallback: AsyncCallback\) : void;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:requestPermissionsFromUser(context: Context, permissionList: Array\) : Promise\;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:getVersion(): Promise\;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:on(type: 'permissionStateChange', tokenIDList: Array\, permissionList: Array\, callback: Callback\): void;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:AtManager
方法or属性:off(type: 'permissionStateChange', tokenIDList: Array\, permissionList: Array\, callback?: Callback\): void;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeType|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeType
方法or属性:|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeType
方法 or 属性:PERMISSION_REVOKED_OPER = 0|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeType
方法or属性:PERMISSION_REVOKED_OPER = 0|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeType
方法 or 属性:PERMISSION_GRANTED_OPER = 1|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeType
方法or属性:PERMISSION_GRANTED_OPER = 1|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeInfo|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeInfo
方法or属性:|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeInfo
方法 or 属性:change: PermissionStateChangeType;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeInfo
方法or属性:change: PermissionStateChangeType;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeInfo
方法 or 属性:tokenID: number;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeInfo
方法or属性:tokenID: number;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.abilityAccessCtrl
类名: PermissionStateChangeInfo
方法 or 属性:permissionName: Permissions;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|类名:PermissionStateChangeInfo
方法or属性:permissionName: Permissions;|@ohos.abilityAccessCtrl.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number): Promise\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number, callback: AsyncCallback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function getPermissionUsedRecord(request: PermissionUsedRequest): Promise\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function getPermissionUsedRecord(request: PermissionUsedRequest, callback: AsyncCallback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function startUsingPermission(tokenID: number, permissionName: Permissions): Promise\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function startUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function stopUsingPermission(tokenID: number, permissionName: Permissions): Promise\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function stopUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function on(type: 'activeStateChange', permissionList: Array\, callback: Callback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: privacyManager
方法 or 属性: function off(type: 'activeStateChange', permissionList: Array\, callback?: Callback\): void;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionActiveStatus|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionActiveStatus
方法 or 属性: PERM_INACTIVE = 0|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionActiveStatus
方法 or 属性: PERM_ACTIVE_IN_FOREGROUND = 1|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionActiveStatus
方法 or 属性: PERM_ACTIVE_IN_BACKGROUND = 2|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: ActiveChangeResponse|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: ActiveChangeResponse
方法 or 属性: tokenId: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: ActiveChangeResponse
方法 or 属性: permissionName: Permissions;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: ActiveChangeResponse
方法 or 属性: deviceId: string;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: ActiveChangeResponse
方法 or 属性: activeStatus: PermissionActiveStatus;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsageFlag|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsageFlag
方法 or 属性: FLAG_PERMISSION_USAGE_SUMMARY = 0|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsageFlag
方法 or 属性: FLAG_PERMISSION_USAGE_DETAIL = 1|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: tokenId: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: isRemote: boolean;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: deviceId: string;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: bundleName: string;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: permissionNames: Array\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: beginTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: endTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRequest
方法 or 属性: flag: PermissionUsageFlag;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedResponse|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedResponse
方法 or 属性: beginTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedResponse
方法 or 属性: endTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedResponse
方法 or 属性: bundleRecords: Array\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord
方法 or 属性: tokenId: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord
方法 or 属性: isRemote: boolean;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord
方法 or 属性: deviceId: string;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord
方法 or 属性: bundleName: string;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: BundleUsedRecord
方法 or 属性: permissionRecords: Array\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: permissionName: Permissions;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: accessCount: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: rejectCount: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: lastAccessTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: lastRejectTime: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: lastAccessDuration: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: accessRecords: Array\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: PermissionUsedRecord
方法 or 属性: rejectRecords: Array\;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: UsedRecordDetail|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: UsedRecordDetail
方法 or 属性: status: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: UsedRecordDetail
方法 or 属性: timestamp: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.privacyManager
类名: UsedRecordDetail
方法 or 属性: accessDuration: number;|@ohos.privacyManager.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: INVALID_PARAMS = 401|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: NOT_SUPPORT = 801|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_OUT_OF_MEMORY = 19020001|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_RUNTIME_ERROR = 19020002|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_CRYPTO_OPERATION = 19030001|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_CERT_SIGNATURE_FAILURE = 19030002|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_CERT_NOT_YET_VALID = 19030003|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_CERT_HAS_EXPIRED = 19030004|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY = 19030005|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_KEYUSAGE_NO_CERTSIGN = 19030006|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertResult
方法 or 属性: ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE = 19030007|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: DataBlob|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: DataBlob
方法 or 属性: data : Uint8Array;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: DataArray|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: DataArray
方法 or 属性: data : Array\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingFormat|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingFormat
方法 or 属性: FORMAT_DER = 0|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingFormat
方法 or 属性: FORMAT_PEM = 1|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingBlob|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingBlob
方法 or 属性: data : Uint8Array;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: EncodingBlob
方法 or 属性: encodingFormat : EncodingFormat;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainData|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainData
方法 or 属性: data: Uint8Array;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainData
方法 or 属性: count : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainData
方法 or 属性: encodingFormat: EncodingFormat;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: verify(key : cryptoFramework.PubKey, callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: verify(key : cryptoFramework.PubKey) : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getEncoded(callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getEncoded() : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getPublicKey() : cryptoFramework.PubKey;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: checkValidityWithDate(date: string) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getVersion() : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSerialNumber() : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getIssuerName() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSubjectName() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getNotBeforeTime() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getNotAfterTime() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSignature() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSignatureAlgName() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSignatureAlgOid() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSignatureAlgParams() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getKeyUsage() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getExtKeyUsage() : DataArray;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getBasicConstraints() : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getSubjectAltNames() : DataArray;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Cert
方法 or 属性: getIssuerAltNames() : DataArray;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert
方法 or 属性: function createX509Cert(inStream : EncodingBlob, callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert
方法 or 属性: function createX509Cert(inStream : EncodingBlob) : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry
方法 or 属性: getEncoded(callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry
方法 or 属性: getEncoded() : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry
方法 or 属性: getSerialNumber() : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry
方法 or 属性: getCertIssuer() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509CrlEntry
方法 or 属性: getRevocationDate() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: isRevoked(cert : X509Cert) : boolean;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getType() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getEncoded(callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getEncoded() : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: verify(key : cryptoFramework.PubKey, callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: verify(key : cryptoFramework.PubKey) : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getVersion() : number;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getIssuerName() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getLastUpdate() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getNextUpdate() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getRevokedCert(serialNumber : number) : X509CrlEntry;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getRevokedCertWithCert(cert : X509Cert) : X509CrlEntry;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getRevokedCerts(callback : AsyncCallback\>) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getRevokedCerts() : Promise\>;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getTbsInfo() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getSignature() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getSignatureAlgName() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getSignatureAlgOid() : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: X509Crl
方法 or 属性: getSignatureAlgParams() : DataBlob;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert
方法 or 属性: function createX509Crl(inStream : EncodingBlob, callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert
方法 or 属性: function createX509Crl(inStream : EncodingBlob) : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainValidator|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainValidator
方法 or 属性: validate(certChain : CertChainData, callback : AsyncCallback\) : void;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainValidator
方法 or 属性: validate(certChain : CertChainData) : Promise\;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: CertChainValidator
方法 or 属性: readonly algorithm : string;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cert
类名: cert
方法 or 属性: function createCertChainValidator(algorithm :string) : CertChainValidator;|@ohos.security.cert.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result
方法 or 属性: INVALID_PARAMS = 401|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result
方法 or 属性: NOT_SUPPORT = 801|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result
方法 or 属性: ERR_OUT_OF_MEMORY = 17620001|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result
方法 or 属性: ERR_RUNTIME_ERROR = 17620002|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Result
方法 or 属性: ERR_CRYPTO_OPERATION = 17630001|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: DataBlob|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: DataBlob
方法 or 属性: data : Uint8Array;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: ParamsSpec|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: ParamsSpec
方法 or 属性: algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: IvParamsSpec|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: IvParamsSpec
方法 or 属性: iv : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: GcmParamsSpec|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: GcmParamsSpec
方法 or 属性: iv : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: GcmParamsSpec
方法 or 属性: aad : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: GcmParamsSpec
方法 or 属性: authTag : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CcmParamsSpec|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CcmParamsSpec
方法 or 属性: iv : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CcmParamsSpec
方法 or 属性: aad : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CcmParamsSpec
方法 or 属性: authTag : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CryptoMode|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CryptoMode
方法 or 属性: ENCRYPT_MODE = 0|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: CryptoMode
方法 or 属性: DECRYPT_MODE = 1|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Key|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Key
方法 or 属性: getEncoded() : DataBlob;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Key
方法 or 属性: readonly format : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Key
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKey|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKey
方法 or 属性: clearMem() : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: PriKey|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: PriKey
方法 or 属性: clearMem() : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: PubKey|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyPair|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyPair
方法 or 属性: readonly priKey : PriKey;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyPair
方法 or 属性: readonly pubKey : PubKey;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Random|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Random
方法 or 属性: generateRandom(len : number, callback: AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Random
方法 or 属性: generateRandom(len : number) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Random
方法 or 属性: setSeed(seed : DataBlob) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createRandom() : Random;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator
方法 or 属性: generateKeyPair(callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator
方法 or 属性: generateKeyPair() : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator
方法 or 属性: convertKey(pubKey : DataBlob, priKey : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator
方法 or 属性: convertKey(pubKey : DataBlob, priKey : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: AsyKeyGenerator
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator
方法 or 属性: generateSymKey(callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator
方法 or 属性: generateSymKey() : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator
方法 or 属性: convertKey(key : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator
方法 or 属性: convertKey(key : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: SymKeyGenerator
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createAsyKeyGenerator(algName : string) : AsyKeyGenerator;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createSymKeyGenerator(algName : string) : SymKeyGenerator;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: init(key : SymKey, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: init(key : SymKey) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: update(input : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: update(input : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: doFinal(callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: doFinal() : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: getMacLength() : number;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Mac
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createMac(algName : string) : Mac;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: update(input : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: update(input : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: digest(callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: digest() : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: getMdLength() : number;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Md
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createMd(algName : string) : Md;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: init(opMode : CryptoMode, key : Key, params : ParamsSpec, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: init(opMode : CryptoMode, key : Key, params : ParamsSpec) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: update(data : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: update(data : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: doFinal(data : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: doFinal(data : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Cipher
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createCipher(transformation : string) : Cipher;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: init(priKey : PriKey, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: init(priKey : PriKey) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: update(data : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: update(data : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: sign(data : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: sign(data : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Sign
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: init(pubKey : PubKey, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: init(pubKey : PubKey) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: update(data : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: update(data : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: verify(data : DataBlob, signatureData : DataBlob, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: verify(data : DataBlob, signatureData : DataBlob) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: Verify
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createSign(algName : string) : Sign;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createVerify(algName : string) : Verify;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyAgreement|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyAgreement
方法 or 属性: generateSecret(priKey : PriKey, pubKey : PubKey, callback : AsyncCallback\) : void;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyAgreement
方法 or 属性: generateSecret(priKey : PriKey, pubKey : PubKey) : Promise\;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: KeyAgreement
方法 or 属性: readonly algName : string;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|模块名: ohos.security.cryptoFramework
类名: cryptoFramework
方法 or 属性: function createKeyAgreement(algName : string) : KeyAgreement;|@ohos.security.cryptoFramework.d.ts| +|新增|NA|类名:huks
方法or属性:function generateKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function generateKeyItem(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function deleteKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function deleteKeyItem(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function importKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function importKeyItem(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function importWrappedKeyItem(keyAlias: string, wrappingKeyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function importWrappedKeyItem(keyAlias: string, wrappingKeyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function exportKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function exportKeyItem(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function getKeyItemProperties(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function getKeyItemProperties(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function isKeyItemExist(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function isKeyItemExist(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function initSession(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function initSession(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function updateSession(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function updateSession(handle: number, options: HuksOptions, token: Uint8Array, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function updateSession(handle: number, options: HuksOptions, token?: Uint8Array) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function finishSession(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function finishSession(handle: number, options: HuksOptions, token: Uint8Array, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function finishSession(handle: number, options: HuksOptions, token?: Uint8Array) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function abortSession(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function abortSession(handle: number, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function attestKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;|@ohos.security.huks.d.ts| +|新增|NA|类名:huks
方法or属性:function attestKeyItem(keyAlias: string, options: HuksOptions) : Promise\;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksSessionHandle|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksSessionHandle
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksSessionHandle
方法 or 属性:handle: number;|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksSessionHandle
方法or属性:handle: number;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksSessionHandle
方法 or 属性:challenge?: Uint8Array;|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksSessionHandle
方法or属性:challenge?: Uint8Array;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksReturnResult|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksReturnResult
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksReturnResult
方法 or 属性:outData?: Uint8Array;|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksReturnResult
方法or属性:outData?: Uint8Array;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksReturnResult
方法 or 属性:properties?: Array\;|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksReturnResult
方法or属性:properties?: Array\;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksReturnResult
方法 or 属性:certChains?: Array\;|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksReturnResult
方法or属性:certChains?: Array\;|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_PERMISSION_FAIL = 201|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_PERMISSION_FAIL = 201|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_ILLEGAL_ARGUMENT = 401|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_ILLEGAL_ARGUMENT = 401|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_NOT_SUPPORTED_API = 801|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_NOT_SUPPORTED_API = 801|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_FEATURE_NOT_SUPPORTED = 12000001|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_FEATURE_NOT_SUPPORTED = 12000001|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_MISSING_CRYPTO_ALG_ARGUMENT = 12000002|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_MISSING_CRYPTO_ALG_ARGUMENT = 12000002|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_INVALID_CRYPTO_ALG_ARGUMENT = 12000003|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_INVALID_CRYPTO_ALG_ARGUMENT = 12000003|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_FILE_OPERATION_FAIL = 12000004|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_FILE_OPERATION_FAIL = 12000004|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_COMMUNICATION_FAIL = 12000005|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_COMMUNICATION_FAIL = 12000005|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_CRYPTO_FAIL = 12000006|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_CRYPTO_FAIL = 12000006|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_KEY_AUTH_PERMANENTLY_INVALIDATED = 12000007|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_KEY_AUTH_PERMANENTLY_INVALIDATED = 12000007|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_KEY_AUTH_VERIFY_FAILED = 12000008|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_KEY_AUTH_VERIFY_FAILED = 12000008|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_KEY_AUTH_TIME_OUT = 12000009|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_KEY_AUTH_TIME_OUT = 12000009|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_SESSION_LIMIT = 12000010|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_SESSION_LIMIT = 12000010|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_ITEM_NOT_EXIST = 12000011|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_ITEM_NOT_EXIST = 12000011|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_EXTERNAL_ERROR = 12000012|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_EXTERNAL_ERROR = 12000012|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_CREDENTIAL_NOT_EXIST = 12000013|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_CREDENTIAL_NOT_EXIST = 12000013|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_INSUFFICIENT_MEMORY = 12000014|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_INSUFFICIENT_MEMORY = 12000014|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法 or 属性:HUKS_ERR_CODE_CALL_SERVICE_FAILED = 12000015|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksExceptionErrCode
方法or属性:HUKS_ERR_CODE_CALL_SERVICE_FAILED = 12000015|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeyDigest
方法 or 属性:HUKS_DIGEST_SM3 = 2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeyDigest
方法or属性:HUKS_DIGEST_SM3 = 2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeySize
方法 or 属性:HUKS_SM2_KEY_SIZE_256 = 256|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeySize
方法or属性:HUKS_SM2_KEY_SIZE_256 = 256|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeySize
方法 or 属性:HUKS_SM4_KEY_SIZE_128 = 128|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeySize
方法or属性:HUKS_SM4_KEY_SIZE_128 = 128|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeyAlg
方法 or 属性:HUKS_ALG_SM2 = 150|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeyAlg
方法or属性:HUKS_ALG_SM2 = 150|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeyAlg
方法 or 属性:HUKS_ALG_SM3 = 151|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeyAlg
方法or属性:HUKS_ALG_SM3 = 151|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksKeyAlg
方法 or 属性:HUKS_ALG_SM4 = 152|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksKeyAlg
方法or属性:HUKS_ALG_SM4 = 152|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUnwrapSuite|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUnwrapSuite
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUnwrapSuite
方法 or 属性:HUKS_UNWRAP_SUITE_X25519_AES_256_GCM_NOPADDING = 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUnwrapSuite
方法or属性:HUKS_UNWRAP_SUITE_X25519_AES_256_GCM_NOPADDING = 1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUnwrapSuite
方法 or 属性:HUKS_UNWRAP_SUITE_ECDH_AES_256_GCM_NOPADDING = 2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUnwrapSuite
方法or属性:HUKS_UNWRAP_SUITE_ECDH_AES_256_GCM_NOPADDING = 2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksImportKeyType|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksImportKeyType
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksImportKeyType
方法 or 属性:HUKS_KEY_TYPE_PUBLIC_KEY = 0|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksImportKeyType
方法or属性:HUKS_KEY_TYPE_PUBLIC_KEY = 0|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksImportKeyType
方法 or 属性:HUKS_KEY_TYPE_PRIVATE_KEY = 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksImportKeyType
方法or属性:HUKS_KEY_TYPE_PRIVATE_KEY = 1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksImportKeyType
方法 or 属性:HUKS_KEY_TYPE_KEY_PAIR = 2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksImportKeyType
方法or属性:HUKS_KEY_TYPE_KEY_PAIR = 2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUserAuthType|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUserAuthType
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUserAuthType
方法 or 属性:HUKS_USER_AUTH_TYPE_FINGERPRINT = 1 \<\< 0|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUserAuthType
方法or属性:HUKS_USER_AUTH_TYPE_FINGERPRINT = 1 \<\< 0|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUserAuthType
方法 or 属性:HUKS_USER_AUTH_TYPE_FACE = 1 \<\< 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUserAuthType
方法or属性:HUKS_USER_AUTH_TYPE_FACE = 1 \<\< 1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksUserAuthType
方法 or 属性:HUKS_USER_AUTH_TYPE_PIN = 1 \<\< 2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksUserAuthType
方法or属性:HUKS_USER_AUTH_TYPE_PIN = 1 \<\< 2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksAuthAccessType|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksAuthAccessType
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksAuthAccessType
方法 or 属性:HUKS_AUTH_ACCESS_INVALID_CLEAR_PASSWORD = 1 \<\< 0|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksAuthAccessType
方法or属性:HUKS_AUTH_ACCESS_INVALID_CLEAR_PASSWORD = 1 \<\< 0|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksAuthAccessType
方法 or 属性:HUKS_AUTH_ACCESS_INVALID_NEW_BIO_ENROLL = 1 \<\< 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksAuthAccessType
方法or属性:HUKS_AUTH_ACCESS_INVALID_NEW_BIO_ENROLL = 1 \<\< 1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengeType|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengeType
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengeType
方法 or 属性:HUKS_CHALLENGE_TYPE_NORMAL = 0|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengeType
方法or属性:HUKS_CHALLENGE_TYPE_NORMAL = 0|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengeType
方法 or 属性:HUKS_CHALLENGE_TYPE_CUSTOM = 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengeType
方法or属性:HUKS_CHALLENGE_TYPE_CUSTOM = 1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengeType
方法 or 属性:HUKS_CHALLENGE_TYPE_NONE = 2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengeType
方法or属性:HUKS_CHALLENGE_TYPE_NONE = 2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengePosition|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengePosition
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengePosition
方法 or 属性:HUKS_CHALLENGE_POS_0 = 0|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengePosition
方法or属性:HUKS_CHALLENGE_POS_0 = 0|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengePosition
方法 or 属性:HUKS_CHALLENGE_POS_1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengePosition
方法or属性:HUKS_CHALLENGE_POS_1|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengePosition
方法 or 属性:HUKS_CHALLENGE_POS_2|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengePosition
方法or属性:HUKS_CHALLENGE_POS_2|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksChallengePosition
方法 or 属性:HUKS_CHALLENGE_POS_3|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksChallengePosition
方法or属性:HUKS_CHALLENGE_POS_3|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksSecureSignType|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksSecureSignType
方法or属性:|@ohos.security.huks.d.ts| +|新增|NA|模块名: ohos.security.huks
类名: HuksSecureSignType
方法 or 属性:HUKS_SECURE_SIGN_WITH_AUTHINFO = 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksSecureSignType
方法or属性:HUKS_SECURE_SIGN_WITH_AUTHINFO = 1|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_IMPORT_KEY_TYPE = HuksTagType.HUKS_TAG_TYPE_UINT \| 25|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_UNWRAP_ALGORITHM_SUITE = HuksTagType.HUKS_TAG_TYPE_UINT \| 26|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_KEY_AUTH_ACCESS_TYPE = HuksTagType.HUKS_TAG_TYPE_UINT \| 307|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_KEY_SECURE_SIGN_TYPE = HuksTagType.HUKS_TAG_TYPE_UINT \| 308|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_CHALLENGE_TYPE = HuksTagType.HUKS_TAG_TYPE_UINT \| 309|@ohos.security.huks.d.ts| +|新增|NA|类名:HuksTag
方法or属性:HUKS_TAG_CHALLENGE_POS = HuksTagType.HUKS_TAG_TYPE_UINT \| 310|@ohos.security.huks.d.ts| +|新增|NA|模块名: PermissionRequestResult
类名: PermissionRequestResult|PermissionRequestResult.d.ts| +|新增|NA|模块名: PermissionRequestResult
类名: PermissionRequestResult
方法 or 属性: permissions: Array\;|PermissionRequestResult.d.ts| +|新增|NA|模块名: PermissionRequestResult
类名: PermissionRequestResult
方法 or 属性: authResults: Array\;|PermissionRequestResult.d.ts| +|废弃版本有变化|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: string): Promise\;
废弃版本:N/A|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: string): Promise\;
废弃版本:9
代替接口:ohos.abilityAccessCtrl.AtManager|@ohos.abilityAccessCtrl.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function generateKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function generateKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.generateKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function generateKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function generateKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.generateKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function deleteKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function deleteKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.deleteKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function deleteKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function deleteKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.deleteKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function importKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function importKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.importKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function importKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function importKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.importKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function exportKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function exportKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.exportKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function exportKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function exportKey(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.exportKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function getKeyProperties(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function getKeyProperties(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.getKeyItemProperties |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function getKeyProperties(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function getKeyProperties(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.getKeyItemProperties |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function isKeyExist(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function isKeyExist(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.isKeyItemExist |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function isKeyExist(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function isKeyExist(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.isKeyItemExist |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function init(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function init(keyAlias: string, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.initSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function init(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function init(keyAlias: string, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.initSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function update(handle: number, token?: Uint8Array, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function update(handle: number, token?: Uint8Array, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.updateSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function update(handle: number, token?: Uint8Array, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function update(handle: number, token?: Uint8Array, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.updateSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function finish(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function finish(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.finishSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function finish(handle: number, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function finish(handle: number, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.finishSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function abort(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:N/A|类名:huks
方法 or 属性:function abort(handle: number, options: HuksOptions, callback: AsyncCallback\) : void;
废弃版本:9
代替接口:ohos.security.huks.abortSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:huks
方法 or 属性:function abort(handle: number, options: HuksOptions) : Promise\;
废弃版本:N/A|类名:huks
方法 or 属性:function abort(handle: number, options: HuksOptions) : Promise\;
废弃版本:9
代替接口:ohos.security.huks.abortSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksHandle
废弃版本:N/A|类名:HuksHandle
废弃版本:9
代替接口:ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksResult
废弃版本:N/A|类名:HuksResult
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksErrorCode
废弃版本:N/A|类名:HuksErrorCode
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_INVALID = HuksTagType.HUKS_TAG_TYPE_INVALID \| 0
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_INVALID = HuksTagType.HUKS_TAG_TYPE_INVALID \| 0
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PWD = HuksTagType.HUKS_TAG_TYPE_BYTES \| 13
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PWD = HuksTagType.HUKS_TAG_TYPE_BYTES \| 13
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_MAIN_KEY = HuksTagType.HUKS_TAG_TYPE_BYTES \| 16
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_MAIN_KEY = HuksTagType.HUKS_TAG_TYPE_BYTES \| 16
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_FACTOR = HuksTagType.HUKS_TAG_TYPE_BYTES \| 17
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_FACTOR = HuksTagType.HUKS_TAG_TYPE_BYTES \| 17
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_ALG = HuksTagType.HUKS_TAG_TYPE_UINT \| 18
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_ALG = HuksTagType.HUKS_TAG_TYPE_UINT \| 18
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ACTIVE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 201
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ACTIVE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 201
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ORIGINATION_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 202
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ORIGINATION_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 202
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_USAGE_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 203
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_USAGE_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 203
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_CREATION_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 204
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_CREATION_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 204
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES \| 503
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES \| 503
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES \| 504
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES \| 504
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES \| 505
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES \| 505
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 506
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 506
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES \| 507
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES \| 507
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 508
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 508
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES \| 509
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES \| 509
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 510
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 510
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 512
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 512
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 513
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 513
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_ALIAS = HuksTagType.HUKS_TAG_TYPE_BOOL \| 1009
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_ALIAS = HuksTagType.HUKS_TAG_TYPE_BOOL \| 1009
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_UUID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 1010
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_UUID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 1010
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PROCESS_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10001
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PROCESS_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10001
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PACKAGE_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10002
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PACKAGE_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10002
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ACCESS_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10003
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ACCESS_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10003
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_USES_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10004
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_USES_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10004
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_CRYPTO_CTX = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10005
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_CRYPTO_CTX = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10005
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_KEY_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10007
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_KEY_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10007
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PAYLOAD_LEN = HuksTagType.HUKS_TAG_TYPE_UINT \| 10008
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PAYLOAD_LEN = HuksTagType.HUKS_TAG_TYPE_UINT \| 10008
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_IS_KEY_HANDLE = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10010
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_IS_KEY_HANDLE = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10010
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10101
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10101
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_PATCHLEVEL = HuksTagType.HUKS_TAG_TYPE_UINT \| 10102
废弃版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_PATCHLEVEL = HuksTagType.HUKS_TAG_TYPE_UINT \| 10102
废弃版本:9
代替接口:N/A|@ohos.security.huks.d.ts| +|废弃版本有变化|类名:Cipher
废弃版本:N/A|类名:Cipher
废弃版本:9
代替接口:ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts| +|废弃版本有变化|类名:Cipher
方法 or 属性:static rsa(options: CipherRsaOptions): void;
废弃版本:N/A|类名:Cipher
方法 or 属性:static rsa(options: CipherRsaOptions): void;
废弃版本:9
代替接口:N/A|@system.cipher.d.ts| +|废弃版本有变化|类名:Cipher
方法 or 属性:static aes(options: CipherAesOptions): void;
废弃版本:N/A|类名:Cipher
方法 or 属性:static aes(options: CipherAesOptions): void;
废弃版本:9
代替接口:N/A|@system.cipher.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_INVALID = HuksTagType.HUKS_TAG_TYPE_INVALID \| 0
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_INVALID = HuksTagType.HUKS_TAG_TYPE_INVALID \| 0
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PWD = HuksTagType.HUKS_TAG_TYPE_BYTES \| 13
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PWD = HuksTagType.HUKS_TAG_TYPE_BYTES \| 13
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_MAIN_KEY = HuksTagType.HUKS_TAG_TYPE_BYTES \| 16
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_MAIN_KEY = HuksTagType.HUKS_TAG_TYPE_BYTES \| 16
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_FACTOR = HuksTagType.HUKS_TAG_TYPE_BYTES \| 17
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_FACTOR = HuksTagType.HUKS_TAG_TYPE_BYTES \| 17
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_ALG = HuksTagType.HUKS_TAG_TYPE_UINT \| 18
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_DERIVE_ALG = HuksTagType.HUKS_TAG_TYPE_UINT \| 18
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ACTIVE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 201
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ACTIVE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 201
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ORIGINATION_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 202
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ORIGINATION_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 202
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_USAGE_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 203
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_USAGE_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 203
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_CREATION_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 204
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_CREATION_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG \| 204
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES \| 503
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES \| 503
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES \| 504
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES \| 504
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES \| 505
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES \| 505
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 506
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 506
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES \| 507
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES \| 507
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 508
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 508
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES \| 509
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES \| 509
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 510
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES \| 510
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 512
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 512
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 513
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 513
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_ALIAS = HuksTagType.HUKS_TAG_TYPE_BOOL \| 1009
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_ALIAS = HuksTagType.HUKS_TAG_TYPE_BOOL \| 1009
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_UUID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 1010
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_SECURE_KEY_UUID = HuksTagType.HUKS_TAG_TYPE_BYTES \| 1010
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PROCESS_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10001
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PROCESS_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10001
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PACKAGE_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10002
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PACKAGE_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES \| 10002
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_ACCESS_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10003
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_ACCESS_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10003
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_USES_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10004
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_USES_TIME = HuksTagType.HUKS_TAG_TYPE_UINT \| 10004
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_CRYPTO_CTX = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10005
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_CRYPTO_CTX = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10005
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_KEY_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10007
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_KEY_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10007
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_PAYLOAD_LEN = HuksTagType.HUKS_TAG_TYPE_UINT \| 10008
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_PAYLOAD_LEN = HuksTagType.HUKS_TAG_TYPE_UINT \| 10008
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_IS_KEY_HANDLE = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10010
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_IS_KEY_HANDLE = HuksTagType.HUKS_TAG_TYPE_ULONG \| 10010
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10101
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT \| 10101
起始版本:8|@ohos.security.huks.d.ts| +|起始版本有变化|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_PATCHLEVEL = HuksTagType.HUKS_TAG_TYPE_UINT \| 10102
起始版本:N/A|类名:HuksTag
方法 or 属性:HUKS_TAG_OS_PATCHLEVEL = HuksTagType.HUKS_TAG_TYPE_UINT \| 10102
起始版本:8|@ohos.security.huks.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: string): Promise\;
|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: string): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: string): Promise\;
|类名:AtManager
方法 or 属性:verifyAccessToken(tokenID: number, permissionName: Permissions): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: string, permissionFlag: number): Promise\;
|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: string, permissionFlag: number, callback: AsyncCallback\): void;
|类名:AtManager
方法 or 属性:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number, callback: AsyncCallback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: string, permissionFlag: number): Promise\;
|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise\;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: string, permissionFlag: number, callback: AsyncCallback\): void;
|类名:AtManager
方法 or 属性:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number, callback: AsyncCallback\): void;
|@ohos.abilityAccessCtrl.d.ts| +|函数有变化|类名:AtManager
方法 or 属性:getPermissionFlags(tokenID: number, permissionName: string): Promise\;
|类名:AtManager
方法 or 属性:getPermissionFlags(tokenID: number, permissionName: Permissions): Promise\;
|@ohos.abilityAccessCtrl.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-sensor.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-sensor.md new file mode 100644 index 0000000000000000000000000000000000000000..ed5d5fc70248e17e006a9971e00d261f9b38be38 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-sensor.md @@ -0,0 +1,1149 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.sensor
类名: SensorId|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:ACCELEROMETER = 1|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:ACCELEROMETER = 1|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:GYROSCOPE = 2|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:GYROSCOPE = 2|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:AMBIENT_LIGHT = 5|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:AMBIENT_LIGHT = 5|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:MAGNETIC_FIELD = 6|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:MAGNETIC_FIELD = 6|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:BAROMETER = 8|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:BAROMETER = 8|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:HALL = 10|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:HALL = 10|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:PROXIMITY = 12|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:PROXIMITY = 12|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:HUMIDITY = 13|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:HUMIDITY = 13|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:ORIENTATION = 256|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:ORIENTATION = 256|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:GRAVITY = 257|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:GRAVITY = 257|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:LINEAR_ACCELEROMETER = 258|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:LINEAR_ACCELEROMETER = 258|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:ROTATION_VECTOR = 259|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:ROTATION_VECTOR = 259|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:AMBIENT_TEMPERATURE = 260|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:AMBIENT_TEMPERATURE = 260|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:MAGNETIC_FIELD_UNCALIBRATED = 261|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:MAGNETIC_FIELD_UNCALIBRATED = 261|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:GYROSCOPE_UNCALIBRATED = 263|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:GYROSCOPE_UNCALIBRATED = 263|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:SIGNIFICANT_MOTION = 264|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:SIGNIFICANT_MOTION = 264|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:PEDOMETER_DETECTION = 265|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:PEDOMETER_DETECTION = 265|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:PEDOMETER = 266|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:PEDOMETER = 266|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:HEART_RATE = 278|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:HEART_RATE = 278|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:WEAR_DETECTION = 280|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:WEAR_DETECTION = 280|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: SensorId
方法 or 属性:ACCELEROMETER_UNCALIBRATED = 281|@ohos.sensor.d.ts| +|新增|NA|类名:SensorId
方法or属性:ACCELEROMETER_UNCALIBRATED = 281|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.ACCELEROMETER, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.AMBIENT_LIGHT, callback: Callback\, options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.BAROMETER, callback: Callback\, options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.GRAVITY, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.GYROSCOPE, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.HALL, callback: Callback\, options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.HEART_RATE, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.HUMIDITY, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.MAGNETIC_FIELD, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.ORIENTATION, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.PEDOMETER, callback: Callback\, options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.PEDOMETER_DETECTION, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.PROXIMITY, callback: Callback\, options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.ROTATION_VECTOR, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function on(type: SensorId.WEAR_DETECTION, callback: Callback\,

options?: Options): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.ACCELEROMETER, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.AMBIENT_LIGHT, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.AMBIENT_TEMPERATURE, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.BAROMETER, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.GRAVITY, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.GYROSCOPE, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.GYROSCOPE_UNCALIBRATED, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.HALL, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.HEART_RATE, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.HUMIDITY, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.LINEAR_ACCELEROMETER, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.MAGNETIC_FIELD, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.ORIENTATION, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.PEDOMETER, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.PEDOMETER_DETECTION, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.PROXIMITY, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.ROTATION_VECTOR, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.SIGNIFICANT_MOTION, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function off(type: SensorId.WEAR_DETECTION, callback?: Callback\): void;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:sensorName:string;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:sensorName:string;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:vendorName:string;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:vendorName:string;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:firmwareVersion:string;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:firmwareVersion:string;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:hardwareVersion:string;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:hardwareVersion:string;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:sensorId:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:sensorId:number;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:maxRange:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:maxRange:number;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:minSamplePeriod:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:minSamplePeriod:number;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:maxSamplePeriod:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:maxSamplePeriod:number;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:precision:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:precision:number;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.sensor
类名: Sensor
方法 or 属性:power:number;|@ohos.sensor.d.ts| +|新增|NA|类名:Sensor
方法or属性:power:number;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getSingleSensor(type: SensorId, callback: AsyncCallback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getSingleSensor(type: SensorId): Promise\;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getSensorList(callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getSensorList(): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getGeomagneticInfo(locationOptions: LocationOptions, timeMillis: number, callback: AsyncCallback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getGeomagneticInfo(locationOptions: LocationOptions, timeMillis: number): Promise\;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getDeviceAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getDeviceAltitude(seaPressure: number, currentPressure: number): Promise\;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getInclination(inclinationMatrix: Array\, callback: AsyncCallback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getInclination(inclinationMatrix: Array\): Promise\;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getAngleVariation(currentRotationMatrix: Array\, preRotationMatrix: Array\,

callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getAngleVariation(currentRotationMatrix: Array\, preRotationMatrix: Array\): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getRotationMatrix(rotationVector: Array\, callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getRotationMatrix(rotationVector: Array\): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function transformRotationMatrix(inRotationVector: Array\, coordinates: CoordinatesOptions,

callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function transformRotationMatrix(inRotationVector: Array\, coordinates: CoordinatesOptions): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getQuaternion(rotationVector: Array\, callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getQuaternion(rotationVector: Array\): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getOrientation(rotationMatrix: Array\, callback: AsyncCallback\>): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getOrientation(rotationMatrix: Array\): Promise\>;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getRotationMatrix(gravity: Array\, geomagnetic: Array\, callback: AsyncCallback\): void;|@ohos.sensor.d.ts| +|新增|NA|类名:sensor
方法or属性:function getRotationMatrix(gravity: Array\, geomagnetic: Array\): Promise\;|@ohos.sensor.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: Usage
方法 or 属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:Usage
方法or属性:type Usage = "unknown" \| "alarm" \| "ring" \| "notification" \| "communication" \|

"touch" \| "media" \| "physicalFeedback" \| "simulateReality";|@ohos.vibrator.d.ts| +|新增|NA|类名:vibrator
方法or属性:function startVibration(effect: VibrateEffect, attribute: VibrateAttribute, callback: AsyncCallback\): void;|@ohos.vibrator.d.ts| +|新增|NA|类名:vibrator
方法or属性:function startVibration(effect: VibrateEffect, attribute: VibrateAttribute): Promise\;|@ohos.vibrator.d.ts| +|新增|NA|类名:vibrator
方法or属性:function stopVibration(stopMode: VibratorStopMode): Promise\;|@ohos.vibrator.d.ts| +|新增|NA|类名:vibrator
方法or属性:function stopVibration(stopMode: VibratorStopMode, callback: AsyncCallback\): void;|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateAttribute|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateAttribute
方法or属性:|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateAttribute
方法 or 属性:id?: number,|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateAttribute
方法or属性:id?: number,|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateAttribute
方法 or 属性:usage: Usage,|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateAttribute
方法or属性:usage: Usage,|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateTime|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateTime
方法or属性:|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateTime
方法 or 属性:type: "time";|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateTime
方法or属性:type: "time";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibrateTime
方法 or 属性:duration: number;|@ohos.vibrator.d.ts| +|新增|NA|类名:VibrateTime
方法or属性:duration: number;|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibratePreset|@ohos.vibrator.d.ts| +|新增|NA|类名:VibratePreset
方法or属性:|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibratePreset
方法 or 属性:type: "preset";|@ohos.vibrator.d.ts| +|新增|NA|类名:VibratePreset
方法or属性:type: "preset";|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibratePreset
方法 or 属性:effectId: string;|@ohos.vibrator.d.ts| +|新增|NA|类名:VibratePreset
方法or属性:effectId: string;|@ohos.vibrator.d.ts| +|新增|NA|模块名: ohos.vibrator
类名: VibratePreset
方法 or 属性:count: number;|@ohos.vibrator.d.ts| +|新增|NA|类名:VibratePreset
方法or属性:count: number;|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\,

options?: Options): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\,

options?: Options): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED,

callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED,

callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HALL, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HALL, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback?: Callback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback?: Callback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number): Promise\;
废弃版本:N/A|类名:sensor
方法 or 属性:function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number): Promise\;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function getAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getAltitude(seaPressure: number, currentPressure: number): Promise\;
废弃版本:N/A|类名:sensor
方法 or 属性:function getAltitude(seaPressure: number, currentPressure: number): Promise\;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getGeomagneticDip(inclinationMatrix: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function getGeomagneticDip(inclinationMatrix: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getGeomagneticDip(inclinationMatrix: Array\): Promise\;
废弃版本:N/A|类名:sensor
方法 or 属性:function getGeomagneticDip(inclinationMatrix: Array\): Promise\;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getAngleModify(currentRotationMatrix: Array\, preRotationMatrix: Array\,

callback: AsyncCallback\>): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function getAngleModify(currentRotationMatrix: Array\, preRotationMatrix: Array\,

callback: AsyncCallback\>): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getAngleModify(currentRotationMatrix: Array\, preRotationMatrix: Array\): Promise\>;
废弃版本:N/A|类名:sensor
方法 or 属性:function getAngleModify(currentRotationMatrix: Array\, preRotationMatrix: Array\): Promise\>;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createRotationMatrix(rotationVector: Array\, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function createRotationMatrix(rotationVector: Array\, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createRotationMatrix(rotationVector: Array\): Promise\>;
废弃版本:N/A|类名:sensor
方法 or 属性:function createRotationMatrix(rotationVector: Array\): Promise\>;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function transformCoordinateSystem(inRotationVector: Array\, coordinates: CoordinatesOptions,

callback: AsyncCallback\>): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function transformCoordinateSystem(inRotationVector: Array\, coordinates: CoordinatesOptions,

callback: AsyncCallback\>): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function transformCoordinateSystem(inRotationVector: Array\, coordinates: CoordinatesOptions): Promise\>;
废弃版本:N/A|类名:sensor
方法 or 属性:function transformCoordinateSystem(inRotationVector: Array\, coordinates: CoordinatesOptions): Promise\>;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createQuaternion(rotationVector: Array\, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function createQuaternion(rotationVector: Array\, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createQuaternion(rotationVector: Array\): Promise\>;
废弃版本:N/A|类名:sensor
方法 or 属性:function createQuaternion(rotationVector: Array\): Promise\>;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getDirection(rotationMatrix: Array\, callback: AsyncCallback\>): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function getDirection(rotationMatrix: Array\, callback: AsyncCallback\>): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function getDirection(rotationMatrix: Array\): Promise\>;
废弃版本:N/A|类名:sensor
方法 or 属性:function getDirection(rotationMatrix: Array\): Promise\>;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createRotationMatrix(gravity: Array\, geomagnetic: Array\, callback: AsyncCallback\): void;
废弃版本:N/A|类名:sensor
方法 or 属性:function createRotationMatrix(gravity: Array\, geomagnetic: Array\, callback: AsyncCallback\): void;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:sensor
方法 or 属性:function createRotationMatrix(gravity: Array\, geomagnetic: Array\,): Promise\;
废弃版本:N/A|类名:sensor
方法 or 属性:function createRotationMatrix(gravity: Array\, geomagnetic: Array\,): Promise\;
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:SensorType
废弃版本:N/A|类名:SensorType
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function vibrate(duration: number, callback?: AsyncCallback\): void;
废弃版本:N/A|类名:vibrator
方法 or 属性:function vibrate(duration: number, callback?: AsyncCallback\): void;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function vibrate(duration: number): Promise\;
废弃版本:N/A|类名:vibrator
方法 or 属性:function vibrate(duration: number): Promise\;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function vibrate(effectId: EffectId): Promise\;
废弃版本:N/A|类名:vibrator
方法 or 属性:function vibrate(effectId: EffectId): Promise\;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function vibrate(effectId: EffectId, callback?: AsyncCallback\): void;
废弃版本:N/A|类名:vibrator
方法 or 属性:function vibrate(effectId: EffectId, callback?: AsyncCallback\): void;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function stop(stopMode: VibratorStopMode): Promise\;
废弃版本:N/A|类名:vibrator
方法 or 属性:function stop(stopMode: VibratorStopMode): Promise\;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|类名:vibrator
方法 or 属性:function stop(stopMode: VibratorStopMode, callback?: AsyncCallback\): void;
废弃版本:N/A|类名:vibrator
方法 or 属性:function stop(stopMode: VibratorStopMode, callback?: AsyncCallback\): void;
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|权限有变化|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\,

options?: Options): void;
权限:ohos.permission.READ_HEALTH_DATA|类名:sensor
方法 or 属性:function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\,

options?: Options): void;
权限:ohos.permission.HEALTH_DATA|@ohos.sensor.d.ts| +|权限有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
权限:ohos.permission.READ_HEALTH_DATA|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
权限:ohos.permission.HEART_RATE|@ohos.sensor.d.ts| +|权限有变化|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback\): void;
权限:ohos.permission.READ_HEALTH_DATA|类名:sensor
方法 or 属性:function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback\): void;
权限:ohos.permission.HEALTH_DATA|@ohos.sensor.d.ts| +|删除(权限)|类名:sensor
权限:ohos.permission.ACCELEROMETER|类名:sensor
权限:N/A|@ohos.sensor.d.ts| +|删除(权限)|类名:vibrator
权限:ohos.permission.VIBRATE|类名:vibrator
权限:N/A|@ohos.vibrator.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorId.WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| +|函数有变化|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|类名:sensor
方法 or 属性:function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback\): void;
|@ohos.sensor.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-start-up.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-start-up.md new file mode 100644 index 0000000000000000000000000000000000000000..51574345fb635a9331694dc9317d5bee09dc4a21 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-start-up.md @@ -0,0 +1,14 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function getSync(key: string, def?: string): string;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, def: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function get(key: string, def?: string): Promise\;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function setSync(key: string, value: string): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function set(key: string, value: string, callback: AsyncCallback\): void;|@ohos.systemParameterEnhance.d.ts| +|新增|NA|模块名: ohos.systemParameterEnhance
类名: systemParameterEnhance
方法 or 属性: function set(key: string, value: string): Promise\;|@ohos.systemParameterEnhance.d.ts| +|废弃版本有变化|类名:deviceInfo
方法 or 属性:const hardwareProfile: string;
废弃版本:N/A|类名:deviceInfo
方法 or 属性:const hardwareProfile: string;
废弃版本:9
代替接口:N/A|@ohos.deviceInfo.d.ts| +|废弃版本有变化|类名:Device
方法 or 属性:static getInfo(options?: GetDeviceOptions): void;
废弃版本:N/A|类名:Device
方法 or 属性:static getInfo(options?: GetDeviceOptions): void;
废弃版本:6
代替接口:N/A|@system.device.d.ts| +|新增(权限)|类名:deviceInfo
方法 or 属性:const serial: string;
权限:N/A|类名:deviceInfo
方法 or 属性:const serial: string;
权限:ohos.permission.sec.ACCESS_UDID|@ohos.deviceInfo.d.ts| +|新增(权限)|类名:deviceInfo
方法 or 属性:const udid: string;
权限:N/A|类名:deviceInfo
方法 or 属性:const udid: string;
权限:ohos.permission.sec.ACCESS_UDID|@ohos.deviceInfo.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-telephony.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-telephony.md new file mode 100644 index 0000000000000000000000000000000000000000..ad4b4769bd4e4ec4a6575a4bf5e84fdd20d126a0 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-telephony.md @@ -0,0 +1,656 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, options: DialCallOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function dialCall(phoneNumber: string, options?: DialCallOptions): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callId?: number): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function answerCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callId?: number): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function hangUpCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId: number, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId: number, options: RejectMessageOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callId?: number, options?: RejectMessageOptions): Promise\;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function rejectCall(options: RejectMessageOptions, callback: AsyncCallback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function on(type: 'mmiCodeResult', callback: Callback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|类名:call
方法or属性:function off(type: 'mmiCodeResult', callback?: Callback\): void;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: AudioDevice
方法 or 属性:DEVICE_EARPIECE|@ohos.telephony.call.d.ts| +|新增|NA|类名:AudioDevice
方法or属性:DEVICE_EARPIECE|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferInfo
方法or属性:startHour?: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferInfo
方法or属性:startMinute?: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferInfo
方法or属性:endHour?: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferInfo
方法or属性:endMinute?: number;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:accountId?: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:accountId?: number;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:videoState?: VideoStateType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:videoState?: VideoStateType;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:dialScene?: DialScene;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:dialScene?: DialScene;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DialCallOptions
方法 or 属性:dialType?: DialType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DialCallOptions
方法or属性:dialType?: DialType;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferResult
方法or属性:startHour: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferResult
方法or属性:startMinute: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferResult
方法or属性:endHour: number;|@ohos.telephony.call.d.ts| +|新增|NA|类名:CallTransferResult
方法or属性:endMinute: number;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: AudioDeviceOptions|@ohos.telephony.call.d.ts| +|新增|NA|类名:AudioDeviceOptions
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: AudioDeviceOptions
方法 or 属性:bluetoothAddress?: string;|@ohos.telephony.call.d.ts| +|新增|NA|类名:AudioDeviceOptions
方法or属性:bluetoothAddress?: string;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResults|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResults
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResults
方法 or 属性:result: MmiCodeResult;|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResults
方法or属性:result: MmiCodeResult;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResults
方法 or 属性:message: string;|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResults
方法or属性:message: string;|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResult|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResult
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResult
方法 or 属性:MMI_CODE_SUCCESS = 0|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResult
方法or属性:MMI_CODE_SUCCESS = 0|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: MmiCodeResult
方法 or 属性:MMI_CODE_FAILED = 1|@ohos.telephony.call.d.ts| +|新增|NA|类名:MmiCodeResult
方法or属性:MMI_CODE_FAILED = 1|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:UNASSIGNED_NUMBER = 1|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:UNASSIGNED_NUMBER = 1|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NO_ROUTE_TO_DESTINATION = 3|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NO_ROUTE_TO_DESTINATION = 3|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CHANNEL_UNACCEPTABLE = 6|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CHANNEL_UNACCEPTABLE = 6|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:OPERATOR_DETERMINED_BARRING = 8|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:OPERATOR_DETERMINED_BARRING = 8|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CALL_COMPLETED_ELSEWHERE = 13|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CALL_COMPLETED_ELSEWHERE = 13|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NORMAL_CALL_CLEARING = 16|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NORMAL_CALL_CLEARING = 16|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:USER_BUSY = 17|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:USER_BUSY = 17|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NO_USER_RESPONDING = 18|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NO_USER_RESPONDING = 18|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:USER_ALERTING_NO_ANSWER = 19|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:USER_ALERTING_NO_ANSWER = 19|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CALL_REJECTED = 21|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CALL_REJECTED = 21|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NUMBER_CHANGED = 22|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NUMBER_CHANGED = 22|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CALL_REJECTED_DUE_TO_FEATURE_AT_THE_DESTINATION = 24|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CALL_REJECTED_DUE_TO_FEATURE_AT_THE_DESTINATION = 24|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:FAILED_PRE_EMPTION = 25|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:FAILED_PRE_EMPTION = 25|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NON_SELECTED_USER_CLEARING = 26|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NON_SELECTED_USER_CLEARING = 26|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:DESTINATION_OUT_OF_ORDER = 27|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:DESTINATION_OUT_OF_ORDER = 27|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INVALID_NUMBER_FORMAT = 28|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INVALID_NUMBER_FORMAT = 28|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:FACILITY_REJECTED = 29|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:FACILITY_REJECTED = 29|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RESPONSE_TO_STATUS_ENQUIRY = 30|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RESPONSE_TO_STATUS_ENQUIRY = 30|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NORMAL_UNSPECIFIED = 31|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NORMAL_UNSPECIFIED = 31|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NO_CIRCUIT_CHANNEL_AVAILABLE = 34|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NO_CIRCUIT_CHANNEL_AVAILABLE = 34|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NETWORK_OUT_OF_ORDER = 38|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NETWORK_OUT_OF_ORDER = 38|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:TEMPORARY_FAILURE = 41|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:TEMPORARY_FAILURE = 41|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SWITCHING_EQUIPMENT_CONGESTION = 42|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SWITCHING_EQUIPMENT_CONGESTION = 42|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:ACCESS_INFORMATION_DISCARDED = 43|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:ACCESS_INFORMATION_DISCARDED = 43|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:REQUEST_CIRCUIT_CHANNEL_NOT_AVAILABLE = 44|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:REQUEST_CIRCUIT_CHANNEL_NOT_AVAILABLE = 44|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RESOURCES_UNAVAILABLE_UNSPECIFIED = 47|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RESOURCES_UNAVAILABLE_UNSPECIFIED = 47|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:QUALITY_OF_SERVICE_UNAVAILABLE = 49|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:QUALITY_OF_SERVICE_UNAVAILABLE = 49|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:REQUESTED_FACILITY_NOT_SUBSCRIBED = 50|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:REQUESTED_FACILITY_NOT_SUBSCRIBED = 50|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INCOMING_CALLS_BARRED_WITHIN_THE_CUG = 55|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INCOMING_CALLS_BARRED_WITHIN_THE_CUG = 55|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:BEARER_CAPABILITY_NOT_AUTHORIZED = 57|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:BEARER_CAPABILITY_NOT_AUTHORIZED = 57|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:BEARER_CAPABILITY_NOT_PRESENTLY_AVAILABLE = 58|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:BEARER_CAPABILITY_NOT_PRESENTLY_AVAILABLE = 58|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SERVICE_OR_OPTION_NOT_AVAILABLE_UNSPECIFIED = 63|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SERVICE_OR_OPTION_NOT_AVAILABLE_UNSPECIFIED = 63|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:BEARER_SERVICE_NOT_IMPLEMENTED = 65|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:BEARER_SERVICE_NOT_IMPLEMENTED = 65|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:ACM_EQUALTO_OR_GREATER_THAN_THE_MAXIMUM_VALUE = 68|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:ACM_EQUALTO_OR_GREATER_THAN_THE_MAXIMUM_VALUE = 68|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:REQUESTED_FACILITY_NOT_IMPLEMENTED = 69|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:REQUESTED_FACILITY_NOT_IMPLEMENTED = 69|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:ONLY_RESTRICTED_DIGITAL_INFO_BEARER_CAPABILITY_IS_AVAILABLE = 70|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:ONLY_RESTRICTED_DIGITAL_INFO_BEARER_CAPABILITY_IS_AVAILABLE = 70|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SERVICE_OR_OPTION_NOT_IMPLEMENTED_UNSPECIFIED = 79|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SERVICE_OR_OPTION_NOT_IMPLEMENTED_UNSPECIFIED = 79|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INVALID_TRANSACTION_IDENTIFIER_VALUE = 81|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INVALID_TRANSACTION_IDENTIFIER_VALUE = 81|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:USER_NOT_MEMBER_OF_CUG = 87|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:USER_NOT_MEMBER_OF_CUG = 87|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INCOMPATIBLE_DESTINATION = 88|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INCOMPATIBLE_DESTINATION = 88|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INVALID_TRANSIT_NETWORK_SELECTION = 91|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INVALID_TRANSIT_NETWORK_SELECTION = 91|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SEMANTICALLY_INCORRECT_MESSAGE = 95|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SEMANTICALLY_INCORRECT_MESSAGE = 95|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INVALID_MANDATORY_INFORMATION = 96|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INVALID_MANDATORY_INFORMATION = 96|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:MESSAGE_TYPE_NON_EXISTENT_OR_NOT_IMPLEMENTED = 97|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:MESSAGE_TYPE_NON_EXISTENT_OR_NOT_IMPLEMENTED = 97|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:MESSAGE_TYPE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 98|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:MESSAGE_TYPE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 98|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INFORMATION_ELEMENT_NON_EXISTENT_OR_NOT_IMPLEMENTED = 99|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INFORMATION_ELEMENT_NON_EXISTENT_OR_NOT_IMPLEMENTED = 99|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CONDITIONAL_IE_ERROR = 100|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CONDITIONAL_IE_ERROR = 100|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:MESSAGE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 101|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:MESSAGE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 101|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RECOVERY_ON_TIMER_EXPIRED = 102|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RECOVERY_ON_TIMER_EXPIRED = 102|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:PROTOCOL_ERROR_UNSPECIFIED = 111|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:PROTOCOL_ERROR_UNSPECIFIED = 111|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INTERWORKING_UNSPECIFIED = 127|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INTERWORKING_UNSPECIFIED = 127|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CALL_BARRED = 240|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CALL_BARRED = 240|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:FDN_BLOCKED = 241|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:FDN_BLOCKED = 241|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:IMSI_UNKNOWN_IN_VLR = 242|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:IMSI_UNKNOWN_IN_VLR = 242|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:IMEI_NOT_ACCEPTED = 243|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:IMEI_NOT_ACCEPTED = 243|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:DIAL_MODIFIED_TO_USSD = 244|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:DIAL_MODIFIED_TO_USSD = 244|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:DIAL_MODIFIED_TO_SS = 245|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:DIAL_MODIFIED_TO_SS = 245|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:DIAL_MODIFIED_TO_DIAL = 246|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:DIAL_MODIFIED_TO_DIAL = 246|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_OFF = 247|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_OFF = 247|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:OUT_OF_SERVICE = 248|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:OUT_OF_SERVICE = 248|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NO_VALID_SIM = 249|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NO_VALID_SIM = 249|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_INTERNAL_ERROR = 250|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_INTERNAL_ERROR = 250|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NETWORK_RESP_TIMEOUT = 251|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NETWORK_RESP_TIMEOUT = 251|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NETWORK_REJECT = 252|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NETWORK_REJECT = 252|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_ACCESS_FAILURE = 253|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_ACCESS_FAILURE = 253|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_LINK_FAILURE = 254|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_LINK_FAILURE = 254|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_LINK_LOST = 255|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_LINK_LOST = 255|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_UPLINK_FAILURE = 256|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_UPLINK_FAILURE = 256|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_SETUP_FAILURE = 257|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_SETUP_FAILURE = 257|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_RELEASE_NORMAL = 258|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_RELEASE_NORMAL = 258|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:RADIO_RELEASE_ABNORMAL = 259|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:RADIO_RELEASE_ABNORMAL = 259|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:ACCESS_CLASS_BLOCKED = 260|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:ACCESS_CLASS_BLOCKED = 260|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:NETWORK_DETACH = 261|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:NETWORK_DETACH = 261|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:INVALID_PARAMETER = 1025|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:INVALID_PARAMETER = 1025|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SIM_NOT_EXIT = 1026|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SIM_NOT_EXIT = 1026|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SIM_PIN_NEED = 1027|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SIM_PIN_NEED = 1027|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:CALL_NOT_ALLOW = 1029|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:CALL_NOT_ALLOW = 1029|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:SIM_INVALID = 1045|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:SIM_INVALID = 1045|@ohos.telephony.call.d.ts| +|新增|NA|模块名: ohos.telephony.call
类名: DisconnectedReason
方法 or 属性:UNKNOWN = 1279|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedReason
方法or属性:UNKNOWN = 1279|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedDetails
方法or属性:reason: DisconnectedReason;|@ohos.telephony.call.d.ts| +|新增|NA|类名:DisconnectedDetails
方法or属性:message: string;|@ohos.telephony.call.d.ts| +|新增|NA|类名:data
方法or属性:function getDefaultCellularDataSlotIdSync(): number;|@ohos.telephony.data.d.ts| +|新增|NA|类名:radio
方法or属性:function isNRSupported(): boolean;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function isNRSupported(slotId: number): boolean;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function getImsRegInfo(slotId: number, imsType: ImsServiceType, callback: AsyncCallback\): void;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function getImsRegInfo(slotId: number, imsType: ImsServiceType): Promise\;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function on(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback: Callback\): void;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:radio
方法or属性:function off(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback?: Callback\): void;|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: SignalInformation
方法 or 属性:dBm: number;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:SignalInformation
方法or属性:dBm: number;|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegState|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegState
方法or属性:|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegState
方法 or 属性:IMS_UNREGISTERED|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegState
方法or属性:IMS_UNREGISTERED|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegState
方法 or 属性:IMS_REGISTERED|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegState
方法or属性:IMS_REGISTERED|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegTech|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegTech
方法or属性:|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegTech
方法 or 属性:REGISTRATION_TECH_NONE|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegTech
方法or属性:REGISTRATION_TECH_NONE|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegTech
方法 or 属性:REGISTRATION_TECH_LTE|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegTech
方法or属性:REGISTRATION_TECH_LTE|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegTech
方法 or 属性:REGISTRATION_TECH_IWLAN|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegTech
方法or属性:REGISTRATION_TECH_IWLAN|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegTech
方法 or 属性:REGISTRATION_TECH_NR|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegTech
方法or属性:REGISTRATION_TECH_NR|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegInfo|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegInfo
方法or属性:|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegInfo
方法 or 属性:imsRegState: ImsRegState;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegInfo
方法or属性:imsRegState: ImsRegState;|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsRegInfo
方法 or 属性:imsRegTech: ImsRegTech;|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsRegInfo
方法or属性:imsRegTech: ImsRegTech;|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsServiceType|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsServiceType
方法or属性:|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsServiceType
方法 or 属性:TYPE_VOICE|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsServiceType
方法or属性:TYPE_VOICE|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsServiceType
方法 or 属性:TYPE_VIDEO|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsServiceType
方法or属性:TYPE_VIDEO|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsServiceType
方法 or 属性:TYPE_UT|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsServiceType
方法or属性:TYPE_UT|@ohos.telephony.radio.d.ts| +|新增|NA|模块名: ohos.telephony.radio
类名: ImsServiceType
方法 or 属性:TYPE_SMS|@ohos.telephony.radio.d.ts| +|新增|NA|类名:ImsServiceType
方法or属性:TYPE_SMS|@ohos.telephony.radio.d.ts| +|新增|NA|类名:sim
方法or属性:function getOpKey(slotId: number, callback: AsyncCallback\): void;|@ohos.telephony.sim.d.ts| +|新增|NA|类名:sim
方法or属性:function getOpKey(slotId: number): Promise\;|@ohos.telephony.sim.d.ts| +|新增|NA|类名:sim
方法or属性:function getOpName(slotId: number, callback: AsyncCallback\): void;|@ohos.telephony.sim.d.ts| +|新增|NA|类名:sim
方法or属性:function getOpName(slotId: number): Promise\;|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_VOICE_MAIL_NUMBER_STRING = "voice_mail_number_string"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_VOICE_MAIL_NUMBER_STRING = "voice_mail_number_string"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_IMS_SWITCH_ON_BY_DEFAULT_BOOL = "ims_switch_on_by_default_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_IMS_SWITCH_ON_BY_DEFAULT_BOOL = "ims_switch_on_by_default_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_HIDE_IMS_SWITCH_BOOL = "hide_ims_switch_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_HIDE_IMS_SWITCH_BOOL = "hide_ims_switch_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_VOLTE_SUPPORTED_BOOL = "volte_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_VOLTE_SUPPORTED_BOOL = "volte_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_NR_MODE_SUPPORTED_LIST_INT_ARRAY = "nr_mode_supported_list_int_array"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_NR_MODE_SUPPORTED_LIST_INT_ARRAY = "nr_mode_supported_list_int_array"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_VOLTE_PROVISIONING_SUPPORTED_BOOL = "volte_provisioning_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_VOLTE_PROVISIONING_SUPPORTED_BOOL = "volte_provisioning_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_SS_OVER_UT_SUPPORTED_BOOL = "ss_over_ut_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_SS_OVER_UT_SUPPORTED_BOOL = "ss_over_ut_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_IMS_GBA_REQUIRED_BOOL = "ims_gba_required_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_IMS_GBA_REQUIRED_BOOL = "ims_gba_required_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_UT_PROVISIONING_SUPPORTED_BOOL = "ut_provisioning_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_UT_PROVISIONING_SUPPORTED_BOOL = "ut_provisioning_supported_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_IMS_PREFER_FOR_EMERGENCY_BOOL = "ims_prefer_for_emergency_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_IMS_PREFER_FOR_EMERGENCY_BOOL = "ims_prefer_for_emergency_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_CALL_WAITING_SERVICE_CLASS_INT = "call_waiting_service_class_int"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_CALL_WAITING_SERVICE_CLASS_INT = "call_waiting_service_class_int"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_CALL_TRANSFER_VISIBILITY_BOOL = "call_transfer_visibility_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_CALL_TRANSFER_VISIBILITY_BOOL = "call_transfer_visibility_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_IMS_CALL_DISCONNECT_REASON_INFO_MAPPING_STRING_ARRAY = "ims_call_disconnect_reason_info_mapping_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_IMS_CALL_DISCONNECT_REASON_INFO_MAPPING_STRING_ARRAY = "ims_call_disconnect_reason_info_mapping_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_FORCE_VOLTE_SWITCH_ON_BOOL = "force_volte_switch_on_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_FORCE_VOLTE_SWITCH_ON_BOOL = "force_volte_switch_on_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_ENABLE_OPERATOR_NAME_CUST_BOOL = "enable_operator_name_cust_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_ENABLE_OPERATOR_NAME_CUST_BOOL = "enable_operator_name_cust_bool"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_OPERATOR_NAME_CUST_STRING = "operator_name_cust_string"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_OPERATOR_NAME_CUST_STRING = "operator_name_cust_string"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_SPN_DISPLAY_CONDITION_CUST_INT = "spn_display_condition_cust_int"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_SPN_DISPLAY_CONDITION_CUST_INT = "spn_display_condition_cust_int"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_PNN_CUST_STRING_ARRAY = "pnn_cust_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_PNN_CUST_STRING_ARRAY = "pnn_cust_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_OPL_CUST_STRING_ARRAY = "opl_cust_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_OPL_CUST_STRING_ARRAY = "opl_cust_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|模块名: ohos.telephony.sim
类名: OperatorConfigKey
方法 or 属性:KEY_EMERGENCY_CALL_STRING_ARRAY = "emergency_call_string_array"|@ohos.telephony.sim.d.ts| +|新增|NA|类名:OperatorConfigKey
方法or属性:KEY_EMERGENCY_CALL_STRING_ARRAY = "emergency_call_string_array"|@ohos.telephony.sim.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function answer(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function answer(callId: number): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function hangup(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function hangup(callId: number): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId: number, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId: number, options: RejectMessageOptions, callback: AsyncCallback\): void;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:call
方法 or 属性:function reject(callId: number, options?: RejectMessageOptions): Promise\;|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:UNASSIGNED_NUMBER = 1|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:NO_ROUTE_TO_DESTINATION = 3|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:CHANNEL_UNACCEPTABLE = 6|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:OPERATOR_DETERMINED_BARRING = 8|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:NORMAL_CALL_CLEARING = 16|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:USER_BUSY = 17|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:NO_USER_RESPONDING = 18|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:USER_ALERTING_NO_ANSWER = 19|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:CALL_REJECTED = 21|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:NUMBER_CHANGED = 22|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:DESTINATION_OUT_OF_ORDER = 27|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:INVALID_NUMBER_FORMAT = 28|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:NETWORK_OUT_OF_ORDER = 38|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:TEMPORARY_FAILURE = 41|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:INVALID_PARAMETER = 1025|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:SIM_NOT_EXIT = 1026|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:SIM_PIN_NEED = 1027|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:CALL_NOT_ALLOW = 1029|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:SIM_INVALID = 1045|NA|@ohos.telephony.call.d.ts| +|删除|模块名:ohos.telephony.call
类名:DisconnectedDetails
方法 or 属性:UNKNOWN = 1279|NA|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback\): void;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback\): void;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:call
方法 or 属性:function dial(phoneNumber: string, options?: DialOptions): Promise\;
废弃版本:N/A|类名:call
方法 or 属性:function dial(phoneNumber: string, options?: DialOptions): Promise\;
废弃版本:9
代替接口:telephony.call|@ohos.telephony.call.d.ts| +|废弃版本有变化|类名:radio
方法 or 属性:function isNrSupported(): boolean;
废弃版本:N/A|类名:radio
方法 or 属性:function isNrSupported(): boolean;
废弃版本:9
代替接口:telephony.radio|@ohos.telephony.radio.d.ts| +|废弃版本有变化|类名:radio
方法 or 属性:function isNrSupported(slotId: number): boolean;
废弃版本:N/A|类名:radio
方法 or 属性:function isNrSupported(slotId: number): boolean;
废弃版本:9
代替接口:telephony.radio|@ohos.telephony.radio.d.ts| +|起始版本有变化|类名:CallTransferInfo
方法 or 属性:transferNum: string;
起始版本:N/A|类名:CallTransferInfo
方法 or 属性:transferNum: string;
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallTransferInfo
方法 or 属性:type: CallTransferType;
起始版本:N/A|类名:CallTransferInfo
方法 or 属性:type: CallTransferType;
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallTransferInfo
方法 or 属性:settingType: CallTransferSettingType;
起始版本:N/A|类名:CallTransferInfo
方法 or 属性:settingType: CallTransferSettingType;
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallTransferResult
方法 or 属性:status: TransferStatus;
起始版本:N/A|类名:CallTransferResult
方法 or 属性:status: TransferStatus;
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallTransferResult
方法 or 属性:number: string;
起始版本:N/A|类名:CallTransferResult
方法 or 属性:number: string;
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallWaitingStatus
方法 or 属性:CALL_WAITING_DISABLE = 0
起始版本:N/A|类名:CallWaitingStatus
方法 or 属性:CALL_WAITING_DISABLE = 0
起始版本:7|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:CallWaitingStatus
方法 or 属性:CALL_WAITING_ENABLE = 1
起始版本:N/A|类名:CallWaitingStatus
方法 or 属性:CALL_WAITING_ENABLE = 1
起始版本:7|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:RestrictionStatus
方法 or 属性:RESTRICTION_DISABLE = 0
起始版本:N/A|类名:RestrictionStatus
方法 or 属性:RESTRICTION_DISABLE = 0
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:RestrictionStatus
方法 or 属性:RESTRICTION_ENABLE = 1
起始版本:N/A|类名:RestrictionStatus
方法 or 属性:RESTRICTION_ENABLE = 1
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:TransferStatus
方法 or 属性:TRANSFER_DISABLE = 0
起始版本:N/A|类名:TransferStatus
方法 or 属性:TRANSFER_DISABLE = 0
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:TransferStatus
方法 or 属性:TRANSFER_ENABLE = 1
起始版本:N/A|类名:TransferStatus
方法 or 属性:TRANSFER_ENABLE = 1
起始版本:8|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:EmergencyNumberOptions
方法 or 属性:slotId?: number;
起始版本:N/A|类名:EmergencyNumberOptions
方法 or 属性:slotId?: number;
起始版本:7|@ohos.telephony.call.d.ts| +|起始版本有变化|类名:NumberFormatOptions
方法 or 属性:countryCode?: string;
起始版本:N/A|类名:NumberFormatOptions
方法 or 属性:countryCode?: string;
起始版本:7|@ohos.telephony.call.d.ts| +|权限有变化|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', callback: Callback\>): void;
权限:ohos.permission.LOCATION|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', callback: Callback\>): void;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.observer.d.ts| +|权限有变化|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', options: { slotId: number },
callback: Callback\>): void;
权限:ohos.permission.LOCATION|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', options: { slotId: number },
callback: Callback\>): void;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.observer.d.ts| +|权限有变化|类名:radio
方法 or 属性:function getCellInformation(callback: AsyncCallback\>): void;
权限:ohos.permission.LOCATION|类名:radio
方法 or 属性:function getCellInformation(callback: AsyncCallback\>): void;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.radio.d.ts| +|权限有变化|类名:radio
方法 or 属性:function getCellInformation(slotId: number, callback: AsyncCallback\>): void;
权限:ohos.permission.LOCATION|类名:radio
方法 or 属性:function getCellInformation(slotId: number, callback: AsyncCallback\>): void;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.radio.d.ts| +|权限有变化|类名:radio
方法 or 属性:function getCellInformation(slotId?: number): Promise\>;
权限:ohos.permission.LOCATION|类名:radio
方法 or 属性:function getCellInformation(slotId?: number): Promise\>;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.radio.d.ts| +|删除(权限)|类名:data
方法 or 属性:function getDefaultCellularDataSlotId(callback: AsyncCallback\): void;
权限:ohos.permission.GET_NETWORK_INFO|类名:data
方法 or 属性:function getDefaultCellularDataSlotId(callback: AsyncCallback\): void;
权限:N/A|@ohos.telephony.data.d.ts| +|删除(权限)|类名:data
方法 or 属性:function getDefaultCellularDataSlotId(): Promise\;
权限:ohos.permission.GET_NETWORK_INFO|类名:data
方法 or 属性:function getDefaultCellularDataSlotId(): Promise\;
权限:N/A|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function muteRinger(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function muteRinger(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, options: EmergencyNumberOptions, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isEmergencyPhoneNumber(phoneNumber: string, options?: EmergencyNumberOptions): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, options: NumberFormatOptions, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumber(phoneNumber: string, options?: NumberFormatOptions): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumberToE164(phoneNumber: string, countryCode: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function formatPhoneNumberToE164(phoneNumber: string, countryCode: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function holdCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function holdCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function unHoldCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function unHoldCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function switchCall(callId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function switchCall(callId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function combineConference(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function combineConference(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getMainCallId(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getMainCallId(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getSubCallIdList(callId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getSubCallIdList(callId: number): Promise\>;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallIdListForConference(callId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallIdListForConference(callId: number): Promise\>;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function startDTMF(callId: number, character: string, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function startDTMF(callId: number, character: string): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function stopDTMF(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function stopDTMF(callId: number): Promise\;
错误码内容: 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isInEmergencyCall(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isInEmergencyCall(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callDetailsChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callDetailsChange', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callEventChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callEventChange', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function on(type: 'callDisconnectedCause', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function off(type: 'callDisconnectedCause', callback?: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isNewCallAllowed(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isNewCallAllowed(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function separateConference(callId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function separateConference(callId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo): Promise\;
错误码内容: 201, 401, 801, 8300001, 8300002, 8300003|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isRinging(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isRinging(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setMuted(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setMuted(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function cancelMuted(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function cancelMuted(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function joinConference(mainCallId: number, callNumberList: Array\, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function joinConference(mainCallId: number, callNumberList: Array\): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function updateImsCallMode(callId: number, mode: ImsCallMode, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function updateImsCallMode(callId: number, mode: ImsCallMode): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function enableImsSwitch(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function enableImsSwitch(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function disableImsSwitch(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function disableImsSwitch(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isImsSwitchEnabled(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:call
方法 or 属性:function isImsSwitchEnabled(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.call.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function setDefaultCellularDataSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function setDefaultCellularDataSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataEnabled(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataEnabled(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularData(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularData(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularData(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularData(): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataRoamingEnabled(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function isCellularDataRoamingEnabled(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularDataRoaming(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function enableCellularDataRoaming(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularDataRoaming(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:data
方法 or 属性:function disableCellularDataRoaming(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.data.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'networkStateChange', callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'networkStateChange', options: { slotId: number }, callback: Callback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'networkStateChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'signalInfoChange', callback: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'signalInfoChange', options: { slotId: number },
callback: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'signalInfoChange', callback?: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', callback: Callback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellInfoChange', options: { slotId: number },
callback: Callback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellInfoChange', callback?: Callback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataConnectionStateChange',
callback: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataConnectionStateChange', options: { slotId: number },
callback: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellularDataConnectionStateChange',
callback?: Callback\<{ state: DataConnectState, network: RatType }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataFlowChange', callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'cellularDataFlowChange', options: { slotId: number },
callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'cellularDataFlowChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'callStateChange', callback: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'callStateChange', options: { slotId: number },
callback: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'callStateChange', callback?: Callback\<{ state: CallState, number: string }>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'simStateChange', callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function on(type: 'simStateChange', options: { slotId: number }, callback: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:observer
方法 or 属性:function off(type: 'simStateChange', callback?: Callback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.observer.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getRadioTech(slotId: number,
callback: AsyncCallback\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getRadioTech(slotId: number): Promise\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkState(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getCellInformation(slotId?: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSelectionMode(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSelectionMode(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setNetworkSelectionMode(options: NetworkSelectionModeOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setNetworkSelectionMode(options: NetworkSelectionModeOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSearchInformation(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNetworkSearchInformation(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getISOCountryCodeForNetwork(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getISOCountryCodeForNetwork(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getNrOptionMode(slotId?: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getIMEI(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getMEID(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getUniqueDeviceId(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPrimarySlotId(callback: AsyncCallback\): void;
错误码内容: 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPrimarySlotId(): Promise\;
错误码内容: 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPrimarySlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPrimarySlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getSignalInformation(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getSignalInformation(slotId: number): Promise\>;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(slotId: number, callback: AsyncCallback\): void
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function isRadioOn(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOnRadio(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function turnOffRadio(slotId?: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getOperatorName(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getOperatorName(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPreferredNetwork(slotId: number, networkMode: PreferredNetworkMode, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function setPreferredNetwork(slotId: number, networkMode: PreferredNetworkMode): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPreferredNetwork(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:radio
方法 or 属性:function getPreferredNetwork(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.radio.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasOperatorPrivileges(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasOperatorPrivileges(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getISOCountryCodeForSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getISOCountryCodeForSim(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimOperatorNumeric(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimOperatorNumeric(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimSpn(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimSpn(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimState(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimState(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getCardType(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getCardType(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimIccId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimIccId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailIdentifier(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailIdentifier(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getVoiceMailNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setVoiceMailInfo(slotId: number, mailName: string, mailNumber: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setVoiceMailInfo(slotId: number, mailName: string, mailNumber: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimTelephoneNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimTelephoneNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimGid1(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimGid1(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getIMSI(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getIMSI(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasSimCard(slotId: number, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function hasSimCard(slotId: number): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimAccountInfo(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getSimAccountInfo(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getActiveSimAccountInfoList(callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getActiveSimAccountInfoList(): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setDefaultVoiceSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setDefaultVoiceSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301001|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function activateSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function activateSim(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function deactivateSim(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function deactivateSim(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowName(slotId: number, name: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowName(slotId: number, name: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowName(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowName(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowNumber(slotId: number, number: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setShowNumber(slotId: number, number: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowNumber(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getShowNumber(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getOperatorConfigs(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getOperatorConfigs(slotId: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin(slotId: number, pin: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin(slotId: number, pin: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk(slotId: number, newPin: string, puk: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk(slotId: number, newPin: string, puk: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin(slotId: number, newPin: string, oldPin: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin(slotId: number, newPin: string, oldPin: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setLockState(slotId: number, options: LockInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function setLockState(slotId: number, options: LockInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin2(slotId: number, pin2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPin2(slotId: number, pin2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk2(slotId: number, newPin2: string, puk2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockPuk2(slotId: number, newPin2: string, puk2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin2(slotId: number, newPin2: string, oldPin2: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function alterPin2(slotId: number, newPin2: string, oldPin2: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function queryIccDiallingNumbers(slotId: number, type: ContactType, callback: AsyncCallback\>): void
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function queryIccDiallingNumbers(slotId: number, type: ContactType): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function addIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function addIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function delIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function delIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function updateIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function updateIccDiallingNumbers(slotId: number, type: ContactType, diallingNumbers: DiallingNumbersInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendEnvelopeCmd(slotId: number, cmd: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendEnvelopeCmd(slotId: number, cmd: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendTerminalResponseCmd(slotId: number, cmd: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function sendTerminalResponseCmd(slotId: number, cmd: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockSimLock(slotId: number, lockInfo: PersoLockInfo, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sim
方法 or 属性:function unlockSimLock(slotId: number, lockInfo: PersoLockInfo): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999, 8301002|@ohos.telephony.sim.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function splitMessage(content: string, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function splitMessage(content: string): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function createMessage(pdu: Array\, specification: string, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function createMessage(pdu: Array\, specification: string): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function sendMessage(options: SendMessageOptions): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setDefaultSmsSlotId(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setDefaultSmsSlotId(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300004, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setSmscAddr(slotId: number, smscAddr: string, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setSmscAddr(slotId: number, smscAddr: string): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmscAddr(slotId: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmscAddr(slotId: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function addSimMessage(options: SimMessageOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function addSimMessage(options: SimMessageOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function delSimMessage(slotId: number, msgIndex: number, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function delSimMessage(slotId: number, msgIndex: number): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function updateSimMessage(options: UpdateSimMessageOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function updateSimMessage(options: UpdateSimMessageOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getAllSimMessages(slotId: number, callback: AsyncCallback\>): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getAllSimMessages(slotId: number): Promise\>;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setCBConfig(options: CBConfigOptions, callback: AsyncCallback\): void;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function setCBConfig(options: CBConfigOptions): Promise\;
错误码内容: 201, 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmsSegmentsInfo(slotId: number, message: string, force7bit: boolean, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getSmsSegmentsInfo(slotId: number, message: string, force7bit: boolean): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getImsShortMessageFormat(callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function getImsShortMessageFormat(): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function decodeMms(mmsFilePathName: string \| Array\, callback: AsyncCallback\): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function decodeMms(mmsFilePathName: string \| Array\): Promise\;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function encodeMms(mms: MmsInformation, callback: AsyncCallback\>): void;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(错误码)|NA|类名:sms
方法 or 属性:function encodeMms(mms: MmsInformation): Promise\>;
错误码内容: 401, 8300001, 8300002, 8300003, 8300999|@ohos.telephony.sms.d.ts| +|新增(权限)|类名:call
方法 or 属性:function holdCall(callId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function holdCall(callId: number, callback: AsyncCallback\): void;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function holdCall(callId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function holdCall(callId: number): Promise\;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function unHoldCall(callId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function unHoldCall(callId: number, callback: AsyncCallback\): void;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function unHoldCall(callId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function unHoldCall(callId: number): Promise\;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function switchCall(callId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function switchCall(callId: number, callback: AsyncCallback\): void;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function switchCall(callId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function switchCall(callId: number): Promise\;
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number, callback: AsyncCallback\): void;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function getCallWaitingStatus(slotId: number): Promise\;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean, callback: AsyncCallback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean): Promise\;
权限:N/A|类名:call
方法 or 属性:function setCallWaiting(slotId: number, activate: boolean): Promise\;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function on(type: 'callDetailsChange', callback: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function on(type: 'callDetailsChange', callback: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function off(type: 'callDetailsChange', callback?: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function off(type: 'callDetailsChange', callback?: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function on(type: 'callEventChange', callback: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function on(type: 'callEventChange', callback: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function off(type: 'callEventChange', callback?: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function off(type: 'callEventChange', callback?: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function on(type: 'callDisconnectedCause', callback: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function on(type: 'callDisconnectedCause', callback: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function off(type: 'callDisconnectedCause', callback?: Callback\): void;
权限:N/A|类名:call
方法 or 属性:function off(type: 'callDisconnectedCause', callback?: Callback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType, callback: AsyncCallback\): void;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType): Promise\;
权限:N/A|类名:call
方法 or 属性:function getCallRestrictionStatus(slotId: number, type: CallRestrictionType): Promise\;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo, callback: AsyncCallback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo): Promise\;
权限:N/A|类名:call
方法 or 属性:function setCallRestriction(slotId: number, info: CallRestrictionInfo): Promise\;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType, callback: AsyncCallback\): void;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType): Promise\;
权限:N/A|类名:call
方法 or 属性:function getCallTransferInfo(slotId: number, type: CallTransferType): Promise\;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo, callback: AsyncCallback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo): Promise\;
权限:N/A|类名:call
方法 or 属性:function setCallTransfer(slotId: number, info: CallTransferInfo): Promise\;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function enableImsSwitch(slotId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function enableImsSwitch(slotId: number, callback: AsyncCallback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function enableImsSwitch(slotId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function enableImsSwitch(slotId: number): Promise\;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function disableImsSwitch(slotId: number, callback: AsyncCallback\): void;
权限:N/A|类名:call
方法 or 属性:function disableImsSwitch(slotId: number, callback: AsyncCallback\): void;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:call
方法 or 属性:function disableImsSwitch(slotId: number): Promise\;
权限:N/A|类名:call
方法 or 属性:function disableImsSwitch(slotId: number): Promise\;
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
权限:N/A|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
权限:ohos.permission.LOCATION and ohos.permission.APPROXIMATELY_LOCATION|@ohos.telephony.radio.d.ts| +|新增(权限)|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType, callback: AsyncCallback\): void;
权限:N/A|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType, callback: AsyncCallback\): void;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts| +|新增(权限)|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType): Promise\;
权限:N/A|类名:sim
方法 or 属性:function getLockState(slotId: number, lockType: LockType): Promise\;
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts| +|函数有变化|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, callback: AsyncCallback\): void;
|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, callback: AsyncCallback\): void;
|@ohos.telephony.call.d.ts| +|函数有变化|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, callback: AsyncCallback\): void;
|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, options: AudioDeviceOptions, callback: AsyncCallback\): void;
|@ohos.telephony.call.d.ts| +|函数有变化|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice): Promise\;
|类名:call
方法 or 属性:function setAudioDevice(device: AudioDevice, options?: AudioDeviceOptions): Promise\;
|@ohos.telephony.call.d.ts| +|函数有变化|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
|@ohos.telephony.radio.d.ts| +|函数有变化|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(callback: AsyncCallback\): void;
|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(slotId: number, callback: AsyncCallback\): void;
|@ohos.telephony.radio.d.ts| +|函数有变化|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(): Promise\;
|类名:radio
方法 or 属性:function sendUpdateCellLocationRequest(slotId?: number): Promise\;
|@ohos.telephony.radio.d.ts| +|函数有变化|类名:sms
方法 or 属性:function isImsSmsSupported(callback: AsyncCallback\): void;
|类名:sms
方法 or 属性:function isImsSmsSupported(slotId: number, callback: AsyncCallback\): void;
|@ohos.telephony.sms.d.ts| +|函数有变化|类名:sms
方法 or 属性:function isImsSmsSupported(): Promise\;
|类名:sms
方法 or 属性:function isImsSmsSupported(slotId: number): Promise\;
|@ohos.telephony.sms.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-unitest.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-unitest.md new file mode 100644 index 0000000000000000000000000000000000000000..a0681e6ca9e1c783e6fcb6dc6d73d469f07ef243 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-unitest.md @@ -0,0 +1,211 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: EQUALS = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: CONTAINS = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: STARTS_WITH = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: MatchPattern
方法 or 属性: ENDS_WITH = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: text(txt: string, pattern?: MatchPattern): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: key(key: string): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: id(id: number): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: type(tp: string): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: clickable(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: scrollable(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: enabled(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: focused(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: selected(b?: boolean): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: isBefore(by: By): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: By
方法 or 属性: isAfter(by: By): By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: click(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: doubleClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: longClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getId(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getKey(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: getType(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isScrollable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isEnabled(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: isSelected(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: inputText(text: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiComponent
方法 or 属性: scrollSearch(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: static create(): UiDriver;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: delayMs(duration: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: findComponent(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: findComponents(by: By): Promise\>;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: assertComponentExist(by: By): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: pressBack(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: triggerKey(keyCode: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: click(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: doubleClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: longClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: swipe(startx: number, starty: number, endx: number, endy: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiDriver
方法 or 属性: screenCap(savePath: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: FULLSCREEN = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: PRIMARY = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: SECONDARY = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowMode
方法 or 属性: FLOATING = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: UP = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: DOWN = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT_UP = 4|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: LEFT_DOWN = 5|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT_UP = 6|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: ResizeDirection
方法 or 属性: RIGHT_DOWN = 7|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_0 = 0|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_90 = 1|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_180 = 2|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: DisplayRotation
方法 or 属性: ROTATION_270 = 3|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point
方法 or 属性: readonly x: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Point
方法 or 属性: readonly y: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly left: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly top: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly right: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Rect
方法 or 属性: readonly bottom: number;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: bundleName?: string;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: title?: string;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: focused?: boolean;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: WindowFilter
方法 or 属性: actived?: boolean;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: text(txt: string, pattern?: MatchPattern): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: id(id: string): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: type(tp: string): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: clickable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: longClickable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: scrollable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: enabled(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: focused(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: selected(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: checked(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: checkable(b?: boolean): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: isBefore(on: On): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: On
方法 or 属性: isAfter(on: On): On;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: click(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: doubleClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: longClick(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getId(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getType(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isLongClickable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isScrollable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isEnabled(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isSelected(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isChecked(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: isCheckable(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: inputText(text: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: clearText(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollToTop(speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollToBottom(speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: scrollSearch(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getBounds(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: getBoundsCenter(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: dragTo(target: Component): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: pinchOut(scale: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Component
方法 or 属性: pinchIn(scale: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: static create(): Driver;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: delayMs(duration: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findComponent(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findWindow(filter: WindowFilter): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: waitForComponent(on: On, time: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: findComponents(on: On): Promise\>;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: assertComponentExist(on: On): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: pressBack(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: triggerKey(keyCode: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: triggerCombineKeys(key0: number, key1: number, key2?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: click(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: doubleClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: longClick(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: swipe(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: drag(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: screenCap(savePath: string): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: setDisplayRotation(rotation: DisplayRotation): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplayRotation(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: setDisplayRotationEnabled(enabled: boolean): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplaySize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: getDisplayDensity(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: wakeUpDisplay(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: pressHome(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: waitForIdle(idleTime: number, timeout: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: fling(from: Point, to: Point, stepLen: number, speed: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: Driver
方法 or 属性: injectMultiPointerAction(pointers: PointerMatrix, speed?: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getBundleName(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getBounds(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getTitle(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: getWindowMode(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: isFocused(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: isActived(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: focus(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: moveTo(x: number, y: number): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: resize(wide: number, height: number, direction: ResizeDirection): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: split(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: maximize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: minimize(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: resume(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: UiWindow
方法 or 属性: close(): Promise\;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix
方法 or 属性: static create(fingers: number, steps: number): PointerMatrix;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: PointerMatrix
方法 or 属性: setPoint(finger: number, step: number, point: Point): void;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: global
方法 or 属性: declare const BY: By;|@ohos.UiTest.d.ts| +|新增|NA|模块名: ohos.UiTest
类名: global
方法 or 属性: declare const ON: On;|@ohos.UiTest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:EQUALS = 0|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:CONTAINS = 1|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:STARTS_WITH = 2|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: MatchPattern
方法 or 属性:ENDS_WITH = 3|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:text(txt:string,pattern?:MatchPattern):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:key(key:string):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:id(id:number):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:type(tp:string):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:clickable(b?:bool):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:scrollable(b?:bool):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:enabled(b?:bool):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:focused(b?:bool):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:selected(b?:bool):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:isBefore(by:By):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: By
方法 or 属性:isAfter(by:By):By;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:click():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:doubleClick():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:longClick():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getId():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getKey():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getText():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:getType():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isClickable():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isScrollable():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isEnabled():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isFocused():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:isSelected():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:inputText(text: string):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiComponent
方法 or 属性:scrollSearch(by:By):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:static create():UiDriver;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:delayMs(duration:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:findComponent(by:By):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:findComponents(by:By):Promise\>;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:assertComponentExist(by:By):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:pressBack():Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:triggerKey(keyCode:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:click(x:number,y:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:doubleClick(x:number,y:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:longClick(x:number,y:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:swipe(startx:number,starty:number,endx:number,endy:number):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: UiDriver
方法 or 属性:screenCap(savePath:string):Promise\;|NA|@ohos.uitest.d.ts| +|删除|模块名: ohos.uitest
类名: global
方法 or 属性:const BY:By;|NA|@ohos.uitest.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-update.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-update.md new file mode 100644 index 0000000000000000000000000000000000000000..505689bae3886c1dfac105e2450052aa774463d8 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-update.md @@ -0,0 +1,417 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:update
方法or属性:function getOnlineUpdater(upgradeInfo: UpgradeInfo): Updater;|@ohos.update.d.ts| +|新增|NA|类名:update
方法or属性:function getRestorer(): Restorer;|@ohos.update.d.ts| +|新增|NA|类名:update
方法or属性:function getLocalUpdater(): LocalUpdater;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getNewVersionDescription(versionDigestInfo: VersionDigestInfo, descriptionOptions: DescriptionOptions, callback: AsyncCallback\>): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getNewVersionDescription(versionDigestInfo: VersionDigestInfo, descriptionOptions: DescriptionOptions): Promise\>;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getCurrentVersionInfo(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getCurrentVersionInfo(): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getCurrentVersionDescription(descriptionOptions: DescriptionOptions, callback: AsyncCallback\>): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getCurrentVersionDescription(descriptionOptions: DescriptionOptions): Promise\>;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getTaskInfo(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getTaskInfo(): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:download(versionDigestInfo: VersionDigestInfo, downloadOptions: DownloadOptions, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:download(versionDigestInfo: VersionDigestInfo, downloadOptions: DownloadOptions): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:resumeDownload(versionDigestInfo: VersionDigestInfo, resumeDownloadOptions: ResumeDownloadOptions, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:resumeDownload(versionDigestInfo: VersionDigestInfo, resumeDownloadOptions: ResumeDownloadOptions): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseDownloadOptions, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseDownloadOptions): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:upgrade(versionDigestInfo: VersionDigestInfo, upgradeOptions: UpgradeOptions, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:upgrade(versionDigestInfo: VersionDigestInfo, upgradeOptions: UpgradeOptions): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:clearError(versionDigestInfo: VersionDigestInfo, clearOptions: ClearOptions, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:clearError(versionDigestInfo: VersionDigestInfo, clearOptions: ClearOptions): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getUpgradePolicy(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:getUpgradePolicy(): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:setUpgradePolicy(policy: UpgradePolicy, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:setUpgradePolicy(policy: UpgradePolicy): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:terminateUpgrade(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:terminateUpgrade(): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:on(eventClassifyInfo: EventClassifyInfo, taskCallback: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|类名:Updater
方法or属性:off(eventClassifyInfo: EventClassifyInfo, taskCallback?: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Restorer|@ohos.update.d.ts| +|新增|NA|类名:Restorer
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Restorer
方法 or 属性:factoryReset(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:Restorer
方法or属性:factoryReset(callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Restorer
方法 or 属性:factoryReset(): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:Restorer
方法or属性:factoryReset(): Promise\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string): Promise\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:applyNewVersion(upgradeFiles: Array\, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:applyNewVersion(upgradeFiles: Array\, callback: AsyncCallback\): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:applyNewVersion(upgradeFiles: Array\): Promise\;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:applyNewVersion(upgradeFiles: Array\): Promise\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:on(eventClassifyInfo: EventClassifyInfo, taskCallback: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:on(eventClassifyInfo: EventClassifyInfo, taskCallback: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: LocalUpdater
方法 or 属性:off(eventClassifyInfo: EventClassifyInfo, taskCallback?: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|类名:LocalUpdater
方法or属性:off(eventClassifyInfo: EventClassifyInfo, taskCallback?: UpgradeTaskCallback): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeInfo|@ohos.update.d.ts| +|新增|NA|类名:UpgradeInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeInfo
方法 or 属性:upgradeApp: string;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeInfo
方法or属性:upgradeApp: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeInfo
方法 or 属性:businessType: BusinessType;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeInfo
方法or属性:businessType: BusinessType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessType|@ohos.update.d.ts| +|新增|NA|类名:BusinessType
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessType
方法 or 属性:vendor: BusinessVendor;|@ohos.update.d.ts| +|新增|NA|类名:BusinessType
方法or属性:vendor: BusinessVendor;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessType
方法 or 属性:subType: BusinessSubType;|@ohos.update.d.ts| +|新增|NA|类名:BusinessType
方法or属性:subType: BusinessSubType;|@ohos.update.d.ts| +|新增|NA|类名:CheckResult
方法or属性:isExistNewVersion: boolean;|@ohos.update.d.ts| +|新增|NA|类名:CheckResult
方法or属性:newVersionInfo: NewVersionInfo;|@ohos.update.d.ts| +|新增|NA|类名:NewVersionInfo
方法or属性:versionDigestInfo: VersionDigestInfo;|@ohos.update.d.ts| +|新增|NA|类名:NewVersionInfo
方法or属性:versionComponents: Array\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionDigestInfo|@ohos.update.d.ts| +|新增|NA|类名:VersionDigestInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionDigestInfo
方法 or 属性:versionDigest: string;|@ohos.update.d.ts| +|新增|NA|类名:VersionDigestInfo
方法or属性:versionDigest: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:componentId: string;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:componentId: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:componentType: ComponentType;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:componentType: ComponentType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:upgradeAction: UpgradeAction;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:upgradeAction: UpgradeAction;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:displayVersion: string;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:displayVersion: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:innerVersion: string;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:innerVersion: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:size: number;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:size: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:effectiveMode: EffectiveMode;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:effectiveMode: EffectiveMode;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: VersionComponent
方法 or 属性:descriptionInfo: DescriptionInfo;|@ohos.update.d.ts| +|新增|NA|类名:VersionComponent
方法or属性:descriptionInfo: DescriptionInfo;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionOptions|@ohos.update.d.ts| +|新增|NA|类名:DescriptionOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionOptions
方法 or 属性:format: DescriptionFormat;|@ohos.update.d.ts| +|新增|NA|类名:DescriptionOptions
方法or属性:format: DescriptionFormat;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionOptions
方法 or 属性:language: string;|@ohos.update.d.ts| +|新增|NA|类名:DescriptionOptions
方法or属性:language: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ComponentDescription|@ohos.update.d.ts| +|新增|NA|类名:ComponentDescription
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ComponentDescription
方法 or 属性:componentId: string;|@ohos.update.d.ts| +|新增|NA|类名:ComponentDescription
方法or属性:componentId: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ComponentDescription
方法 or 属性:descriptionInfo: DescriptionInfo;|@ohos.update.d.ts| +|新增|NA|类名:ComponentDescription
方法or属性:descriptionInfo: DescriptionInfo;|@ohos.update.d.ts| +|新增|NA|类名:DescriptionInfo
方法or属性:descriptionType: DescriptionType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: CurrentVersionInfo|@ohos.update.d.ts| +|新增|NA|类名:CurrentVersionInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: CurrentVersionInfo
方法 or 属性:osVersion: string;|@ohos.update.d.ts| +|新增|NA|类名:CurrentVersionInfo
方法or属性:osVersion: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: CurrentVersionInfo
方法 or 属性:deviceName: string;|@ohos.update.d.ts| +|新增|NA|类名:CurrentVersionInfo
方法or属性:deviceName: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: CurrentVersionInfo
方法 or 属性:versionComponents: Array\;|@ohos.update.d.ts| +|新增|NA|类名:CurrentVersionInfo
方法or属性:versionComponents: Array\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DownloadOptions|@ohos.update.d.ts| +|新增|NA|类名:DownloadOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DownloadOptions
方法 or 属性:allowNetwork: NetType;|@ohos.update.d.ts| +|新增|NA|类名:DownloadOptions
方法or属性:allowNetwork: NetType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DownloadOptions
方法 or 属性:order: Order;|@ohos.update.d.ts| +|新增|NA|类名:DownloadOptions
方法or属性:order: Order;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ResumeDownloadOptions|@ohos.update.d.ts| +|新增|NA|类名:ResumeDownloadOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ResumeDownloadOptions
方法 or 属性:allowNetwork: NetType;|@ohos.update.d.ts| +|新增|NA|类名:ResumeDownloadOptions
方法or属性:allowNetwork: NetType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: PauseDownloadOptions|@ohos.update.d.ts| +|新增|NA|类名:PauseDownloadOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: PauseDownloadOptions
方法 or 属性:isAllowAutoResume: boolean;|@ohos.update.d.ts| +|新增|NA|类名:PauseDownloadOptions
方法or属性:isAllowAutoResume: boolean;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeOptions|@ohos.update.d.ts| +|新增|NA|类名:UpgradeOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeOptions
方法 or 属性:order: Order;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeOptions
方法or属性:order: Order;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ClearOptions|@ohos.update.d.ts| +|新增|NA|类名:ClearOptions
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ClearOptions
方法 or 属性:status: UpgradeStatus;|@ohos.update.d.ts| +|新增|NA|类名:ClearOptions
方法or属性:status: UpgradeStatus;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePolicy|@ohos.update.d.ts| +|新增|NA|类名:UpgradePolicy
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePolicy
方法 or 属性:downloadStrategy: boolean;|@ohos.update.d.ts| +|新增|NA|类名:UpgradePolicy
方法or属性:downloadStrategy: boolean;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePolicy
方法 or 属性:autoUpgradeStrategy: boolean;|@ohos.update.d.ts| +|新增|NA|类名:UpgradePolicy
方法or属性:autoUpgradeStrategy: boolean;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePolicy
方法 or 属性:autoUpgradePeriods: Array\;|@ohos.update.d.ts| +|新增|NA|类名:UpgradePolicy
方法or属性:autoUpgradePeriods: Array\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePeriod|@ohos.update.d.ts| +|新增|NA|类名:UpgradePeriod
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePeriod
方法 or 属性:start: number;|@ohos.update.d.ts| +|新增|NA|类名:UpgradePeriod
方法or属性:start: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradePeriod
方法 or 属性:end: number;|@ohos.update.d.ts| +|新增|NA|类名:UpgradePeriod
方法or属性:end: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskInfo|@ohos.update.d.ts| +|新增|NA|类名:TaskInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskInfo
方法 or 属性:existTask: boolean;|@ohos.update.d.ts| +|新增|NA|类名:TaskInfo
方法or属性:existTask: boolean;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskInfo
方法 or 属性:taskBody: TaskBody;|@ohos.update.d.ts| +|新增|NA|类名:TaskInfo
方法or属性:taskBody: TaskBody;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventInfo|@ohos.update.d.ts| +|新增|NA|类名:EventInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventInfo
方法 or 属性:eventId: EventId;|@ohos.update.d.ts| +|新增|NA|类名:EventInfo
方法or属性:eventId: EventId;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventInfo
方法 or 属性:taskBody: TaskBody;|@ohos.update.d.ts| +|新增|NA|类名:EventInfo
方法or属性:taskBody: TaskBody;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:versionDigestInfo: VersionDigestInfo;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:versionDigestInfo: VersionDigestInfo;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:status: UpgradeStatus;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:status: UpgradeStatus;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:subStatus: number;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:subStatus: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:progress: number;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:progress: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:installMode: number;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:installMode: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:errorMessages: Array\;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:errorMessages: Array\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: TaskBody
方法 or 属性:versionComponents: Array\;|@ohos.update.d.ts| +|新增|NA|类名:TaskBody
方法or属性:versionComponents: Array\;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ErrorMessage|@ohos.update.d.ts| +|新增|NA|类名:ErrorMessage
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ErrorMessage
方法 or 属性:errorCode: number;|@ohos.update.d.ts| +|新增|NA|类名:ErrorMessage
方法or属性:errorCode: number;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ErrorMessage
方法 or 属性:errorMessage: string;|@ohos.update.d.ts| +|新增|NA|类名:ErrorMessage
方法or属性:errorMessage: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventClassifyInfo|@ohos.update.d.ts| +|新增|NA|类名:EventClassifyInfo
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventClassifyInfo
方法 or 属性:eventClassify: EventClassify;|@ohos.update.d.ts| +|新增|NA|类名:EventClassifyInfo
方法or属性:eventClassify: EventClassify;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventClassifyInfo
方法 or 属性:extraInfo: string;|@ohos.update.d.ts| +|新增|NA|类名:EventClassifyInfo
方法or属性:extraInfo: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeFile|@ohos.update.d.ts| +|新增|NA|类名:UpgradeFile
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeFile
方法 or 属性:fileType: ComponentType;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeFile
方法or属性:fileType: ComponentType;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeFile
方法 or 属性:filePath: string;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeFile
方法or属性:filePath: string;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeTaskCallback|@ohos.update.d.ts| +|新增|NA|类名:UpgradeTaskCallback
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeTaskCallback
方法 or 属性:(eventInfo: EventInfo): void;|@ohos.update.d.ts| +|新增|NA|类名:UpgradeTaskCallback
方法or属性:(eventInfo: EventInfo): void;|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessVendor|@ohos.update.d.ts| +|新增|NA|类名:BusinessVendor
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessVendor
方法 or 属性:PUBLIC = "public"|@ohos.update.d.ts| +|新增|NA|类名:BusinessVendor
方法or属性:PUBLIC = "public"|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessSubType|@ohos.update.d.ts| +|新增|NA|类名:BusinessSubType
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: BusinessSubType
方法 or 属性:FIRMWARE = 1|@ohos.update.d.ts| +|新增|NA|类名:BusinessSubType
方法or属性:FIRMWARE = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ComponentType|@ohos.update.d.ts| +|新增|NA|类名:ComponentType
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: ComponentType
方法 or 属性:OTA = 1|@ohos.update.d.ts| +|新增|NA|类名:ComponentType
方法or属性:OTA = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeAction|@ohos.update.d.ts| +|新增|NA|类名:UpgradeAction
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeAction
方法 or 属性:UPGRADE = "upgrade"|@ohos.update.d.ts| +|新增|NA|类名:UpgradeAction
方法or属性:UPGRADE = "upgrade"|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeAction
方法 or 属性:RECOVERY = "recovery"|@ohos.update.d.ts| +|新增|NA|类名:UpgradeAction
方法or属性:RECOVERY = "recovery"|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EffectiveMode|@ohos.update.d.ts| +|新增|NA|类名:EffectiveMode
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EffectiveMode
方法 or 属性:COLD = 1|@ohos.update.d.ts| +|新增|NA|类名:EffectiveMode
方法or属性:COLD = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EffectiveMode
方法 or 属性:LIVE = 2|@ohos.update.d.ts| +|新增|NA|类名:EffectiveMode
方法or属性:LIVE = 2|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EffectiveMode
方法 or 属性:LIVE_AND_COLD = 3|@ohos.update.d.ts| +|新增|NA|类名:EffectiveMode
方法or属性:LIVE_AND_COLD = 3|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionType|@ohos.update.d.ts| +|新增|NA|类名:DescriptionType
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionType
方法 or 属性:CONTENT = 0|@ohos.update.d.ts| +|新增|NA|类名:DescriptionType
方法or属性:CONTENT = 0|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionType
方法 or 属性:URI = 1|@ohos.update.d.ts| +|新增|NA|类名:DescriptionType
方法or属性:URI = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionFormat|@ohos.update.d.ts| +|新增|NA|类名:DescriptionFormat
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionFormat
方法 or 属性:STANDARD = 0|@ohos.update.d.ts| +|新增|NA|类名:DescriptionFormat
方法or属性:STANDARD = 0|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: DescriptionFormat
方法 or 属性:SIMPLIFIED = 1|@ohos.update.d.ts| +|新增|NA|类名:DescriptionFormat
方法or属性:SIMPLIFIED = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType
方法 or 属性:CELLULAR = 1|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:CELLULAR = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType
方法 or 属性:METERED_WIFI = 2|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:METERED_WIFI = 2|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType
方法 or 属性:NOT_METERED_WIFI = 4|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:NOT_METERED_WIFI = 4|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType
方法 or 属性:WIFI = 6|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:WIFI = 6|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: NetType
方法 or 属性:CELLULAR_AND_WIFI = 7|@ohos.update.d.ts| +|新增|NA|类名:NetType
方法or属性:CELLULAR_AND_WIFI = 7|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order
方法 or 属性:DOWNLOAD = 1|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:DOWNLOAD = 1|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order
方法 or 属性:INSTALL = 2|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:INSTALL = 2|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order
方法 or 属性:DOWNLOAD_AND_INSTALL = 3|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:DOWNLOAD_AND_INSTALL = 3|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order
方法 or 属性:APPLY = 4|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:APPLY = 4|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: Order
方法 or 属性:INSTALL_AND_APPLY = 6|@ohos.update.d.ts| +|新增|NA|类名:Order
方法or属性:INSTALL_AND_APPLY = 6|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:WAITING_DOWNLOAD = 20|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:WAITING_DOWNLOAD = 20|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:DOWNLOADING = 21|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:DOWNLOADING = 21|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:DOWNLOAD_PAUSED = 22|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:DOWNLOAD_PAUSED = 22|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:DOWNLOAD_FAIL = 23|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:DOWNLOAD_FAIL = 23|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:WAITING_INSTALL = 30|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:WAITING_INSTALL = 30|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:UPDATING = 31|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:UPDATING = 31|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:WAITING_APPLY = 40|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:WAITING_APPLY = 40|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:APPLYING = 41|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:APPLYING = 41|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:UPGRADE_SUCCESS = 50|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:UPGRADE_SUCCESS = 50|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: UpgradeStatus
方法 or 属性:UPGRADE_FAIL = 51|@ohos.update.d.ts| +|新增|NA|类名:UpgradeStatus
方法or属性:UPGRADE_FAIL = 51|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventClassify|@ohos.update.d.ts| +|新增|NA|类名:EventClassify
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventClassify
方法 or 属性:TASK = 0x01000000|@ohos.update.d.ts| +|新增|NA|类名:EventClassify
方法or属性:TASK = 0x01000000|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_TASK_BASE = EventClassify.TASK|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_TASK_BASE = EventClassify.TASK|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_TASK_RECEIVE|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_TASK_RECEIVE|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_TASK_CANCEL|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_TASK_CANCEL|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_WAIT|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_WAIT|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_START|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_START|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_UPDATE|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_UPDATE|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_PAUSE|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_PAUSE|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_RESUME|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_RESUME|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_SUCCESS|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_SUCCESS|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_DOWNLOAD_FAIL|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_DOWNLOAD_FAIL|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_UPGRADE_WAIT|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_UPGRADE_WAIT|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_UPGRADE_START|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_UPGRADE_START|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_UPGRADE_UPDATE|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_UPGRADE_UPDATE|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_APPLY_WAIT|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_APPLY_WAIT|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_APPLY_START|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_APPLY_START|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_UPGRADE_SUCCESS|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_UPGRADE_SUCCESS|@ohos.update.d.ts| +|新增|NA|模块名: ohos.update
类名: EventId
方法 or 属性:EVENT_UPGRADE_FAIL|@ohos.update.d.ts| +|新增|NA|类名:EventId
方法or属性:EVENT_UPGRADE_FAIL|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateTypes
方法 or 属性:type UpdateTypes =
'OTA' \|
'patch';|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateTypes
方法 or 属性:type UpdateTypes =
'OTA' \|
'patch';|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_NORMAL = 1|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_BASE = 2|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_CUST = 3|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_PRELOAD = 4|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_COTA = 5|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_VERSION = 6|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: PackageTypes
方法 or 属性:PACKAGE_TYPE_PATCH = 7|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:versionName: number;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:versionCode: string;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:size: number;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:verifyInfo: string;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:packageType: PackageTypes;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:CheckResult
方法 or 属性:descriptionId: string;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:DescriptionInfo
方法 or 属性:descriptionId: string;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: NewVersionStatus|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: NewVersionStatus
方法 or 属性:VERSION_STATUS_ERR = -1|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: NewVersionStatus
方法 or 属性:VERSION_STATUS_NEW = 0|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: NewVersionStatus
方法 or 属性:VERSION_STATUS_NONE = 1|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: NewVersionStatus
方法 or 属性:VERSION_STATUS_BUSY = 2|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:NewVersionInfo
方法 or 属性:status: NewVersionStatus;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:NewVersionInfo
方法 or 属性:errMsg: string;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:NewVersionInfo
方法 or 属性:checkResults: Array\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:NewVersionInfo
方法 or 属性:descriptionInfo: Array\;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_INIT = 0|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_CHECK_VERSION_ON = 10|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_CHECK_VERSION_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_CHECK_VERSION_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_DOWNLOAD_ON = 20|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_DOWNLOAD_PAUSE|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_DOWNLOAD_CANCEL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_DOWNLOAD_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_DOWNLOAD_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_VERIFY_ON = 30|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_VERIFY_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_VERIFY_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_PACKAGE_TRANS_ON = 70|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_PACKAGE_TRANS_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_PACKAGE_TRANS_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_INSTALL_ON = 80|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_INSTALL_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_INSTALL_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_UPDATE_ON = 90|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_UPDATE_FAIL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateState
方法 or 属性:UPDATE_STATE_UPDATE_SUCCESS|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: Progress|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: Progress
方法 or 属性:percent: number;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: Progress
方法 or 属性:status: UpdateState;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: Progress
方法 or 属性:endReason: string;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: InstallMode|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: InstallMode
方法 or 属性:INSTALL_MODE_NORMAL|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: InstallMode
方法 or 属性:INSTALL_MODE_NIGHT|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: InstallMode
方法 or 属性:INSTALL_MODE_AUTO|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdatePolicy|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdatePolicy
方法 or 属性:autoDownload: boolean;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdatePolicy
方法 or 属性:installMode: INSTALL_MODE;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdatePolicy
方法 or 属性:autoUpgradeInterval: Array\;|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateProgressCallback|NA|@ohos.update.d.ts| +|删除|模块名: ohos.update
类名: UpdateProgressCallback
方法 or 属性:(progress: Progress): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:getUpdatePolicy(callback: AsyncCallback\): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:getUpdatePolicy(): Promise\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:setUpdatePolicy(policy: UpdatePolicy, callback: AsyncCallback\): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:setUpdatePolicy(policy: UpdatePolicy): Promise\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:applyNewVersion(callback: AsyncCallback\): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:applyNewVersion(): Promise\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:rebootAndCleanCache(callback: AsyncCallback\): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:rebootAndCleanCache(): Promise\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:rebootAndCleanUserData(callback: AsyncCallback\): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:rebootAndCleanUserData(): Promise\;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:verifyUpdatePackage(upgradeFile: string, certsFile: string): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:on(eventType: 'downloadProgress', callback: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:on(eventType: 'upgradeProgress', callback: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:on(eventType: 'verifyProgress', callback: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:off(eventType: 'downloadProgress', callback?: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:off(eventType: 'upgradeProgress', callback?: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:off(eventType: 'verifyProgress', callback?: UpdateProgressCallback): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:Updater
方法 or 属性:cancel(): void;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:update
方法 or 属性:function getUpdater(upgradeFile: string, updateType?: UpdateTypes): Updater;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:update
方法 or 属性:function getUpdaterForOther(upgradeFile: string, device: string, updateType?: UpdateTypes): Updater;|NA|@ohos.update.d.ts| +|删除|模块名:ohos.update
类名:update
方法 or 属性:function getUpdaterFromOther(upgradeFile: string, device: string, updateType?: UpdateTypes): Updater;|NA|@ohos.update.d.ts| +|起始版本有变化|类名:update
起始版本:6|类名:update
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Updater
起始版本:6|类名:Updater
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Updater
方法 or 属性:getNewVersionInfo(callback: AsyncCallback\): void;
起始版本:6|类名:Updater
方法 or 属性:getNewVersionInfo(callback: AsyncCallback\): void;
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:Updater
方法 or 属性:getNewVersionInfo(): Promise\;
起始版本:6|类名:Updater
方法 or 属性:getNewVersionInfo(): Promise\;
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:CheckResult
起始版本:6|类名:CheckResult
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:NewVersionInfo
起始版本:6|类名:NewVersionInfo
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionInfo
起始版本:6|类名:DescriptionInfo
起始版本:9|@ohos.update.d.ts| +|起始版本有变化|类名:DescriptionInfo
方法 or 属性:content: string;
起始版本:6|类名:DescriptionInfo
方法 or 属性:content: string;
起始版本:9|@ohos.update.d.ts| +|新增(错误码)|NA|类名:Updater
方法 or 属性:getNewVersionInfo(callback: AsyncCallback\): void;
错误码内容: 201, 11500104|@ohos.update.d.ts| +|新增(错误码)|NA|类名:Updater
方法 or 属性:getNewVersionInfo(): Promise\;
错误码内容: 201, 11500104|@ohos.update.d.ts| +|新增(权限)|类名:Updater
方法 or 属性:getNewVersionInfo(callback: AsyncCallback\): void;
权限:N/A|类名:Updater
方法 or 属性:getNewVersionInfo(callback: AsyncCallback\): void;
权限:ohos.permission.UPDATE_SYSTEM|@ohos.update.d.ts| +|新增(权限)|类名:Updater
方法 or 属性:getNewVersionInfo(): Promise\;
权限:N/A|类名:Updater
方法 or 属性:getNewVersionInfo(): Promise\;
权限:ohos.permission.UPDATE_SYSTEM|@ohos.update.d.ts| +|函数有变化|类名:Updater
方法 or 属性:checkNewVersion(callback: AsyncCallback\): void;
|类名:Updater
方法 or 属性:checkNewVersion(callback: AsyncCallback\): void;
|@ohos.update.d.ts| +|函数有变化|类名:Updater
方法 or 属性:checkNewVersion(): Promise\;
|类名:Updater
方法 or 属性:checkNewVersion(): Promise\;
|@ohos.update.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-usb.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-usb.md new file mode 100644 index 0000000000000000000000000000000000000000..ede50e45521ee4e1cccd9c9f7d32506ab5d6f2a0 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-usb.md @@ -0,0 +1,199 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|类名:usb
方法or属性:function usbFunctionsFromString(funcs: string): number;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function usbFunctionsToString(funcs: FunctionType): string;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function setCurrentFunctions(funcs: FunctionType): Promise\;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function getCurrentFunctions(): FunctionType;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function getPorts(): Array\;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function getSupportedModes(portId: number): PortModeType;|@ohos.usb.d.ts| +|新增|NA|类名:usb
方法or属性:function setPortRoles(portId: number, powerRole: PowerRoleType, dataRole: DataRoleType): Promise\;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PowerRoleType|@ohos.usb.d.ts| +|新增|NA|类名:PowerRoleType
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PowerRoleType
方法 or 属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|类名:PowerRoleType
方法or属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PowerRoleType
方法 or 属性:SOURCE = 1|@ohos.usb.d.ts| +|新增|NA|类名:PowerRoleType
方法or属性:SOURCE = 1|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PowerRoleType
方法 or 属性:SINK = 2|@ohos.usb.d.ts| +|新增|NA|类名:PowerRoleType
方法or属性:SINK = 2|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: DataRoleType|@ohos.usb.d.ts| +|新增|NA|类名:DataRoleType
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: DataRoleType
方法 or 属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|类名:DataRoleType
方法or属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: DataRoleType
方法 or 属性:HOST = 1|@ohos.usb.d.ts| +|新增|NA|类名:DataRoleType
方法or属性:HOST = 1|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: DataRoleType
方法 or 属性:DEVICE = 2|@ohos.usb.d.ts| +|新增|NA|类名:DataRoleType
方法or属性:DEVICE = 2|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType
方法 or 属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType
方法 or 属性:UFP = 1|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:UFP = 1|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType
方法 or 属性:DFP = 2|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:DFP = 2|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType
方法 or 属性:DRP = 3|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:DRP = 3|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: PortModeType
方法 or 属性:NUM_MODES = 4|@ohos.usb.d.ts| +|新增|NA|类名:PortModeType
方法or属性:NUM_MODES = 4|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPortStatus|@ohos.usb.d.ts| +|新增|NA|类名:USBPortStatus
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPortStatus
方法 or 属性:currentMode: number;|@ohos.usb.d.ts| +|新增|NA|类名:USBPortStatus
方法or属性:currentMode: number;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPortStatus
方法 or 属性:currentPowerRole: number;|@ohos.usb.d.ts| +|新增|NA|类名:USBPortStatus
方法or属性:currentPowerRole: number;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPortStatus
方法 or 属性:currentDataRole: number;|@ohos.usb.d.ts| +|新增|NA|类名:USBPortStatus
方法or属性:currentDataRole: number;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPort|@ohos.usb.d.ts| +|新增|NA|类名:USBPort
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPort
方法 or 属性:id: number;|@ohos.usb.d.ts| +|新增|NA|类名:USBPort
方法or属性:id: number;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPort
方法 or 属性:supportedModes: PortModeType;|@ohos.usb.d.ts| +|新增|NA|类名:USBPort
方法or属性:supportedModes: PortModeType;|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: USBPort
方法 or 属性:status: USBPortStatus;|@ohos.usb.d.ts| +|新增|NA|类名:USBPort
方法or属性:status: USBPortStatus;|@ohos.usb.d.ts| +|新增|NA|类名:USBRequestTargetType
方法or属性:USB_REQUEST_TARGET_INTERFACE = 1|@ohos.usb.d.ts| +|新增|NA|类名:USBRequestTargetType
方法or属性:USB_REQUEST_TARGET_ENDPOINT = 2|@ohos.usb.d.ts| +|新增|NA|类名:USBRequestTargetType
方法or属性:USB_REQUEST_TARGET_OTHER = 3|@ohos.usb.d.ts| +|新增|NA|类名:USBControlRequestType
方法or属性:USB_REQUEST_TYPE_CLASS = 1|@ohos.usb.d.ts| +|新增|NA|类名:USBControlRequestType
方法or属性:USB_REQUEST_TYPE_VENDOR = 2|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:NONE = 0|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:ACM = 1|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:ACM = 1|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:ECM = 2|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:ECM = 2|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:HDC = 4|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:HDC = 4|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:MTP = 8|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:MTP = 8|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:PTP = 16|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:PTP = 16|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:RNDIS = 32|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:RNDIS = 32|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:MIDI = 64|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:MIDI = 64|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:AUDIO_SOURCE = 128|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:AUDIO_SOURCE = 128|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usb
类名: FunctionType
方法 or 属性:NCM = 256|@ohos.usb.d.ts| +|新增|NA|类名:FunctionType
方法or属性:NCM = 256|@ohos.usb.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getDevices(): Array\>;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function connectDevice(device: USBDevice): Readonly\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function hasRight(deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function requestRight(deviceName: string): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function removeRight(deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function addRight(bundleName: string, deviceName: string): boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function usbFunctionsFromString(funcs: string): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function usbFunctionsToString(funcs: FunctionType): string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setCurrentFunctions(funcs: FunctionType): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getCurrentFunctions(): FunctionType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getPorts(): Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getSupportedModes(portId: number): PortModeType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setPortRoles(portId: number, powerRole: PowerRoleType, dataRole: DataRoleType): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function claimInterface(pipe: USBDevicePipe, iface: USBInterface, force?: boolean): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function releaseInterface(pipe: USBDevicePipe, iface: USBInterface): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setConfiguration(pipe: USBDevicePipe, config: USBConfiguration): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function setInterface(pipe: USBDevicePipe, iface: USBInterface): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getRawDescriptor(pipe: USBDevicePipe): Uint8Array;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function getFileDescriptor(pipe: USBDevicePipe): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function bulkTransfer(pipe: USBDevicePipe, endpoint: USBEndpoint, buffer: Uint8Array,

timeout?: number): Promise\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: usbManager
方法 or 属性: function closePipe(pipe: USBDevicePipe): number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: address: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: attributes: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: interval: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: maxPacketSize: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: direction: USBRequestDirection;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: number: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: type: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBEndpoint
方法 or 属性: interfaceId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: protocol: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: clazz: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: subClass: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: alternateSetting: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBInterface
方法 or 属性: endpoints: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: attributes: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: maxPower: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: isRemoteWakeup: boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: isSelfPowered: boolean;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBConfiguration
方法 or 属性: interfaces: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: busNum: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: devAddress: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: serial: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: name: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: manufacturerName: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: productName: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: version: string;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: vendorId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: productId: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: clazz: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: subClass: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: protocol: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevice
方法 or 属性: configs: Array\;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe
方法 or 属性: busNum: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBDevicePipe
方法 or 属性: devAddress: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: SOURCE = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PowerRoleType
方法 or 属性: SINK = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: HOST = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: DataRoleType
方法 or 属性: DEVICE = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: UFP = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: DFP = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: DRP = 3|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: PortModeType
方法 or 属性: NUM_MODES = 4|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentMode: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentPowerRole: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPortStatus
方法 or 属性: currentDataRole: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: id: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: supportedModes: PortModeType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBPort
方法 or 属性: status: USBPortStatus;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: request: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: target: USBRequestTargetType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: reqType: USBControlRequestType;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: value: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: index: number;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlParams
方法 or 属性: data: Uint8Array;|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_DEVICE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_INTERFACE = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_ENDPOINT = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestTargetType
方法 or 属性: USB_REQUEST_TARGET_OTHER = 3|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_STANDARD = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_CLASS = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBControlRequestType
方法 or 属性: USB_REQUEST_TYPE_VENDOR = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection
方法 or 属性: USB_REQUEST_DIR_TO_DEVICE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: USBRequestDirection
方法 or 属性: USB_REQUEST_DIR_FROM_DEVICE = 0x80|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: NONE = 0|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: ACM = 1|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: ECM = 2|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: HDC = 4|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: MTP = 8|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: PTP = 16|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: RNDIS = 32|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: MIDI = 64|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: AUDIO_SOURCE = 128|@ohos.usbManager.d.ts| +|新增|NA|模块名: ohos.usbManager
类名: FunctionType
方法 or 属性: NCM = 256|@ohos.usbManager.d.ts| +|废弃版本有变化|类名:usb
废弃版本:N/A|类名:usb
废弃版本:9
代替接口:ohos.usbManager |@ohos.usb.d.ts| +|函数有变化|类名:usb
方法 or 属性:function controlTransfer(pipe: USBDevicePipe, contrlparam: USBControlParams, timeout?: number): Promise\;
|类名:usb
方法 or 属性:function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise\;
|@ohos.usb.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-user-iam.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-user-iam.md new file mode 100644 index 0000000000000000000000000000000000000000..55ee09c63abf59cfb58f53aa4a58a78cee7ff584 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-user-iam.md @@ -0,0 +1,111 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.userIAM.faceAuth
类名: faceAuth|@ohos.userIAM.faceAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.faceAuth
类名: FaceAuthManager|@ohos.userIAM.faceAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.faceAuth
类名: FaceAuthManager
方法 or 属性: constructor();|@ohos.userIAM.faceAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.faceAuth
类名: FaceAuthManager
方法 or 属性: setSurfaceId(surfaceId: string): void;|@ohos.userIAM.faceAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthEventKey
方法 or 属性:type AuthEventKey = "result" \| "tip";|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthEventKey
方法or属性:type AuthEventKey = "result" \| "tip";|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthEventKey
方法 or 属性:type AuthEventKey = "result" \| "tip";|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthEventKey
方法or属性:type AuthEventKey = "result" \| "tip";|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthEvent|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthEvent
方法or属性:|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthEvent
方法 or 属性:callback(result: EventInfo): void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthEvent
方法or属性:callback(result: EventInfo): void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthResultInfo|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthResultInfo
方法or属性:|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法 or 属性:result: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthResultInfo
方法or属性:result: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法 or 属性:token ?: Uint8Array;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthResultInfo
方法or属性:token ?: Uint8Array;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法 or 属性:remainAttempts ?: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthResultInfo
方法or属性:remainAttempts ?: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法 or 属性:lockoutDuration ?: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthResultInfo
方法or属性:lockoutDuration ?: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: TipInfo|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:TipInfo
方法or属性:|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: TipInfo
方法 or 属性:module: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:TipInfo
方法or属性:module: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: TipInfo
方法 or 属性:tip: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:TipInfo
方法or属性:tip: number;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthInstance|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthInstance
方法or属性:|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法 or 属性:on: (name: AuthEventKey, callback: AuthEvent) => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthInstance
方法or属性:on: (name: AuthEventKey, callback: AuthEvent) => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法 or 属性:off: (name: AuthEventKey) => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthInstance
方法or属性:off: (name: AuthEventKey) => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法 or 属性:start: () => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthInstance
方法or属性:start: () => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法 or 属性:cancel: () => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:AuthInstance
方法or属性:cancel: () => void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:userAuth
方法or属性:function getAvailableStatus(authType: UserAuthType, authTrustLevel: AuthTrustLevel): void;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:userAuth
方法or属性:function getAuthInstance(challenge: Uint8Array, authType: UserAuthType, authTrustLevel: AuthTrustLevel): AuthInstance;|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:SUCCESS = 12500000|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:SUCCESS = 12500000|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:FAIL = 12500001|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:FAIL = 12500001|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:GENERAL_ERROR = 12500002|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:GENERAL_ERROR = 12500002|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:CANCELED = 12500003|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:CANCELED = 12500003|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:TIMEOUT = 12500004|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:TIMEOUT = 12500004|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:TYPE_NOT_SUPPORT = 12500005|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:TYPE_NOT_SUPPORT = 12500005|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:TRUST_LEVEL_NOT_SUPPORT = 12500006|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:TRUST_LEVEL_NOT_SUPPORT = 12500006|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:BUSY = 12500007|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:BUSY = 12500007|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:LOCKED = 12500009|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:LOCKED = 12500009|@ohos.userIAM.userAuth.d.ts| +|新增|NA|模块名: ohos.userIAM.userAuth
类名: UserAuthResultCode
方法 or 属性:NOT_ENROLLED = 12500010|@ohos.userIAM.userAuth.d.ts| +|新增|NA|类名:UserAuthResultCode
方法or属性:NOT_ENROLLED = 12500010|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:AuthenticationResult
废弃版本:N/A|类名:AuthenticationResult
废弃版本:8
代替接口:ohos.userIAM.userAuth.ResultCode |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:Authenticator
废弃版本:N/A|类名:Authenticator
废弃版本:8
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:UserAuth
废弃版本:N/A|类名:UserAuth
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthInstance |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:UserAuth
方法 or 属性:constructor();
废弃版本:N/A|类名:UserAuth
方法 or 属性:constructor();
废弃版本:9
代替接口:ohos.userIAM.userAuth.getAuthInstance |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:UserAuth
方法 or 属性:auth(challenge: Uint8Array, authType: UserAuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
废弃版本:N/A|类名:UserAuth
方法 or 属性:auth(challenge: Uint8Array, authType: UserAuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthInstance.start |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:IUserAuthCallback
废弃版本:N/A|类名:IUserAuthCallback
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthEvent |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:AuthResult
废弃版本:N/A|类名:AuthResult
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
废弃版本:N/A|类名:ResultCode
废弃版本:9
代替接口:ohos.userIAM.userAuth.UserAuthResultCode |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:SUCCESS = 0
废弃版本:N/A|类名:ResultCode
方法 or 属性:SUCCESS = 0
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:FAIL = 1
废弃版本:N/A|类名:ResultCode
方法 or 属性:FAIL = 1
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:GENERAL_ERROR = 2
废弃版本:N/A|类名:ResultCode
方法 or 属性:GENERAL_ERROR = 2
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:CANCELED = 3
废弃版本:N/A|类名:ResultCode
方法 or 属性:CANCELED = 3
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:TIMEOUT = 4
废弃版本:N/A|类名:ResultCode
方法 or 属性:TIMEOUT = 4
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:TYPE_NOT_SUPPORT = 5
废弃版本:N/A|类名:ResultCode
方法 or 属性:TYPE_NOT_SUPPORT = 5
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:TRUST_LEVEL_NOT_SUPPORT = 6
废弃版本:N/A|类名:ResultCode
方法 or 属性:TRUST_LEVEL_NOT_SUPPORT = 6
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:BUSY = 7
废弃版本:N/A|类名:ResultCode
方法 or 属性:BUSY = 7
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:INVALID_PARAMETERS = 8
废弃版本:N/A|类名:ResultCode
方法 or 属性:INVALID_PARAMETERS = 8
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:LOCKED = 9
废弃版本:N/A|类名:ResultCode
方法 or 属性:LOCKED = 9
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
方法 or 属性:NOT_ENROLLED = 10
废弃版本:N/A|类名:ResultCode
方法 or 属性:NOT_ENROLLED = 10
废弃版本:9
代替接口:N/A|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthType
方法 or 属性:type AuthType = "ALL" \| "FACE_ONLY";
起始版本:N/A|类名:AuthType
方法 or 属性:type AuthType = "ALL" \| "FACE_ONLY";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthType
方法 or 属性:type AuthType = "ALL" \| "FACE_ONLY";
起始版本:N/A|类名:AuthType
方法 or 属性:type AuthType = "ALL" \| "FACE_ONLY";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:N/A|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:N/A|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:N/A|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:N/A|类名:SecureLevel
方法 or 属性:type SecureLevel = "S1" \| "S2" \| "S3" \| "S4";
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
起始版本:N/A|类名:AuthenticationResult
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:NO_SUPPORT = -1
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:NO_SUPPORT = -1
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:SUCCESS = 0
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:SUCCESS = 0
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:COMPARE_FAILURE = 1
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:COMPARE_FAILURE = 1
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:CANCELED = 2
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:CANCELED = 2
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:TIMEOUT = 3
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:TIMEOUT = 3
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:CAMERA_FAIL = 4
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:CAMERA_FAIL = 4
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:BUSY = 5
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:BUSY = 5
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:INVALID_PARAMETERS = 6
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:INVALID_PARAMETERS = 6
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:LOCKED = 7
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:LOCKED = 7
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:NOT_ENROLLED = 8
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:NOT_ENROLLED = 8
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthenticationResult
方法 or 属性:GENERAL_ERROR = 100
起始版本:N/A|类名:AuthenticationResult
方法 or 属性:GENERAL_ERROR = 100
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:Authenticator
起始版本:N/A|类名:Authenticator
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel, callback: AsyncCallback\): void;
起始版本:N/A|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel, callback: AsyncCallback\): void;
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel): Promise\;
起始版本:N/A|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel): Promise\;
起始版本:6|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:IUserAuthCallback
起始版本:N/A|类名:IUserAuthCallback
起始版本:8|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthResult
方法 or 属性:token ?: Uint8Array;
起始版本:N/A|类名:AuthResult
方法 or 属性:token ?: Uint8Array;
起始版本:8|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthResult
方法 or 属性:remainTimes ?: number;
起始版本:N/A|类名:AuthResult
方法 or 属性:remainTimes ?: number;
起始版本:8|@ohos.userIAM.userAuth.d.ts| +|起始版本有变化|类名:AuthResult
方法 or 属性:freezingTime ?: number;
起始版本:N/A|类名:AuthResult
方法 or 属性:freezingTime ?: number;
起始版本:8|@ohos.userIAM.userAuth.d.ts| +|删除(权限)|类名:userAuth
权限:ohos.permission.ACCESS_BIOMETRIC|类名:userAuth
权限:N/A|@ohos.userIAM.userAuth.d.ts| +|新增(权限)|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel, callback: AsyncCallback\): void;
权限:N/A|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel, callback: AsyncCallback\): void;
权限:ohos.permission.ACCESS_BIOMETRIC|@ohos.userIAM.userAuth.d.ts| +|新增(权限)|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel): Promise\;
权限:N/A|类名:Authenticator
方法 or 属性:execute(type: AuthType, level: SecureLevel): Promise\;
权限:ohos.permission.ACCESS_BIOMETRIC|@ohos.userIAM.userAuth.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-web.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-web.md new file mode 100644 index 0000000000000000000000000000000000000000..7ef0432efae5aa71e6e2be92d26612a3a63cb668 --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-web.md @@ -0,0 +1,129 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.web.webview
类名: webview|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHeader|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHeader
方法 or 属性: headerKey: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHeader
方法 or 属性: headerValue: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: EditText|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: Email|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: HttpAnchor|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: HttpAnchorImg|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: Img|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: Map|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: Phone|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebHitTestType
方法 or 属性: Unknown|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HitTestValue|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HitTestValue
方法 or 属性: type: WebHitTestType;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HitTestValue
方法 or 属性: extra: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCustomScheme|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCustomScheme
方法 or 属性: schemeName: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCustomScheme
方法 or 属性: isSupportCORS: boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCustomScheme
方法 or 属性: isSupportFetch: boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorageOrigin|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorageOrigin
方法 or 属性: origin: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorageOrigin
方法 or 属性: usage: number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorageOrigin
方法 or 属性: quota: number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: webview
方法 or 属性: function once(type: string, callback: Callback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static deleteAllData(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static deleteOrigin(origin: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOrigins(): Promise\>;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOrigins(callback: AsyncCallback\>): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOriginQuota(origin: string): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOriginQuota(origin: string, callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOriginUsage(origin: string): Promise\ ;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebStorage
方法 or 属性: static getOriginUsage(origin: string, callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebDataBase|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebDataBase
方法 or 属性: static existHttpAuthCredentials(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebDataBase
方法 or 属性: static deleteHttpAuthCredentials(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebDataBase
方法 or 属性: static getHttpAuthCredentials(host: string, realm: string): Array\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebDataBase
方法 or 属性: static saveHttpAuthCredentials(host: string, realm: string, username: string, password: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static allowGeolocation(origin: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static deleteGeolocation(origin: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static deleteAllGeolocation(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static getAccessibleGeolocation(origin: string): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static getAccessibleGeolocation(origin: string, callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static getStoredGeolocation(): Promise\>;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: GeolocationPermissions
方法 or 属性: static getStoredGeolocation(callback: AsyncCallback\>): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static getCookie(url: string): string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static setCookie(url: string, value: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static saveCookieAsync(): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static saveCookieAsync(callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static isCookieAllowed(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static putAcceptCookieEnabled(accept: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static isThirdPartyCookieAllowed(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static putAcceptThirdPartyCookieEnabled(accept: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static existCookie(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static deleteEntireCookie(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebCookieManager
方法 or 属性: static deleteSessionCookie(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebMessagePort|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebMessagePort
方法 or 属性: close(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebMessagePort
方法 or 属性: postMessageEvent(message: WebMessage): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebMessagePort
方法 or 属性: onMessageEvent(callback: (result: WebMessage) => void): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HistoryItem|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HistoryItem
方法 or 属性: icon: image.PixelMap;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HistoryItem
方法 or 属性: historyUrl: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HistoryItem
方法 or 属性: historyRawUrl: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: HistoryItem
方法 or 属性: title: string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: BackForwardList|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: BackForwardList
方法 or 属性: currentIndex: number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: BackForwardList
方法 or 属性: size: number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: BackForwardList
方法 or 属性: getItemAtIndex(index: number): HistoryItem;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: static initializeWebEngine(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: static setWebDebuggingAccess(webDebuggingAccess: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: accessForward(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: accessBackward(): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: accessStep(step: number): boolean;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: forward(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: backward(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: clearHistory(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: onActive(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: onInactive(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: refresh(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: loadData(data: string, mimeType: string, encoding: string, baseUrl?: string, historyUrl?: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: loadUrl(url: string \| Resource, headers?: Array\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getHitTest(): WebHitTestType;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: storeWebArchive(baseName: string, autoName: boolean): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: storeWebArchive(baseName: string, autoName: boolean, callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: zoom(factor: number): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: zoomIn(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: zoomOut(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getHitTestValue(): HitTestValue;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getWebId(): number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getUserAgent(): string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getTitle(): string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getPageHeight(): number;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: backOrForward(step: number): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: requestFocus(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: createWebMessagePorts(): Array\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: postMessage(name: string, ports: Array\, uri: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: stop(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: registerJavaScriptProxy(object: object, name: string, methodList: Array\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: deleteJavaScriptRegister(name: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: searchAllAsync(searchString: string): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: clearMatches(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: searchNext(forward: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: clearSslCache(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: clearClientAuthenticationCache(): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: runJavaScript(script: string): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: runJavaScript(script: string, callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getUrl(): string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: pageUp(top:boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: pageDown(bottom:boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getOriginalUrl(): string;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getFavicon(): image.PixelMap;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: setNetworkAvailable(enable: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: hasImage(): Promise\;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: hasImage(callback: AsyncCallback\): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: getBackForwardEntries(): BackForwardList;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: removeCache(clearRom: boolean): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: scrollTo(x:number, y:number): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: scrollBy(deltaX:number, deltaY:number): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: slideScroll(vx:number, vy:number): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: serializeWebState(): Uint8Array;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: restoreWebState(state: Uint8Array): void;|@ohos.web.webview.d.ts| +|新增|NA|模块名: ohos.web.webview
类名: WebviewController
方法 or 属性: static customizeSchemes(schemes: Array\): void;|@ohos.web.webview.d.ts| diff --git a/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-window.md b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-window.md new file mode 100644 index 0000000000000000000000000000000000000000..f1dd5ca853ec7c41c8668426834eaec0a5fddd7c --- /dev/null +++ b/zh-cn/release-notes/api-diff/v3.2-Release/js-apidiff-window.md @@ -0,0 +1,467 @@ +| 操作 | 旧版本 | 新版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: windowAnimationManager|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: windowAnimationManager
方法 or 属性: function setController(controller: WindowAnimationController): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: windowAnimationManager
方法 or 属性: function minimizeWindowWithAnimation(windowTarget: WindowAnimationTarget,
callback: AsyncCallback\): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: windowAnimationManager
方法 or 属性: function minimizeWindowWithAnimation(windowTarget: WindowAnimationTarget): Promise\;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect
方法 or 属性: left: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect
方法 or 属性: top: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect
方法 or 属性: width: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect
方法 or 属性: height: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: RRect
方法 or 属性: radius: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationTarget|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationTarget
方法 or 属性: readonly bundleName: string;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationTarget
方法 or 属性: readonly abilityName: string;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationTarget
方法 or 属性: readonly windowBounds: RRect;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationTarget
方法 or 属性: readonly missionId: number;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationFinishedCallback|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationFinishedCallback
方法 or 属性: onAnimationFinish(): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onStartAppFromLauncher(startingWindowTarget: WindowAnimationTarget,
finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onStartAppFromRecent(startingWindowTarget: WindowAnimationTarget,
finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onStartAppFromOther(startingWindowTarget: WindowAnimationTarget,
finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onAppTransition(fromWindowTarget: WindowAnimationTarget, toWindowTarget: WindowAnimationTarget,
finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onMinimizeWindow(minimizingWindowTarget: WindowAnimationTarget,
finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onCloseWindow(closingWindowTarget: WindowAnimationTarget, finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onScreenUnlock(finishCallback: WindowAnimationFinishedCallback): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.animation.windowAnimationManager
类名: WindowAnimationController
方法 or 属性: onWindowAnimationTargetsUpdate(fullScreenWindowTarget: WindowAnimationTarget,
floatingWindowTargets: Array\): void;|@ohos.animation.windowAnimationManager.d.ts| +|新增|NA|模块名: ohos.application.WindowExtensionAbility
类名: WindowExtensionAbility|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.WindowExtensionAbility
类名: WindowExtensionAbility
方法 or 属性: context: WindowExtensionContext;|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.WindowExtensionAbility
类名: WindowExtensionAbility
方法 or 属性: onConnect(want: Want): void;|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.WindowExtensionAbility
类名: WindowExtensionAbility
方法 or 属性: onDisconnect(want: Want): void;|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|模块名: ohos.application.WindowExtensionAbility
类名: WindowExtensionAbility
方法 or 属性: onWindowReady(window: window.Window): void;|@ohos.application.WindowExtensionAbility.d.ts| +|新增|NA|类名:display
方法or属性:function getDefaultDisplaySync(): Display;|@ohos.display.d.ts| +|新增|NA|类名:display
方法or属性:function getAllDisplays(callback: AsyncCallback\>): void;|@ohos.display.d.ts| +|新增|NA|类名:display
方法or属性:function getAllDisplays(): Promise\>;|@ohos.display.d.ts| +|新增|NA|类名:display
方法or属性:function hasPrivateWindow(displayId: number): boolean;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Rect|@ohos.display.d.ts| +|新增|NA|类名:Rect
方法or属性:|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Rect
方法 or 属性:left: number;|@ohos.display.d.ts| +|新增|NA|类名:Rect
方法or属性:left: number;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Rect
方法 or 属性:top: number;|@ohos.display.d.ts| +|新增|NA|类名:Rect
方法or属性:top: number;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Rect
方法 or 属性:width: number;|@ohos.display.d.ts| +|新增|NA|类名:Rect
方法or属性:width: number;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Rect
方法 or 属性:height: number;|@ohos.display.d.ts| +|新增|NA|类名:Rect
方法or属性:height: number;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: WaterfallDisplayAreaRects|@ohos.display.d.ts| +|新增|NA|类名:WaterfallDisplayAreaRects
方法or属性:|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: WaterfallDisplayAreaRects
方法 or 属性:readonly left: Rect;|@ohos.display.d.ts| +|新增|NA|类名:WaterfallDisplayAreaRects
方法or属性:readonly left: Rect;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: WaterfallDisplayAreaRects
方法 or 属性:readonly right: Rect;|@ohos.display.d.ts| +|新增|NA|类名:WaterfallDisplayAreaRects
方法or属性:readonly right: Rect;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: WaterfallDisplayAreaRects
方法 or 属性:readonly top: Rect;|@ohos.display.d.ts| +|新增|NA|类名:WaterfallDisplayAreaRects
方法or属性:readonly top: Rect;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: WaterfallDisplayAreaRects
方法 or 属性:readonly bottom: Rect;|@ohos.display.d.ts| +|新增|NA|类名:WaterfallDisplayAreaRects
方法or属性:readonly bottom: Rect;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: CutoutInfo|@ohos.display.d.ts| +|新增|NA|类名:CutoutInfo
方法or属性:|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: CutoutInfo
方法 or 属性:readonly boundingRects: Array\;|@ohos.display.d.ts| +|新增|NA|类名:CutoutInfo
方法or属性:readonly boundingRects: Array\;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: CutoutInfo
方法 or 属性:readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;|@ohos.display.d.ts| +|新增|NA|类名:CutoutInfo
方法or属性:readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Display
方法 or 属性:getCutoutInfo(callback: AsyncCallback\): void;|@ohos.display.d.ts| +|新增|NA|类名:Display
方法or属性:getCutoutInfo(callback: AsyncCallback\): void;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.display
类名: Display
方法 or 属性:getCutoutInfo(): Promise\;|@ohos.display.d.ts| +|新增|NA|类名:Display
方法or属性:getCutoutInfo(): Promise\;|@ohos.display.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function getAllScreens(callback: AsyncCallback\>): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function getAllScreens(): Promise\>;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function on(eventType: 'connect' \| 'disconnect' \| 'change', callback: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function on(eventType: 'connect' \| 'disconnect' \| 'change', callback: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function on(eventType: 'connect' \| 'disconnect' \| 'change', callback: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function off(eventType: 'connect' \| 'disconnect' \| 'change', callback?: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function off(eventType: 'connect' \| 'disconnect' \| 'change', callback?: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function off(eventType: 'connect' \| 'disconnect' \| 'change', callback?: Callback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function makeExpand(options:Array\, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function makeExpand(options:Array\): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function makeMirror(mainScreen:number, mirrorScreen:Array\, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function makeMirror(mainScreen:number, mirrorScreen:Array\): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function createVirtualScreen(options:VirtualScreenOption, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function createVirtualScreen(options:VirtualScreenOption): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function destroyVirtualScreen(screenId:number, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function destroyVirtualScreen(screenId:number): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function setVirtualScreenSurface(screenId:number, surfaceId: string, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function setVirtualScreenSurface(screenId:number, surfaceId: string): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function isScreenRotationLocked(callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function isScreenRotationLocked(): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function setScreenRotationLocked(isLocked:boolean, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: screen
方法 or 属性: function setScreenRotationLocked(isLocked:boolean): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ExpandOption|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ExpandOption
方法 or 属性: screenId: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ExpandOption
方法 or 属性: startX: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ExpandOption
方法 or 属性: startY: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption
方法 or 属性: name: string|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption
方法 or 属性: width: number|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption
方法 or 属性: height: number|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption
方法 or 属性: density: number|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: VirtualScreenOption
方法 or 属性: surfaceId: string|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: readonly id: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: readonly parent: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: readonly supportedModeInfo: Array\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: readonly activeModeIndex: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: readonly orientation: Orientation;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setOrientation(orientation: Orientation, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setOrientation(orientation: Orientation): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setScreenActiveMode(modeIndex: number, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setScreenActiveMode(modeIndex: number): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setDensityDpi(densityDpi: number, callback: AsyncCallback\): void;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Screen
方法 or 属性: setDensityDpi(densityDpi: number): Promise\;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation
方法 or 属性: UNSPECIFIED = 0|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation
方法 or 属性: VERTICAL = 1|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation
方法 or 属性: HORIZONTAL = 2|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation
方法 or 属性: REVERSE_VERTICAL = 3|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: Orientation
方法 or 属性: REVERSE_HORIZONTAL = 4|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ScreenModeInfo|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ScreenModeInfo
方法 or 属性: id: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ScreenModeInfo
方法 or 属性: width: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ScreenModeInfo
方法 or 属性: height: number;|@ohos.screen.d.ts| +|新增|NA|模块名: ohos.screen
类名: ScreenModeInfo
方法 or 属性: refreshRate: number;|@ohos.screen.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_INPUT_METHOD|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_STATUS_BAR|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_PANEL|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_KEYGUARD|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_VOLUME_OVERLAY|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_NAVIGATION_BAR|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_FLOAT|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_WALLPAPER|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_DESKTOP|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_LAUNCHER_RECENT|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_LAUNCHER_DOCK|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_VOICE_INTERACTION|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_POINTER|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_FLOAT_CAMERA|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_DIALOG|@ohos.window.d.ts| +|新增|NA|类名:WindowType
方法or属性:TYPE_SCREENSHOT|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: AvoidAreaType
方法 or 属性:TYPE_SYSTEM_GESTURE|@ohos.window.d.ts| +|新增|NA|类名:AvoidAreaType
方法or属性:TYPE_SYSTEM_GESTURE|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: AvoidAreaType
方法 or 属性:TYPE_KEYBOARD|@ohos.window.d.ts| +|新增|NA|类名:AvoidAreaType
方法or属性:TYPE_KEYBOARD|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowLayoutMode|@ohos.window.d.ts| +|新增|NA|类名:WindowLayoutMode
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowLayoutMode
方法 or 属性:WINDOW_LAYOUT_MODE_CASCADE|@ohos.window.d.ts| +|新增|NA|类名:WindowLayoutMode
方法or属性:WINDOW_LAYOUT_MODE_CASCADE|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowLayoutMode
方法 or 属性:WINDOW_LAYOUT_MODE_TILE|@ohos.window.d.ts| +|新增|NA|类名:WindowLayoutMode
方法or属性:WINDOW_LAYOUT_MODE_TILE|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: AvoidArea
方法 or 属性:visible: boolean;|@ohos.window.d.ts| +|新增|NA|类名:AvoidArea
方法or属性:visible: boolean;|@ohos.window.d.ts| +|新增|NA|类名:WindowProperties
方法or属性:id: number|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: ScaleOptions|@ohos.window.d.ts| +|新增|NA|类名:ScaleOptions
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: ScaleOptions
方法 or 属性:x?: number;|@ohos.window.d.ts| +|新增|NA|类名:ScaleOptions
方法or属性:x?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: ScaleOptions
方法 or 属性:y?: number;|@ohos.window.d.ts| +|新增|NA|类名:ScaleOptions
方法or属性:y?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: ScaleOptions
方法 or 属性:pivotX?: number;|@ohos.window.d.ts| +|新增|NA|类名:ScaleOptions
方法or属性:pivotX?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: ScaleOptions
方法 or 属性:pivotY?: number;|@ohos.window.d.ts| +|新增|NA|类名:ScaleOptions
方法or属性:pivotY?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions
方法 or 属性:x?: number;|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:x?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions
方法 or 属性:y?: number;|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:y?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions
方法 or 属性:z?: number;|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:z?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions
方法 or 属性:pivotX?: number;|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:pivotX?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: RotateOptions
方法 or 属性:pivotY?: number;|@ohos.window.d.ts| +|新增|NA|类名:RotateOptions
方法or属性:pivotY?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TranslateOptions|@ohos.window.d.ts| +|新增|NA|类名:TranslateOptions
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TranslateOptions
方法 or 属性:x?: number;|@ohos.window.d.ts| +|新增|NA|类名:TranslateOptions
方法or属性:x?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TranslateOptions
方法 or 属性:y?: number;|@ohos.window.d.ts| +|新增|NA|类名:TranslateOptions
方法or属性:y?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TranslateOptions
方法 or 属性:z?: number;|@ohos.window.d.ts| +|新增|NA|类名:TranslateOptions
方法or属性:z?: number;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionContext|@ohos.window.d.ts| +|新增|NA|类名:TransitionContext
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionContext
方法 or 属性:toWindow: Window|@ohos.window.d.ts| +|新增|NA|类名:TransitionContext
方法or属性:toWindow: Window|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionContext
方法 or 属性:completeTransition(isCompleted: boolean): void;|@ohos.window.d.ts| +|新增|NA|类名:TransitionContext
方法or属性:completeTransition(isCompleted: boolean): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionController|@ohos.window.d.ts| +|新增|NA|类名:TransitionController
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionController
方法 or 属性:animationForShown(context: TransitionContext): void;|@ohos.window.d.ts| +|新增|NA|类名:TransitionController
方法or属性:animationForShown(context: TransitionContext): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: TransitionController
方法 or 属性:animationForHidden(context: TransitionContext): void;|@ohos.window.d.ts| +|新增|NA|类名:TransitionController
方法or属性:animationForHidden(context: TransitionContext): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration
方法 or 属性:name: string|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:name: string|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration
方法 or 属性:windowType: WindowType|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:windowType: WindowType|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration
方法 or 属性:ctx?: BaseContext|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:ctx?: BaseContext|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration
方法 or 属性:displayId?: number|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:displayId?: number|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Configuration
方法 or 属性:parentId?: number|@ohos.window.d.ts| +|新增|NA|类名:Configuration
方法or属性:parentId?: number|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function createWindow(config: Configuration, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function createWindow(config: Configuration): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function findWindow(name: string): Window;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function getLastWindow(ctx: BaseContext, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function getLastWindow(ctx: BaseContext): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function minimizeAll(id: number, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function minimizeAll(id: number): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function toggleShownStateForAllAppWindows(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function toggleShownStateForAllAppWindows(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function setWindowLayoutMode(mode: WindowLayoutMode, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:window
方法or属性:function setWindowLayoutMode(mode: WindowLayoutMode): Promise\;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:UNSPECIFIED = 0|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:UNSPECIFIED = 0|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:PORTRAIT = 1|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:PORTRAIT = 1|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:LANDSCAPE = 2|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:LANDSCAPE = 2|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:PORTRAIT_INVERTED = 3|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:PORTRAIT_INVERTED = 3|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:LANDSCAPE_INVERTED = 4|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:LANDSCAPE_INVERTED = 4|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION = 5|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION = 5|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT = 6|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION_PORTRAIT = 6|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE = 7|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION_LANDSCAPE = 7|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION_RESTRICTED = 8|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION_RESTRICTED = 8|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION_PORTRAIT_RESTRICTED = 9|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION_PORTRAIT_RESTRICTED = 9|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:AUTO_ROTATION_LANDSCAPE_RESTRICTED = 10|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:AUTO_ROTATION_LANDSCAPE_RESTRICTED = 10|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: Orientation
方法 or 属性:LOCKED = 11|@ohos.window.d.ts| +|新增|NA|类名:Orientation
方法or属性:LOCKED = 11|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: BlurStyle|@ohos.window.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: BlurStyle
方法 or 属性:OFF|@ohos.window.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:OFF|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: BlurStyle
方法 or 属性:THIN|@ohos.window.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:THIN|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: BlurStyle
方法 or 属性:REGULAR|@ohos.window.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:REGULAR|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: BlurStyle
方法 or 属性:THICK|@ohos.window.d.ts| +|新增|NA|类名:BlurStyle
方法or属性:THICK|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:hideWithAnimation(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:hideWithAnimation(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:showWindow(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:showWindow(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:showWithAnimation(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:showWithAnimation(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:destroyWindow(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:destroyWindow(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:moveWindowTo(x: number, y: number): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:moveWindowTo(x: number, y: number, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:resize(width: number, height: number): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:resize(width: number, height: number, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowMode(mode: WindowMode): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowMode(mode: WindowMode, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:getWindowProperties(): WindowProperties;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:getWindowAvoidArea(type: AvoidAreaType): AvoidArea;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowLayoutFullScreen(isLayoutFullScreen: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowSystemBarEnable(names: Array\<'status'\|'navigation'>, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowSystemBarEnable(names: Array\<'status'\|'navigation'>): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowSystemBarProperties(systemBarProperties: SystemBarProperties): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setPreferredOrientation(orientation: Orientation): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setPreferredOrientation(orientation: Orientation, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setUIContent(path: string, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setUIContent(path: string): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:isWindowShowing(): boolean;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:on(type: 'avoidAreaChange', callback: Callback\<{ type: AvoidAreaType, area: AvoidArea }>): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:off(type: 'avoidAreaChange', callback?: Callback\<{ type: AvoidAreaType, area: AvoidArea }>): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:on(type: 'touchOutside', callback: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:off(type: 'touchOutside', callback?: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:on(type: 'screenshot', callback: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:off(type: 'screenshot', callback?: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback\): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback\, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(requestInfo: dialogRequest.RequestInfo, deathCallback: Callback\): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:bindDialogTarget(requestInfo: dialogRequest.RequestInfo, deathCallback: Callback\, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:isWindowSupportWideGamut(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:isWindowSupportWideGamut(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowColorSpace(colorSpace:ColorSpace): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowColorSpace(colorSpace:ColorSpace, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:getWindowColorSpace(): ColorSpace;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowBackgroundColor(color: string): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowBrightness(brightness: number): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowBrightness(brightness: number, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowFocusable(isFocusable: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowFocusable(isFocusable: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowKeepScreenOn(isKeepScreenOn: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWakeUpScreen(wakeUp: boolean): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowPrivacyMode(isPrivacyMode: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setSnapshotSkip(isSkip: boolean): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowTouchable(isTouchable: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setWindowTouchable(isTouchable: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setForbidSplitMove(isForbidSplitMove: boolean, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setForbidSplitMove(isForbidSplitMove: boolean): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:snapshot(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:snapshot(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:opacity(opacity: number): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:scale(scaleOptions: ScaleOptions): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:rotate(rotateOptions: RotateOptions): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:translate(translateOptions: TranslateOptions): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:getTransitionController(): TransitionController;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setBlur(radius: number): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setBackdropBlur(radius: number): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setBackdropBlurStyle(blurStyle: BlurStyle): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setShadow(radius: number, color?: string, offsetX?: number, offsetY?: number): void;|@ohos.window.d.ts| +|新增|NA|类名:Window
方法or属性:setCornerRadius(cornerRadius: number): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStageEventType|@ohos.window.d.ts| +|新增|NA|类名:WindowStageEventType
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStageEventType
方法 or 属性:SHOWN = 1|@ohos.window.d.ts| +|新增|NA|类名:WindowStageEventType
方法or属性:SHOWN = 1|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStageEventType
方法 or 属性:ACTIVE|@ohos.window.d.ts| +|新增|NA|类名:WindowStageEventType
方法or属性:ACTIVE|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStageEventType
方法 or 属性:INACTIVE|@ohos.window.d.ts| +|新增|NA|类名:WindowStageEventType
方法or属性:INACTIVE|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStageEventType
方法 or 属性:HIDDEN|@ohos.window.d.ts| +|新增|NA|类名:WindowStageEventType
方法or属性:HIDDEN|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:getMainWindow(): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:getMainWindow(): Promise\;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:getMainWindow(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:getMainWindow(callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:getMainWindowSync(): Window;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:getMainWindowSync(): Window;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:createSubWindow(name: string): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:createSubWindow(name: string): Promise\;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:createSubWindow(name: string, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:createSubWindow(name: string, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:getSubWindow(): Promise\>;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:getSubWindow(): Promise\>;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:getSubWindow(callback: AsyncCallback\>): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:getSubWindow(callback: AsyncCallback\>): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:loadContent(path: string, storage: LocalStorage, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:loadContent(path: string, storage?: LocalStorage): Promise\;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:loadContent(path: string, storage?: LocalStorage): Promise\;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:on(eventType: 'windowStageEvent', callback: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:on(eventType: 'windowStageEvent', callback: Callback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:off(eventType: 'windowStageEvent', callback?: Callback\): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:off(eventType: 'windowStageEvent', callback?: Callback\): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:disableWindowDecor(): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:disableWindowDecor(): void;|@ohos.window.d.ts| +|新增|NA|模块名: ohos.window
类名: WindowStage
方法 or 属性:setShowOnLockScreen(showOnLockScreen: boolean): void;|@ohos.window.d.ts| +|新增|NA|类名:WindowStage
方法or属性:setShowOnLockScreen(showOnLockScreen: boolean): void;|@ohos.window.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext|WindowExtensionContext.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext
方法 or 属性: startAbility(want: Want, options: StartOptions, callback: AsyncCallback\): void;|WindowExtensionContext.d.ts| +|新增|NA|模块名: WindowExtensionContext
类名: WindowExtensionContext
方法 or 属性: startAbility(want: Want, options?: StartOptions): Promise\;|WindowExtensionContext.d.ts| +|model有变化|类名:WindowType
方法 or 属性:TYPE_APP
model:N/A|类名:WindowType
方法 or 属性:TYPE_APP
model:@FAModelOnly|@ohos.window.d.ts| +|model有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
model:N/A|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.window.d.ts| +|model有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
model:N/A|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
model:@FAModelOnly|@ohos.window.d.ts| +|model有变化|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
model:N/A|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
model:@FAModelOnly|@ohos.window.d.ts| +|model有变化|类名:window
方法 or 属性:function getTopWindow(): Promise\;
model:N/A|类名:window
方法 or 属性:function getTopWindow(): Promise\;
model:@FAModelOnly|@ohos.window.d.ts| +|废弃版本有变化|类名:display
方法 or 属性:function getDefaultDisplay(callback: AsyncCallback\): void;
废弃版本:N/A|类名:display
方法 or 属性:function getDefaultDisplay(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|类名:display
方法 or 属性:function getDefaultDisplay(): Promise\;
废弃版本:N/A|类名:display
方法 or 属性:function getDefaultDisplay(): Promise\;
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|类名:display
方法 or 属性:function getAllDisplay(callback: AsyncCallback\>): void;
废弃版本:N/A|类名:display
方法 or 属性:function getAllDisplay(callback: AsyncCallback\>): void;
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|类名:display
方法 or 属性:function getAllDisplay(): Promise\>;
废弃版本:N/A|类名:display
方法 or 属性:function getAllDisplay(): Promise\>;
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|类名:WindowProperties
方法 or 属性:dimBehindValue: number
废弃版本:N/A|类名:WindowProperties
方法 or 属性:dimBehindValue: number
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:WindowProperties
方法 or 属性:isRoundCorner: boolean
废弃版本:N/A|类名:WindowProperties
方法 or 属性:isRoundCorner: boolean
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
废弃版本:N/A|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function find(id: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:window
方法 or 属性:function find(id: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function find(id: string): Promise\;
废弃版本:N/A|类名:window
方法 or 属性:function find(id: string): Promise\;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
废弃版本:N/A|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:window
方法 or 属性:function getTopWindow(): Promise\;
废弃版本:N/A|类名:window
方法 or 属性:function getTopWindow(): Promise\;
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:show(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:show(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:show(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:show(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:destroy(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:destroy(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:destroy(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:destroy(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:moveTo(x: number, y: number): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:moveTo(x: number, y: number): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:moveTo(x: number, y: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:moveTo(x: number, y: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:resetSize(width: number, height: number): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:resetSize(width: number, height: number): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:resetSize(width: number, height: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:resetSize(width: number, height: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setWindowType(type: WindowType): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setWindowType(type: WindowType): Promise\;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setWindowType(type: WindowType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setWindowType(type: WindowType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getProperties(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:getProperties(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getProperties(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:getProperties(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getAvoidArea(type: AvoidAreaType, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:getAvoidArea(type: AvoidAreaType, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getAvoidArea(type: AvoidAreaType): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:getAvoidArea(type: AvoidAreaType): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setFullScreen(isFullScreen: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setFullScreen(isFullScreen: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setFullScreen(isFullScreen: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setFullScreen(isFullScreen: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setLayoutFullScreen(isLayoutFullScreen: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setLayoutFullScreen(isLayoutFullScreen: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setSystemBarEnable(names: Array\<'status'\|'navigation'>, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setSystemBarEnable(names: Array\<'status'\|'navigation'>, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setSystemBarEnable(names: Array\<'status'\|'navigation'>): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setSystemBarEnable(names: Array\<'status'\|'navigation'>): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setSystemBarProperties(systemBarProperties: SystemBarProperties): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setSystemBarProperties(systemBarProperties: SystemBarProperties): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:loadContent(path: string): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:loadContent(path: string): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:isShowing(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:isShowing(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:isShowing(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:isShowing(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:on(type: 'systemAvoidAreaChange', callback: Callback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:on(type: 'systemAvoidAreaChange', callback: Callback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:off(type: 'systemAvoidAreaChange', callback?: Callback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:off(type: 'systemAvoidAreaChange', callback?: Callback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:isSupportWideGamut(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:isSupportWideGamut(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:isSupportWideGamut(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:isSupportWideGamut(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setColorSpace(colorSpace:ColorSpace): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setColorSpace(colorSpace:ColorSpace): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setColorSpace(colorSpace:ColorSpace, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setColorSpace(colorSpace:ColorSpace, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getColorSpace(): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:getColorSpace(): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:getColorSpace(callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:getColorSpace(callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setBackgroundColor(color: string): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setBackgroundColor(color: string): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setBackgroundColor(color: string, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setBackgroundColor(color: string, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setBrightness(brightness: number): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setBrightness(brightness: number): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setBrightness(brightness: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setBrightness(brightness: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setDimBehind(dimBehindValue: number, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setDimBehind(dimBehindValue: number, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setDimBehind(dimBehindValue: number): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setDimBehind(dimBehindValue: number): Promise\;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setFocusable(isFocusable: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setFocusable(isFocusable: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setFocusable(isFocusable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setFocusable(isFocusable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setKeepScreenOn(isKeepScreenOn: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setKeepScreenOn(isKeepScreenOn: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setOutsideTouchable(touchable: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setOutsideTouchable(touchable: boolean): Promise\;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setOutsideTouchable(touchable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setOutsideTouchable(touchable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:N/A|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setPrivacyMode(isPrivacyMode: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setPrivacyMode(isPrivacyMode: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setTouchable(isTouchable: boolean): Promise\;
废弃版本:N/A|类名:Window
方法 or 属性:setTouchable(isTouchable: boolean): Promise\;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|类名:Window
方法 or 属性:setTouchable(isTouchable: boolean, callback: AsyncCallback\): void;
废弃版本:N/A|类名:Window
方法 or 属性:setTouchable(isTouchable: boolean, callback: AsyncCallback\): void;
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function on(type: 'add' \| 'remove' \| 'change', callback: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function on(type: 'add' \| 'remove' \| 'change', callback: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function on(type: 'add' \| 'remove' \| 'change', callback: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function off(type: 'add' \| 'remove' \| 'change', callback?: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function off(type: 'add' \| 'remove' \| 'change', callback?: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:display
方法 or 属性:function off(type: 'add' \| 'remove' \| 'change', callback?: Callback\): void;
错误码内容: 401|@ohos.display.d.ts| +|新增(错误码)|NA|类名:screenshot
方法 or 属性:function save(options?: ScreenshotOptions): Promise\;
错误码内容: 201, 401|@ohos.screenshot.d.ts| +|新增(错误码)|NA|类名:window
方法 or 属性:function on(type: 'systemBarTintChange', callback: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|新增(错误码)|NA|类名:window
方法 or 属性:function off(type: 'systemBarTintChange', callback?: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:hide (callback: AsyncCallback\): void;
错误码内容: 1300002|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:hide(): Promise\;
错误码内容: 1300002|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:on(type: 'windowSizeChange', callback: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:off(type: 'windowSizeChange', callback?: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:on(type: 'keyboardHeightChange', callback: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|新增(错误码)|NA|类名:Window
方法 or 属性:off(type: 'keyboardHeightChange', callback?: Callback\): void;
错误码内容: 401|@ohos.window.d.ts| +|函数有变化|类名:screenshot
方法 or 属性:function save(options?: ScreenshotOptions, callback: AsyncCallback\): void;
|类名:screenshot
方法 or 属性:function save(options: ScreenshotOptions, callback: AsyncCallback\): void;
|@ohos.screenshot.d.ts| +|函数有变化|类名:screenshot
方法 or 属性:function save(options?: ScreenshotOptions, callback: AsyncCallback\): void;
|类名:screenshot
方法 or 属性:function save(callback: AsyncCallback\): void;
|@ohos.screenshot.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(ctx: Context, id: string, type: WindowType): Promise\;
|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType): Promise\;
|类名:window
方法 or 属性:function create(ctx: BaseContext, id: string, type: WindowType): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(ctx: Context, id: string, type: WindowType): Promise\;
|类名:window
方法 or 属性:function create(ctx: BaseContext, id: string, type: WindowType): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(id: string, type: WindowType, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(ctx: Context, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(): Promise\;
|类名:window
方法 or 属性:function getTopWindow(): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(ctx: Context): Promise\;
|类名:window
方法 or 属性:function getTopWindow(): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(): Promise\;
|类名:window
方法 or 属性:function getTopWindow(ctx: BaseContext): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(ctx: Context): Promise\;
|类名:window
方法 or 属性:function getTopWindow(ctx: BaseContext): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function getTopWindow(ctx: BaseContext, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:window
方法 or 属性:function getTopWindow(ctx: Context, callback: AsyncCallback\): void;
|类名:window
方法 or 属性:function getTopWindow(ctx: BaseContext, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:Window
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;
|类名:Window
方法 or 属性:loadContent(path: string, storage: LocalStorage, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:Window
方法 or 属性:loadContent(path: string): Promise\;
|类名:Window
方法 or 属性:loadContent(path: string, storage: LocalStorage): Promise\;
|@ohos.window.d.ts| +|函数有变化|类名:Window
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;
|类名:Window
方法 or 属性:loadContent(path: string, callback: AsyncCallback\): void;
|@ohos.window.d.ts| +|函数有变化|类名:Window
方法 or 属性:loadContent(path: string): Promise\;
|类名:Window
方法 or 属性:loadContent(path: string): Promise\;
|@ohos.window.d.ts|