frontend
    Preparing search index...

    Interface GinRummyPlayerData

    Gin Rummy player data with scores.

    interface GinRummyPlayerData {
        cardCount: number;
        cards: Card[];
        cumulativeScore: number;
        id: number;
        isHuman: boolean;
        roundScore: number;
    }
    Index

    Properties

    cardCount: number
    cards: Card[]
    cumulativeScore: number
    id: number
    isHuman: boolean
    roundScore: number