UNPKG

formula1.js

Version:
14 lines (13 loc) 390 B
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[]; }