UNPKG

@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) 431 B
import { EntityDefinitionAttribute } from './entity-definition-attribute'; import { Map } from 'immutable'; export interface EntityDefinition { readonly id?: number; readonly cardID?: string; readonly playerID?: number; readonly name?: string; readonly tags: Map<string, number>; readonly attributes?: EntityDefinitionAttribute; readonly index?: number; readonly parentIndex?: number; }