Skip to content

Commit

Permalink
fix(scoreboard): actually adding line scores
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSCar committed Sep 6, 2024
1 parent c783a5a commit 6ea9ce9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/games/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@ export interface ScoreboardGame {
* @isInt
*/
points: number | null;
/**
* @isInt
*/
lineScore: number[] | null;
};
awayTeam: {
/**
Expand All @@ -324,6 +328,10 @@ export interface ScoreboardGame {
* @isInt
*/
points: number | null;
/**
* @isInt
*/
lineScore: number[] | null;
};
weather: {
temperature: number | null;
Expand Down

0 comments on commit 6ea9ce9

Please sign in to comment.