@mtgame/core 0.1.33 → 0.1.34
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/bundles/mtgame-core.umd.js +7 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/volleyball-statistic.js +4 -1
- package/esm5/models/volleyball-statistic.js +8 -1
- package/fesm2015/mtgame-core.js +3 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +7 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/volleyball-statistic.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4925,6 +4925,13 @@
|
|
|
4925
4925
|
enumerable: true,
|
|
4926
4926
|
configurable: true
|
|
4927
4927
|
});
|
|
4928
|
+
Object.defineProperty(VolleyballStatistic.prototype, "totalReceives", {
|
|
4929
|
+
get: function () {
|
|
4930
|
+
return this.receives + this.excellentReceives;
|
|
4931
|
+
},
|
|
4932
|
+
enumerable: true,
|
|
4933
|
+
configurable: true
|
|
4934
|
+
});
|
|
4928
4935
|
VolleyballStatistic.toFront = function (data) { };
|
|
4929
4936
|
VolleyballStatistic.toBack = function (data) { };
|
|
4930
4937
|
__decorate([
|