UNPKG

ddnet

Version:

A typescript npm package for interacting with data from ddnet.org

22 lines (21 loc) 485 B
import { Finish, RecentFinish } from '../other/Finish.js'; /** * Wrapper class for a player's first and recent finishes. */ export declare class Finishes { /** * The very first finish of this player. */ first: Finish; /** * The most recent finishes of this player. */ recent: RecentFinish[]; /** * Construct a new {@link Finishes} instance. */ constructor(data: { first: Finish; recent: RecentFinish[]; }); }