@firestone-hs/replay-parser
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.
10 lines (9 loc) • 476 B
TypeScript
import { EntityDefinition } from '../parser/entity-definition';
import { HistoryItem } from './history-item';
export declare class PlayerHistoryItem extends HistoryItem {
readonly entityDefintion: EntityDefinition;
readonly accountHi: string;
readonly accountLo: string;
readonly isMainPlayer: boolean;
constructor(entityDefintion: EntityDefinition, accountHi: string, accountLo: string, isMainPlayer: string, timestamp: number, index: number);
}