volleyballsimtypes 0.0.180 → 0.0.181
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.
|
@@ -9,9 +9,9 @@ interface MatchParams {
|
|
|
9
9
|
readonly scheduledDate: Date;
|
|
10
10
|
readonly sets: MatchSet[];
|
|
11
11
|
readonly status: StatusEnum;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
homeScore?: number;
|
|
13
|
+
awayScore?: number;
|
|
14
|
+
winner?: Team;
|
|
15
15
|
}
|
|
16
16
|
export declare enum MatchScore {
|
|
17
17
|
'3-0' = "3-0",
|
|
@@ -28,9 +28,9 @@ export declare class Match {
|
|
|
28
28
|
readonly awayTeam: Team;
|
|
29
29
|
readonly sets: MatchSet[];
|
|
30
30
|
readonly scheduledDate: Date;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
homeScore?: number;
|
|
32
|
+
awayScore?: number;
|
|
33
|
+
winner?: Team;
|
|
34
34
|
status: StatusEnum;
|
|
35
35
|
constructor({ id, homeTeam, awayTeam, scheduledDate, sets, status, homeScore, awayScore, winner }: MatchParams);
|
|
36
36
|
addSet(set: MatchSet): void;
|
|
@@ -9,9 +9,9 @@ interface MatchParams {
|
|
|
9
9
|
readonly scheduledDate: Date;
|
|
10
10
|
readonly sets: MatchSet[];
|
|
11
11
|
readonly status: StatusEnum;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
homeScore?: number;
|
|
13
|
+
awayScore?: number;
|
|
14
|
+
winner?: Team;
|
|
15
15
|
}
|
|
16
16
|
export declare enum MatchScore {
|
|
17
17
|
'3-0' = "3-0",
|
|
@@ -28,9 +28,9 @@ export declare class Match {
|
|
|
28
28
|
readonly awayTeam: Team;
|
|
29
29
|
readonly sets: MatchSet[];
|
|
30
30
|
readonly scheduledDate: Date;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
homeScore?: number;
|
|
32
|
+
awayScore?: number;
|
|
33
|
+
winner?: Team;
|
|
34
34
|
status: StatusEnum;
|
|
35
35
|
constructor({ id, homeTeam, awayTeam, scheduledDate, sets, status, homeScore, awayScore, winner }: MatchParams);
|
|
36
36
|
addSet(set: MatchSet): void;
|