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