formula1.js
Version:
Formula 1 Ergast API Wrapper
20 lines (19 loc) • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Standings = void 0;
class Standings {
constructor(year, round, limit) {
this.year = year;
this.round = round;
this.limit = limit;
}
pop;
year;
round;
limit;
initialized = false;
season;
completedRounds;
standings;
}
exports.Standings = Standings;