formula1.js
Version:
Formula 1 Ergast API Wrapper
18 lines (17 loc) • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Standing = void 0;
class Standing {
constructor(s, data) {
this.position = parseInt(data.position);
this.points = parseFloat(data.points);
this.wins = parseInt(data.wins);
this.standings = s;
}
standings;
position;
points;
wins;
team;
}
exports.Standing = Standing;