formula1.js
Version:
Formula 1 Ergast API Wrapper
17 lines (16 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Constructor = void 0;
class Constructor {
constructor(s, data) {
this.id = data.constructorId;
this.name = data.name;
this.nationality = data.nationality;
this.standing = s;
}
standing;
id;
name;
nationality;
}
exports.Constructor = Constructor;