UNPKG
@zomlit/tsleague
Version:
latest (1.0.0)
1.0.0
RL wrapper in TypeScript
@zomlit/tsleague
/
dist
/
interfaces
/
RocketLeagueSegment.d.ts
16 lines
(15 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Stats
}
from
'./Stats'
;
export
interface
RocketLeagueSegment
{
type
:
string
;
stats
: { [
key
:
string
]:
Stats
; };
attributes
?: {
playlistId
?:
number
;
season
?:
number
; };
metadata
: {
name
:
string
; };
expiryDate
?:
string
; }