UNPKG
@idealic/poker-engine
Version:
alpha (0.1.3-alpha)
beta (0.2.2-beta)
latest (1.1.0)
1.1.0
1.0.0
0.2.5
0.2.4
0.2.3
0.2.2-beta
0.2.1-beta
0.2.0-beta
0.1.5-beta
0.1.4-beta
0.1.3-alpha
0.1.2-alpha
0.1.1-alpha
0.1.0-alpha
Poker game engine and hand evaluator
@idealic/poker-engine
/
src
/
Format.ts
8 lines
(6 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
JSON
as
JSON
Format }
from
'./formats/json'
;
import
{
Pokerstars
as
PokerstarsFormat
}
from
'./formats/pokerstars'
;
export
namespace
Format
{
export
const
JSON
=
JSON
Format;
export
const
Pokerstars
=
PokerstarsFormat
; }