@mtgame/core 0.2.109 → 0.2.110

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/models/game.d.ts CHANGED
@@ -48,6 +48,22 @@ export declare class TournamentTeamShort extends BaseModel {
48
48
  static toFront(data: any): any;
49
49
  static toBack(data: any): any;
50
50
  }
51
+ export declare class MhlCarouselTeam extends BaseModel {
52
+ team: Team;
53
+ tournamentTeam: TournamentTeamShort;
54
+ score: number;
55
+ scoreByPeriod: {
56
+ [key: string]: number;
57
+ };
58
+ static toFront(data: any): any;
59
+ static toBack(data: any): any;
60
+ }
61
+ export declare class MhlCarousel extends BaseModel {
62
+ gameIds: number[];
63
+ teams: MhlCarouselTeam;
64
+ static toFront(data: any): any;
65
+ static toBack(data: any): any;
66
+ }
51
67
  export declare class Game extends BaseModel {
52
68
  private _basketballGameConfig;
53
69
  private _volleyballGameConfig;
@@ -90,6 +106,7 @@ export declare class Game extends BaseModel {
90
106
  tournament: Tournament;
91
107
  tournamentGroup: TournamentGroup;
92
108
  additionalData: GameAdditionalData;
109
+ mhlCarousel: MhlCarousel;
93
110
  get basketballGameConfig(): BasketballGameConfig;
94
111
  set basketballGameConfig(value: BasketballGameConfig);
95
112
  get volleyballGameConfig(): VolleyballGameConfig;