UNPKG
football-scoreboard
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A live football World Cup scoreboard library.
football-scoreboard
/
dist
/
match.d.ts
10 lines
(9 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
class
Match
{
homeTeam
:
string
;
awayTeam
:
string
;
homeScore
:
number
;
awayScore
:
number
;
startTime
:
number
;
constructor
(
homeTeam
:
string
,
awayTeam
:
string
);
updateScore
(
newHomeScore
:
number
,
newAwayScore
:
number
):
void
; }