frontend
    Preparing search index...

    Interface BridgePlayerData

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

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