@mtgame/core 0.1.127 → 0.1.128

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.
@@ -26,6 +26,8 @@ export declare class RugbyGameStatistic extends BaseModel implements GameStatist
26
26
  carriesOverGainline: number;
27
27
  footFieldShots: number;
28
28
  footOutShots: number;
29
+ fouls: number;
30
+ teamFouls: number;
29
31
  gameTime: number;
30
32
  plusMinus: number;
31
33
  updatedAt: Date;
@@ -33,6 +35,7 @@ export declare class RugbyGameStatistic extends BaseModel implements GameStatist
33
35
  get gameMinutes(): number;
34
36
  get totalGoals(): number;
35
37
  get footShots(): number;
38
+ get totalFouls(): number;
36
39
  static toFront(data: any): any;
37
40
  static toBack(data: any): any;
38
41
  }
@@ -82,6 +82,7 @@ export declare class RugbyStatistic extends BaseModel implements BaseStatistic {
82
82
  fouls: number;
83
83
  teamFouls: number;
84
84
  get userMinutes(): string;
85
+ get totalFouls(): number;
85
86
  static toFront(data: any): any;
86
87
  static toBack(data: any): any;
87
88
  }