ddnet
Version:
A typescript npm package for interacting with data from ddnet.org
21 lines • 441 B
JavaScript
/**
* Wrapper class for a player's first and recent finishes.
*/
export class Finishes {
/**
* The very first finish of this player.
*/
first;
/**
* The most recent finishes of this player.
*/
recent;
/**
* Construct a new {@link Finishes} instance.
*/
constructor(data) {
this.first = data.first;
this.recent = data.recent;
}
}
//# sourceMappingURL=Finishes.js.map