UNPKG

formula1.js

Version:
18 lines (17 loc) 411 B
"use strict"; 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;