frontend
    Preparing search index...

    Interface HeartsPlayerData

    Hearts player data with scores and trick count.

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

    Properties

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