UNPKG

@firestone-hs/replay-parser

Version:

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

9 lines (8 loc) 259 B
import { Action } from '../action/action'; export declare abstract class Turn { readonly turn: string; readonly timestamp: number; readonly index: number; readonly actions: readonly Action[]; abstract update(newTurn: any): Turn; }