ms-types 0.5.3 → 0.5.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ms-types",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/global.d.ts CHANGED
@@ -1,3 +1,7 @@
1
+ /**
2
+ * 是否内置内置Agent
3
+ */
4
+ declare const __isSupportBuiltAgent__: boolean;
1
5
  /**
2
6
  * 是否是调试模式
3
7
  */
@@ -7,6 +7,10 @@ declare type 数组<T> = Array<T>;
7
7
  declare type 字典<T> = Record<字符串, T>;
8
8
  declare type 无返回值 = void;
9
9
 
10
+ /**
11
+ * 是否内置内置Agent
12
+ */
13
+ declare const $是否内置Agent: 布尔值;
10
14
  /**
11
15
  * 是否是调试模式
12
16
  */