UNPKG

@firestone-hs/replay-parser

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.

16 lines (15 loc) 768 B
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 AttachingEnchantmentAction extends Action implements HasTargets { readonly originId: number; readonly enchantmentCardId: string; readonly targetIds: readonly number[]; constructor(allCards: AllCardsService); static create(newAction: any, allCards: AllCardsService): AttachingEnchantmentAction; update(entities: Map<number, Entity>): AttachingEnchantmentAction; enrichWithText(allEntitiesSoFar: Map<number, Entity>): AttachingEnchantmentAction; protected getInstance(): Action; }