UNPKG

formula1.js

Version:
15 lines (14 loc) 393 B
import { year } from '../../Types'; import { GrandPrix } from './GrandPrix'; import { Session } from './Session'; export declare class Schedule { constructor(year: year); pop(): Promise<Schedule>; private year; initialized: boolean; season: number; rounds: GrandPrix[]; getAllSessions(): Session[]; findNextSession(): Session; findLastSession(): Session; }