ms-types 0.0.67 → 0.0.68

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.0.67",
3
+ "version": "0.0.68",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -8,7 +8,13 @@ declare type 数组<T> = Array<T>;
8
8
  declare type 字典<T> = Record<字符串, T>;
9
9
  declare type 无返回值 = void;
10
10
 
11
+ /**
12
+ * true 别名
13
+ */
11
14
  declare const $真: 布尔值;
15
+ /**
16
+ * false 别名
17
+ */
12
18
  declare const $假: 布尔值;
13
19
 
14
20
  /**