ms-types 0.8.1 → 0.8.2

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.8.1",
3
+ "version": "0.8.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/action.d.ts CHANGED
@@ -162,8 +162,8 @@ declare namespace action {
162
162
  /**
163
163
  * 输入基础文本。
164
164
  *
165
- * 不使用剪切板或 IME,而是把文本字符数组一次性传给 Action 模块的 sendKey。
166
- * 仅支持可映射为 USB HID Keyboard/Keypad usage 的 ASCII 字符,不支持中文。
165
+ * 通过键盘按键事件输入基础文本,适合英文、数字和常见 ASCII 符号。
166
+ * 不使用剪贴板或系统输入法,需要输入中文时请使用 action.input。
167
167
  *
168
168
  * @param text 文本内容
169
169
  * @returns 输入是否成功
@@ -164,8 +164,8 @@ declare namespace $动作 {
164
164
  /**
165
165
  * 输入基础文本。
166
166
  *
167
- * 不使用剪切板或 IME,而是把文本字符数组一次性传给动作模块的 发送按键。
168
- * 仅支持可映射为 USB HID Keyboard/Keypad usage 的 ASCII 字符,不支持中文。
167
+ * 通过键盘按键事件输入基础文本,适合英文、数字和常见 ASCII 符号。
168
+ * 不使用剪贴板或系统输入法,需要输入中文时请使用 $动作.输入文本。
169
169
  *
170
170
  * @param 文本 文本内容
171
171
  * @returns 输入是否成功