UNPKG
holdem-poker
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
0.0.1
Javascript Holdem Poker Engine
github.com/thekoushik/holdem-poker
thekoushik/holdem-poker
holdem-poker
/
dist
/
Card.d.ts
10 lines
(9 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
const
Suits
: { [
s
:
string
]:
string
; };
export
declare
type
Suit
= keyof
typeof
Suits
;
export
declare
class
Card
{
suit
:
Suit
;
value
:
number
;
constructor
(
suit
:
Suit
|
string
,
value
:
number
); }