SpaceNinjaServer/src/types/leaderboardTypes.ts
2025-03-24 14:25:52 +01:00

17 lines
353 B
TypeScript

import { Types } from "mongoose";
export interface ILeaderboardEntryDatabase {
leaderboard: string;
accountId: Types.ObjectId;
displayName: string;
score: number;
expiry: Date;
}
export interface ILeaderboardEntryClient {
_id: string; // player id
s: number; // score
r: number; // rank
n: string; // displayName
}