frontend
    Preparing search index...

    Interface IndianPokerPlayerOutput

    Indian Poker player data with card, chips, and betting status.

    interface IndianPokerPlayerOutput {
        allIn: boolean;
        card: Card | null;
        cardRank: number;
        chips: number;
        currentBet: number;
        folded: boolean;
        id: number;
        isHuman: boolean;
        playStyleName: string;
    }
    Index

    Properties

    allIn: boolean
    card: Card | null
    cardRank: number
    chips: number
    currentBet: number
    folded: boolean
    id: number
    isHuman: boolean
    playStyleName: string