ms-toollib 1.4.6-alpha → 1.4.7
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/ms_toollib.d.ts +4 -4
- package/ms_toollib_bg.js +12 -12
- package/ms_toollib_bg.wasm +0 -0
- package/package.json +2 -1
package/ms_toollib.d.ts
CHANGED
|
@@ -219,7 +219,7 @@ export class AvfVideo {
|
|
|
219
219
|
readonly get_is_fair: boolean;
|
|
220
220
|
/**
|
|
221
221
|
*/
|
|
222
|
-
readonly
|
|
222
|
+
readonly get_is_official: boolean;
|
|
223
223
|
/**
|
|
224
224
|
*/
|
|
225
225
|
readonly get_isl: number;
|
|
@@ -489,7 +489,7 @@ export class EvfVideo {
|
|
|
489
489
|
readonly get_is_fair: boolean;
|
|
490
490
|
/**
|
|
491
491
|
*/
|
|
492
|
-
readonly
|
|
492
|
+
readonly get_is_official: boolean;
|
|
493
493
|
/**
|
|
494
494
|
*/
|
|
495
495
|
readonly get_isl: number;
|
|
@@ -818,7 +818,7 @@ export class MvfVideo {
|
|
|
818
818
|
readonly get_is_fair: boolean;
|
|
819
819
|
/**
|
|
820
820
|
*/
|
|
821
|
-
readonly
|
|
821
|
+
readonly get_is_official: boolean;
|
|
822
822
|
/**
|
|
823
823
|
*/
|
|
824
824
|
readonly get_isl: number;
|
|
@@ -1077,7 +1077,7 @@ export class RmvVideo {
|
|
|
1077
1077
|
readonly get_is_fair: boolean;
|
|
1078
1078
|
/**
|
|
1079
1079
|
*/
|
|
1080
|
-
readonly
|
|
1080
|
+
readonly get_is_official: boolean;
|
|
1081
1081
|
/**
|
|
1082
1082
|
*/
|
|
1083
1083
|
readonly get_isl: number;
|
package/ms_toollib_bg.js
CHANGED
|
@@ -280,7 +280,7 @@ export class AvfVideo {
|
|
|
280
280
|
get_level: this.get_level,
|
|
281
281
|
get_mode: this.get_mode,
|
|
282
282
|
get_is_completed: this.get_is_completed,
|
|
283
|
-
|
|
283
|
+
get_is_official: this.get_is_official,
|
|
284
284
|
get_is_fair: this.get_is_fair,
|
|
285
285
|
get_mine_num: this.get_mine_num,
|
|
286
286
|
get_player_designator: this.get_player_designator,
|
|
@@ -448,8 +448,8 @@ export class AvfVideo {
|
|
|
448
448
|
/**
|
|
449
449
|
* @returns {boolean}
|
|
450
450
|
*/
|
|
451
|
-
get
|
|
452
|
-
const ret = wasm.
|
|
451
|
+
get get_is_official() {
|
|
452
|
+
const ret = wasm.avfvideo_get_is_official(this.__wbg_ptr);
|
|
453
453
|
return ret !== 0;
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
@@ -1093,7 +1093,7 @@ export class EvfVideo {
|
|
|
1093
1093
|
get_level: this.get_level,
|
|
1094
1094
|
get_mode: this.get_mode,
|
|
1095
1095
|
get_is_completed: this.get_is_completed,
|
|
1096
|
-
|
|
1096
|
+
get_is_official: this.get_is_official,
|
|
1097
1097
|
get_is_fair: this.get_is_fair,
|
|
1098
1098
|
get_mine_num: this.get_mine_num,
|
|
1099
1099
|
get_player_designator: this.get_player_designator,
|
|
@@ -1261,8 +1261,8 @@ export class EvfVideo {
|
|
|
1261
1261
|
/**
|
|
1262
1262
|
* @returns {boolean}
|
|
1263
1263
|
*/
|
|
1264
|
-
get
|
|
1265
|
-
const ret = wasm.
|
|
1264
|
+
get get_is_official() {
|
|
1265
|
+
const ret = wasm.avfvideo_get_is_official(this.__wbg_ptr);
|
|
1266
1266
|
return ret !== 0;
|
|
1267
1267
|
}
|
|
1268
1268
|
/**
|
|
@@ -2053,7 +2053,7 @@ export class MvfVideo {
|
|
|
2053
2053
|
get_level: this.get_level,
|
|
2054
2054
|
get_mode: this.get_mode,
|
|
2055
2055
|
get_is_completed: this.get_is_completed,
|
|
2056
|
-
|
|
2056
|
+
get_is_official: this.get_is_official,
|
|
2057
2057
|
get_is_fair: this.get_is_fair,
|
|
2058
2058
|
get_mine_num: this.get_mine_num,
|
|
2059
2059
|
get_player_designator: this.get_player_designator,
|
|
@@ -2221,8 +2221,8 @@ export class MvfVideo {
|
|
|
2221
2221
|
/**
|
|
2222
2222
|
* @returns {boolean}
|
|
2223
2223
|
*/
|
|
2224
|
-
get
|
|
2225
|
-
const ret = wasm.
|
|
2224
|
+
get get_is_official() {
|
|
2225
|
+
const ret = wasm.avfvideo_get_is_official(this.__wbg_ptr);
|
|
2226
2226
|
return ret !== 0;
|
|
2227
2227
|
}
|
|
2228
2228
|
/**
|
|
@@ -2816,7 +2816,7 @@ export class RmvVideo {
|
|
|
2816
2816
|
get_level: this.get_level,
|
|
2817
2817
|
get_mode: this.get_mode,
|
|
2818
2818
|
get_is_completed: this.get_is_completed,
|
|
2819
|
-
|
|
2819
|
+
get_is_official: this.get_is_official,
|
|
2820
2820
|
get_is_fair: this.get_is_fair,
|
|
2821
2821
|
get_mine_num: this.get_mine_num,
|
|
2822
2822
|
get_player_designator: this.get_player_designator,
|
|
@@ -2984,8 +2984,8 @@ export class RmvVideo {
|
|
|
2984
2984
|
/**
|
|
2985
2985
|
* @returns {boolean}
|
|
2986
2986
|
*/
|
|
2987
|
-
get
|
|
2988
|
-
const ret = wasm.
|
|
2987
|
+
get get_is_official() {
|
|
2988
|
+
const ret = wasm.avfvideo_get_is_official(this.__wbg_ptr);
|
|
2989
2989
|
return ret !== 0;
|
|
2990
2990
|
}
|
|
2991
2991
|
/**
|
package/ms_toollib_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"collaborators": [
|
|
4
4
|
"eee555 <50390200+eee555@users.noreply.github.com>"
|
|
5
5
|
],
|
|
6
|
-
"version": "1.4.
|
|
6
|
+
"version": "1.4.7",
|
|
7
7
|
"files": [
|
|
8
8
|
"ms_toollib_bg.wasm",
|
|
9
9
|
"ms_toollib.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"ms_toollib.d.ts"
|
|
12
12
|
],
|
|
13
13
|
"module": "ms_toollib.js",
|
|
14
|
+
"homepage": "https://github.com/eee555/ms-toollib",
|
|
14
15
|
"types": "ms_toollib.d.ts",
|
|
15
16
|
"sideEffects": [
|
|
16
17
|
"./ms_toollib.js",
|