@firestone-hs/replay-parser
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.
19 lines (18 loc) • 677 B
TypeScript
import { Map } from 'immutable';
import { Entity } from './entity';
import { PlayerEntity } from './player-entity';
import { Turn } from './turn';
export declare class Game {
readonly players: readonly PlayerEntity[];
readonly turns: Map<number, Turn>;
readonly fullStoryRaw: string;
readonly buildNumber: number;
readonly gameType: number;
readonly formatType: number;
readonly scenarioID: number;
readonly entitiesBeforeMulligan: Map<number, Entity>;
private constructor();
static createGame(baseGame: Game, newAttributes?: any): Game;
update(base: Game): Game;
getLatestParsedState(): Map<number, Entity>;
}