@mtgame/core 0.1.53 → 0.1.55

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.
@@ -1,5 +1,5 @@
1
1
  import { BaseModel } from './util';
2
- import { GameTimeTypes, OvertimeTypes } from './tournament';
2
+ import { GameTimeTypes, OvertimeTypes, RugbyStatisticTypes } from './tournament';
3
3
  export declare class RugbyGameConfig extends BaseModel {
4
4
  periodsCount: number;
5
5
  periodTime: number;
@@ -10,6 +10,7 @@ export declare class RugbyGameConfig extends BaseModel {
10
10
  gameTimeType: GameTimeTypes;
11
11
  substituteCount: number;
12
12
  freeSubstituteEnabled: boolean;
13
+ statisticType: RugbyStatisticTypes;
13
14
  get penaltyPeriod(): number;
14
15
  static toFront(data: any): any;
15
16
  static toBack(data: any): any;
@@ -30,6 +30,10 @@ export declare enum VolleyballStatisticTypes {
30
30
  light = 2,
31
31
  advanced = 3
32
32
  }
33
+ export declare enum RugbyStatisticTypes {
34
+ light = 1,
35
+ standard = 2
36
+ }
33
37
  export declare enum GameTimeTypes {
34
38
  clean = 1,
35
39
  dirty = 2