import { UciMove } from "../types"; import InfoAttr from "./InfoAttr"; export default class CurrentMoveInfoAttr extends InfoAttr { /** The current move. */ readonly move: UciMove; constructor( /** The current move. */ move: UciMove); }