frontend
    Preparing search index...

    Interface ActionLogEntry

    A single entry in the game action log.

    interface ActionLogEntry {
        actionType: string;
        cards?: Card[];
        detail: string;
        playerIdx: number;
        turnNumber: number;
    }
    Index

    Properties

    actionType: string
    cards?: Card[]
    detail: string
    playerIdx: number
    turnNumber: number