ms-types 0.6.2 → 0.6.3

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.6.2",
3
+ "version": "0.6.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/ime.d.ts CHANGED
@@ -87,13 +87,4 @@ declare namespace ime {
87
87
  * }
88
88
  */
89
89
  function setClipboard(text: string): boolean;
90
- /**
91
- * 切换键盘
92
- * @returns {boolean} 如果成功返回 true,否则返回 false
93
- * @example
94
- * if (ime.switchKeyboard()) {
95
- * logi("键盘已切换")
96
- * }
97
- */
98
- function switchKeyboard(): boolean;
99
90
  }
@@ -88,13 +88,4 @@ declare namespace $输入法 {
88
88
  * }
89
89
  */
90
90
  function 设置剪切板内容(要设置的剪贴板内容: 字符串): 布尔值;
91
- /**
92
- * 切换键盘
93
- * @returns 如果成功返回 true,否则返回 false
94
- * @example
95
- * if ($输入法.切换输入法()) {
96
- * $打印信息日志("键盘已切换")
97
- * }
98
- */
99
- function 切换输入法(): 布尔值;
100
91
  }