@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) • 684 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 MulliganCardAction extends Action {
readonly playerMulligan: readonly number[];
readonly opponentMulligan: readonly number[];
constructor(allCards: AllCardsService);
static create(newAction: any, allCards: AllCardsService): MulliganCardAction;
update(entities: Map<number, Entity>): MulliganCardAction;
enrichWithText(allEntitiesSoFar: Map<number, Entity>): MulliganCardAction;
private buildMulliganText;
protected getInstance(): Action;
}