UNPKG

@idealic/poker-engine

Version:

Poker game engine and hand evaluator

18 lines (17 loc) 583 B
// Export types export * from './Command.ts'; export { Format } from './Format.ts'; export { Game } from './Game.ts'; export * from './game/betting.ts'; export * from './game/croupier.ts'; export * from './game/dealer.ts'; export * from './game/evaluation.ts'; export * from './game/position.ts'; export * from './game/progress.ts'; export * from './game/showdown.ts'; export * from './game/stacks.ts'; export * from './game/validation.ts'; export { Hand, Hand as State } from './Hand.ts'; export { Stats } from './Stats.ts'; export * from './types.ts'; export const type = 'poker';