Interface ILeaderboardService

interface ILeaderboardService {
    all(tag: string, count: number): Promise<LeaderboardEntry[]>;
    daily(tag: string, count: number): Promise<LeaderboardEntry[]>;
    list(name: string, count: number): Promise<LeaderboardEntry[]>;
    weekly(tag: string, count: number): Promise<LeaderboardEntry[]>;
}

Methods