@firestone-hs/replay-parser
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.
15 lines (14 loc) • 652 B
TypeScript
import { Map } from 'immutable';
import { AllCardsService } from '../../services/all-cards.service';
import { Entity } from '../game/entity';
import { Action } from './action';
export declare class EndGameAction extends Action {
readonly winStatus: readonly [number, number][];
readonly entityId: number;
readonly opponentId: number;
constructor(allCards: AllCardsService);
static create(newAction: any, allCards: AllCardsService): EndGameAction;
update(entities: Map<number, Entity>): EndGameAction;
enrichWithText(allEntitiesSoFar: Map<number, Entity>): EndGameAction;
protected getInstance(): Action;
}