ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
17 lines (16 loc) • 513 B
TypeScript
export type Leaderboard = {
collection: 'leaderboard';
format: {
character_id: string;
value: string;
rank: string;
};
paths: 'character_id' | 'value' | 'rank';
partialPaths: 'character_id' | 'value' | 'rank';
conditions: {
name: 'Deaths' | 'Kills' | 'Score' | 'Time';
period: 'Forever' | 'Monthly' | 'Weekly' | 'Daily' | 'OneLife';
world: string;
};
resolve: 'character' | 'world' | 'character_name' | 'characters_stat_history';
};