import { UciMove } from "./types"; import ClientCommand from "./ClientCommand"; export default class BestMoveCommand extends ClientCommand { /** The best move. */ readonly move: UciMove; /** The ponder move. */ readonly ponder?: string; constructor( /** The best move. */ move: UciMove, /** The ponder move. */ ponder?: string); }