import { UciMove } from "../types"; import InfoAttr from "./InfoAttr"; export default class RefutationInfoAttr extends InfoAttr { /** The refutation move list. */ readonly moves: UciMove[]; constructor( /** The refutation move list. */ moves: UciMove[]); }