@mtgame/core 0.0.23 → 0.0.24
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 +22 -1
- 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/hockey-game-statistic.js +11 -2
- package/esm5/models/hockey-game-statistic.js +23 -2
- package/fesm2015/mtgame-core.js +10 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +22 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/hockey-game-statistic.d.ts +3 -0
- package/package.json +1 -1
|
@@ -31,6 +31,9 @@ export declare class HockeyGameStatistic extends BaseModel implements GameStatis
|
|
|
31
31
|
plusMinus: number;
|
|
32
32
|
updatedAt: Date;
|
|
33
33
|
get id(): number;
|
|
34
|
+
get shotsOnGoal(): number;
|
|
35
|
+
get shotsBlocked(): number;
|
|
36
|
+
get shotMisses(): number;
|
|
34
37
|
get ppShots(): number;
|
|
35
38
|
get evShots(): number;
|
|
36
39
|
get shShots(): number;
|