formula1.js
Version:
Formula 1 Ergast API Wrapper
14 lines (13 loc) • 390 B
TypeScript
import { year } from '../../Types';
import { Standing } from './Standing';
export declare class Standings {
constructor(year: year, round?: number, limit?: number);
pop: () => Promise<Standings>;
protected year: year;
protected round: number;
protected limit: year;
initialized: boolean;
season: number;
completedRounds: number;
standings: Standing[];
}