frontend
    Preparing search index...

    Interface SpadesPlayerData

    Spades player data with bid, scores, and bags.

    interface SpadesPlayerData {
        bags: number;
        bid: number;
        cardCount: number;
        cards: Card[];
        cumulativeScore: number;
        id: number;
        isHuman: boolean;
        roundScore: number;
        trickCount: number;
    }
    Index

    Properties

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