@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) • 650 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 DiscoverAction extends Action {
readonly ownerId: number;
readonly choices: readonly number[];
readonly chosen: readonly number[];
constructor(allCards: AllCardsService);
static create(newAction: any, allCards: AllCardsService): DiscoverAction;
update(entities: Map<number, Entity>): DiscoverAction;
enrichWithText(allEntitiesSoFar: Map<number, Entity>): DiscoverAction;
protected getInstance(): Action;
}