UNPKG

bacsim

Version:
12 lines (11 loc) 403 B
declare class HandResult { static BankerWins: HandResult; static PlayerWins: 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; constructor(code: number); } export default HandResult;