/** * Static class to represent the result of a hand */ declare class HandResult { static BancoWins: HandResult; static PuntoWins: HandResult; static Tie: HandResult; static isOpposite(foo: HandResult, bar: HandResult): boolean; static isIdentical(foo: HandResult, bar: HandResult): boolean; static getOpposite(foo: HandResult): HandResult; private _result; /** * * @param {number} code 0 tie, 1 banco wins, -1 punto wins */ constructor(code: number); } export default HandResult;