frontend
    Preparing search index...

    Interface MemoryBoardCard

    A card on the Memory game board.

    interface MemoryBoardCard {
        card: Card | null;
        faceUp: boolean;
        taken: boolean;
    }
    Index

    Properties

    Properties

    card: Card | null
    faceUp: boolean
    taken: boolean