@mtgame/core 0.1.29 → 0.1.30
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 +35 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +2 -2
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/base-statistic.js +1 -1
- package/esm2015/models/basketball-statistic.js +4 -1
- package/esm2015/models/football-statistic.js +4 -1
- package/esm2015/models/handball-statistic.js +4 -1
- package/esm2015/models/hockey-statistic.js +4 -1
- package/esm2015/models/volleyball-statistic.js +4 -1
- package/esm5/models/base-statistic.js +1 -1
- package/esm5/models/basketball-statistic.js +8 -1
- package/esm5/models/football-statistic.js +8 -1
- package/esm5/models/handball-statistic.js +8 -1
- package/esm5/models/hockey-statistic.js +8 -1
- package/esm5/models/volleyball-statistic.js +8 -1
- package/fesm2015/mtgame-core.js +15 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +35 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/base-statistic.d.ts +1 -0
- package/models/basketball-statistic.d.ts +1 -0
- package/models/football-statistic.d.ts +1 -0
- package/models/handball-statistic.d.ts +1 -0
- package/models/hockey-statistic.d.ts +1 -0
- package/models/volleyball-statistic.d.ts +1 -0
- package/package.json +1 -1
|
@@ -45,6 +45,7 @@ export declare class BasketballStatistic extends BaseModel implements BaseStatis
|
|
|
45
45
|
rank: number;
|
|
46
46
|
get totalFouls(): number;
|
|
47
47
|
get gameMinutes(): number;
|
|
48
|
+
get tournamentTeamPoints(): number;
|
|
48
49
|
static toFront(data: any): any;
|
|
49
50
|
static toBack(data: any): any;
|
|
50
51
|
}
|
|
@@ -65,6 +65,7 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
|
|
|
65
65
|
autoGoals: number;
|
|
66
66
|
autoGoalsAgainst: number;
|
|
67
67
|
get userMinutes(): string;
|
|
68
|
+
get tournamentTeamPoints(): number;
|
|
68
69
|
static toFront(data: any): any;
|
|
69
70
|
static toBack(data: any): any;
|
|
70
71
|
}
|
|
@@ -66,6 +66,7 @@ export declare class HockeyStatistic extends BaseModel implements BaseStatistic
|
|
|
66
66
|
get assists(): number;
|
|
67
67
|
get userMinutes(): string;
|
|
68
68
|
get gamesWonPercent(): number;
|
|
69
|
+
get tournamentTeamPoints(): number;
|
|
69
70
|
static toFront(data: any): any;
|
|
70
71
|
static toBack(data: any): any;
|
|
71
72
|
}
|
|
@@ -42,6 +42,7 @@ export declare class VolleyballStatistic extends BaseModel implements BaseStatis
|
|
|
42
42
|
serveReceivePercent: number;
|
|
43
43
|
points: number;
|
|
44
44
|
faults: number;
|
|
45
|
+
get tournamentTeamPoints(): number;
|
|
45
46
|
static toFront(data: any): any;
|
|
46
47
|
static toBack(data: any): any;
|
|
47
48
|
}
|