UNPKG

what-to-play

Version:

Score aggregator for lists of games

12 lines (11 loc) 327 B
export interface SteamResult { name: string; recentScore?: number; allTimeScore?: number; url: string; releaseDate: string; } /** * @param country 2-character country code defined by "ISO 3166-1 alpha-2" */ export declare function getData(game: string, country: string): Promise<SteamResult | undefined>;