import { UciMove } from "../types"; import InfoAttr from "./InfoAttr"; export default class CurrLineInfoAttr extends InfoAttr { /** The cpui number calculating this line. */ readonly cpuIndices: number[]; /** The line being calculated. */ readonly moves: UciMove[]; constructor( /** The cpui number calculating this line. */ cpuIndices: number[], /** The line being calculated. */ moves: UciMove[]); }