frontend
    Preparing search index...

    Interface GoFishPlayerData

    Go Fish player data with hand, book count, and completed books.

    interface GoFishPlayerData {
        bookCount: number;
        books: GoFishBook[];
        cardCount: number;
        cards: Card[];
        id: number;
        isHuman: boolean;
    }
    Index

    Properties

    bookCount: number
    books: GoFishBook[]
    cardCount: number
    cards: Card[]
    id: number
    isHuman: boolean