@pokerland/utils
Version:
General Poker Utils
14 lines (9 loc) • 586 B
TypeScript
import { HandActionList, ActionType, Position, Street, Card } from '@pokerland/types';
declare const isNewStreet: (actionList: HandActionList, actionIdx: number) => boolean;
declare const actionRequiresAmount: (actionType: ActionType) => boolean;
declare const positions: (numberPlayersSeated: number) => Position[];
declare function formatCurrency(amount: number, currency?: string): string;
declare const streetList: Street[];
declare const cardList: Card[];
declare const a = "a";
export { a, actionRequiresAmount, cardList, formatCurrency, isNewStreet, positions, streetList };