frontend
    Preparing search index...

    Interface CanastaPlayerData

    Canasta player data with melds and red 3s.

    interface CanastaPlayerData {
        cardCount: number;
        cards: Card[];
        cumulativeScore: number;
        hasCanasta: boolean;
        hasInitMeld: boolean;
        id: number;
        isHuman: boolean;
        melds: CanastaMeldData[];
        red3Count: number;
        red3s: Card[];
        roundScore: number;
    }
    Index

    Properties

    cardCount: number
    cards: Card[]
    cumulativeScore: number
    hasCanasta: boolean
    hasInitMeld: boolean
    id: number
    isHuman: boolean
    red3Count: number
    red3s: Card[]
    roundScore: number