frontend
    Preparing search index...

    Interface EuchrePlayerData

    Euchre player data with team, trick count, and hand.

    interface EuchrePlayerData {
        cardCount: number;
        cards: Card[];
        id: number;
        isHuman: boolean;
        team: number;
        trickCount: number;
    }
    Index

    Properties

    cardCount: number
    cards: Card[]
    id: number
    isHuman: boolean
    team: number
    trickCount: number