UNPKG

what-to-play

Version:

Score aggregator for lists of games

7 lines (6 loc) 165 B
export interface GogResult { name: string; score?: number; url: string; } export declare function getData(game: string): Promise<GogResult | undefined>;