@firestone-hs/replay-parser
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.
13 lines (12 loc) • 574 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 OptionsAction extends Action {
readonly options: readonly number[];
constructor(allCards: AllCardsService);
static create(newAction: any, allCards: AllCardsService): OptionsAction;
update(entities: Map<number, Entity>): OptionsAction;
enrichWithText(allEntitiesSoFar: Map<number, Entity>): OptionsAction;
protected getInstance(): Action;
}