Without rotation on last mission Re #1103 Thanks to https://wiki.warframe.com/w/World_State/Example Reviewed-on: #2637 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
19 lines
405 B
TypeScript
19 lines
405 B
TypeScript
import { Types } from "mongoose";
|
|
|
|
export interface ILeaderboardEntryDatabase {
|
|
leaderboard: string;
|
|
ownerId: Types.ObjectId;
|
|
displayName: string;
|
|
score: number;
|
|
guildId?: Types.ObjectId;
|
|
expiry?: Date;
|
|
guildTier?: number;
|
|
}
|
|
|
|
export interface ILeaderboardEntryClient {
|
|
_id: string; // owner id
|
|
s: number; // score
|
|
r: number; // rank
|
|
n: string; // displayName
|
|
}
|