ms-types 0.3.11 → 0.3.13

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.11",
3
+ "version": "0.3.13",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
package/types/global.d.ts CHANGED
@@ -157,7 +157,7 @@ declare function logd(...args: any[]): void;
157
157
  * logi("用户登录成功");
158
158
  */
159
159
  declare function logi(...args: any[]): void;
160
- declare function print(...args: any[]): void;
160
+ declare function println(...args: any[]): void;
161
161
 
162
162
  /**
163
163
  * 打印警告日志 - 输出警告级别的日志
package/types/image.d.ts CHANGED
@@ -246,6 +246,7 @@ declare namespace image {
246
246
  method: number,
247
247
  rgb?: boolean
248
248
  ): {
249
+ index: number;
249
250
  x: number;
250
251
  y: number;
251
252
  width: number;
@@ -244,6 +244,7 @@ declare namespace $图片 {
244
244
  方法: 数字,
245
245
  是否使用RGB找图?: 布尔值
246
246
  ): {
247
+ index: 数字;
247
248
  x: 数字;
248
249
  y: 数字;
249
250
  width: 数字;