ms-types 0.10.5 → 0.10.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/types/device.d.ts
CHANGED
|
@@ -42,12 +42,6 @@ declare namespace device {
|
|
|
42
42
|
* @example device.getDeviceID()
|
|
43
43
|
*/
|
|
44
44
|
function getDeviceID(): string;
|
|
45
|
-
/**
|
|
46
|
-
* 获取服务器设备ID
|
|
47
|
-
* @returns 服务器设备ID
|
|
48
|
-
* @example device.getServerDeviceId()
|
|
49
|
-
*/
|
|
50
|
-
function getServerDeviceId(): string;
|
|
51
45
|
/**
|
|
52
46
|
* 获取ECID
|
|
53
47
|
* @returns ECID
|
package/types/lua/device.lua
CHANGED
|
@@ -31,10 +31,6 @@ end
|
|
|
31
31
|
---@return string
|
|
32
32
|
function _Device.getDeviceID() return '' end
|
|
33
33
|
|
|
34
|
-
--- 服务器设备 ID(签名不变则卸载重装仍保持)
|
|
35
|
-
---@return string
|
|
36
|
-
function _Device.getServerDeviceId() return '' end
|
|
37
|
-
|
|
38
34
|
--- ECID
|
|
39
35
|
---@return string
|
|
40
36
|
function _Device.getECID() return '' end
|
package/types/ui.d.ts
CHANGED