UNPKG

what-to-play

Version:

Score aggregator for lists of games

11 lines (10 loc) 277 B
export interface HowLongToBeatResult { name: string; times: { mainStory?: number; mainPlusExtra?: number; completionist?: number; }; url: string; } export declare function getData(game: string): Promise<HowLongToBeatResult | undefined>;