frontend
    Preparing search index...

    Interface DoubtPlayerData

    Doubt player data with card count and finish status.

    interface DoubtPlayerData {
        cardCount: number;
        cards: Card[];
        id: number;
        isFinished: boolean;
        isHuman: boolean;
    }
    Index

    Properties

    cardCount: number
    cards: Card[]
    id: number
    isFinished: boolean
    isHuman: boolean