@mtgame/core 0.1.32 → 0.1.33
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 +55 -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/football-statistic.js +28 -1
- package/esm5/models/football-statistic.js +56 -1
- package/fesm2015/mtgame-core.js +27 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +55 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/football-statistic.d.ts +7 -0
- package/package.json +1 -1
|
@@ -66,6 +66,13 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
|
|
|
66
66
|
autoGoalsAgainst: number;
|
|
67
67
|
get userMinutes(): string;
|
|
68
68
|
get tournamentTeamPoints(): number;
|
|
69
|
+
get tournamentTeamGamesCount(): number;
|
|
70
|
+
get tournamentTeamWonGamesCount(): number;
|
|
71
|
+
get tournamentTeamDrawGamesCount(): number;
|
|
72
|
+
get tournamentTeamLostGamesCount(): number;
|
|
73
|
+
get tournamentTeamScoreSum(): number;
|
|
74
|
+
get tournamentTeamMissedSum(): number;
|
|
75
|
+
get tournamentTeamPlusMinus(): number;
|
|
69
76
|
static toFront(data: any): any;
|
|
70
77
|
static toBack(data: any): any;
|
|
71
78
|
}
|