frontend
    Preparing search index...

    Interface GolfCard

    A card in the Golf tableau with removal and exposure status.

    interface GolfCard {
        card: Card | null;
        exposed: boolean;
        removed: boolean;
    }
    Index

    Properties

    Properties

    card: Card | null
    exposed: boolean
    removed: boolean