ms-types 0.3.0 → 0.3.1

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.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -83,7 +83,7 @@ declare namespace $文件 {
83
83
  * @param 文件路径
84
84
  * @param 文件内容
85
85
  * @returns 是否写入成功
86
- * @example $文件.写入文件("config.json", "name=wda")
86
+ * @example $文件.写入文件("config.json", "name=test")
87
87
  */
88
88
  function 写入文件(文件路径: 字符串, 文件内容: 字符串): 布尔值;
89
89
  /**
@@ -91,7 +91,7 @@ declare namespace $文件 {
91
91
  * @param 文件路径
92
92
  * @param 文件内容
93
93
  * @returns 是否追加成功
94
- * @example $文件.追加行("config.json", "name=wda")
94
+ * @example $文件.追加行("config.json", "name=test")
95
95
  */
96
96
  function 追加行(文件路径: 字符串, 文件内容: 字符串): 布尔值;
97
97
  /**