frontend
    Preparing search index...

    Interface CribbagePlayerData

    Cribbage player data with scores.

    interface CribbagePlayerData {
        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