SpaceNinjaServer/src/types/leaderboardTypes.ts

16 lines
311 B
TypeScript
Raw Normal View History

2025-03-24 12:53:09 +01:00
import { IOid } from "./commonTypes";
export interface ILeaderboardEntryDatabase {
leaderboard: string;
displayName: string;
score: number;
expiry: Date;
}
export interface ILeaderboardEntryClient {
_id: IOid;
s: number; // score
r: number; // rank
n: string; // displayName
}