ms-types 0.6.8 → 0.6.9
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/global.d.ts
CHANGED
|
@@ -43,10 +43,6 @@ declare const __package__: {
|
|
|
43
43
|
* 应用名称
|
|
44
44
|
*/
|
|
45
45
|
name: string;
|
|
46
|
-
/**
|
|
47
|
-
* 应用包名
|
|
48
|
-
*/
|
|
49
|
-
package: string;
|
|
50
46
|
/**
|
|
51
47
|
* 应用版本
|
|
52
48
|
*/
|
|
@@ -55,19 +51,6 @@ declare const __package__: {
|
|
|
55
51
|
* 应用 Id
|
|
56
52
|
*/
|
|
57
53
|
appId: string;
|
|
58
|
-
/**
|
|
59
|
-
* 应用更新参数
|
|
60
|
-
*/
|
|
61
|
-
update: {
|
|
62
|
-
/**
|
|
63
|
-
* 应用更新地址
|
|
64
|
-
*/
|
|
65
|
-
url: string;
|
|
66
|
-
/**
|
|
67
|
-
* 应用更新超时时间
|
|
68
|
-
*/
|
|
69
|
-
timeout: number;
|
|
70
|
-
};
|
|
71
54
|
[key: string]: any;
|
|
72
55
|
};
|
|
73
56
|
|