UNPKG

koobor-sdk

Version:
8 lines (7 loc) 284 B
import { GameRepository } from "../GameRepository"; import { Game } from "../../gaming/Game"; export declare class InMemoryGameRepository implements GameRepository { private readonly games; constructor(games: Map<string, Game>); findByName(name: string): Promise<Game>; }