ms-types 0.0.52 → 0.0.53

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.52",
3
+ "version": "0.0.53",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/action.d.ts CHANGED
@@ -221,7 +221,7 @@ declare namespace action {
221
221
  * @example builder.multiTap([{x: 100, y: 100}, {x: 200, y: 200}], 50).execute()
222
222
  */
223
223
  multiTap(
224
- points: Array<{ x: number; y: number }>,
224
+ points: { x: number; y: number }[],
225
225
  duration?: number
226
226
  ): ActionBuilder;
227
227
 
package/types/mysql.d.ts CHANGED
@@ -25,7 +25,7 @@ declare namespace mysql {
25
25
  */
26
26
  interface MySQLResult {
27
27
  /** 查询结果数据行 */
28
- rows: Array<Record<string, any>>;
28
+ rows: Record<string, any>[];
29
29
  /** 受影响的行数 */
30
30
  affectedRows: number;
31
31
  /** 插入ID(仅适用于INSERT操作) */
@@ -49,7 +49,7 @@ declare namespace mysql {
49
49
  * database: "test_db",
50
50
  * charset: "utf8mb4"
51
51
  * })
52
- *
52
+ *
53
53
  * if (connected) {
54
54
  * logger.info("数据库连接成功")
55
55
  * }