SpaceNinjaServer/src/types/leaderboardTypes.ts

17 lines
353 B
TypeScript
Raw Normal View History

2025-03-24 14:17:07 +01:00
import { Types } from "mongoose";
2025-03-24 12:53:09 +01:00
export interface ILeaderboardEntryDatabase {
leaderboard: string;
2025-03-24 14:17:07 +01:00
accountId: Types.ObjectId;
2025-03-24 12:53:09 +01:00
displayName: string;
score: number;
expiry: Date;
}
export interface ILeaderboardEntryClient {
2025-03-24 14:17:07 +01:00
_id: string; // player id
2025-03-24 12:53:09 +01:00
s: number; // score
r: number; // rank
n: string; // displayName
}