ms-types 0.0.80 → 0.0.81

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/hid.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ms-types",
3
- "version": "0.0.80",
3
+ "version": "0.0.81",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/hid.d.ts CHANGED
@@ -88,5 +88,5 @@ declare namespace hid {
88
88
  * @param key 要发送的按键
89
89
  * @returns 操作是否成功
90
90
  */
91
- function sendKey(key: Array<number>): boolean;
91
+ function sendKey(key: Array<number | string>): boolean;
92
92
  }