claudijo / poker-ts

Texas Hold 'Em Poker table model with convenience features for running real games

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Types are not export whi

pop-srw opened this issue · comments

The defined types in the library are not exported, which results in an inability to import these types from the library in external projects.

This issue prevents developers from using type definitions provided by the library, leading to potential type safety issues and reduced usability.

May be this may help developer to import types.

export type Card = {
    rank: '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'T' | 'J' | 'Q' | 'K' | 'A'
    suit: 'clubs' | 'diamonds' | 'hearts' | 'spades'
}

export type AutomaticAction = 'fold' | 'check/fold' | 'check' | 'call' | 'call any' | 'all-in'
export type Action = 'fold' | 'check' | 'call' | 'bet' | 'raise'

Thanks for reporting this. Fixed in v1.3.0.