UNPKG
@rapidthenerd/ergast-ts
Version:
latest (1.2.1)
1.2.1
1.2.0
1.0.2
Node wrapper for Ergast API
github.com/Eros/Ergast-TS
Eros/Ergast-TS
@rapidthenerd/ergast-ts
/
src
/
interface
/
PitStopData.ts
10 lines
(9 loc)
•
253 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
CircuitData
}
from
"./CircuitData"
;
import
{
PitStopEntry
}
from
"./PitStopEntry"
;
export
interface
PitStopData
{
season
:
string
|
number
,
round
:
number
,
stop
:
number
,
circuit
:
CircuitData
,
totalStops
:
PitStopEntry
[] }