@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) • 687 B
TypeScript
import { Map } from 'immutable';
import { AllCardsService } from '../../services/all-cards.service';
import { Entity } from '../game/entity';
import { Action } from './action';
import { HasTargets } from './has-targets';
export declare class CardTargetAction extends Action implements HasTargets {
readonly originId: number;
readonly targetIds: readonly number[];
constructor(allCards: AllCardsService);
static create(newAction: any, allCards: AllCardsService): CardTargetAction;
update(entities: Map<number, Entity>): CardTargetAction;
enrichWithText(allEntitiesSoFar: Map<number, Entity>): CardTargetAction;
protected getInstance(): Action;
}