@tamb/gamegrid
    Preparing search index...

    Interface IGameGridEventDetail

    CustomEvent.detail for every bubbling grid DOM event constructed by the internal fireGameGridEvent helper used in GameGrid.

    All built-in emits pass only gameGridInstance; the index signature reserves space for callers who forward extra fields via that helper's data argument.

    interface IGameGridEventDetail {
        gameGridInstance: IGameGrid;
        [key: string]: unknown;
    }

    Hierarchy

    • Record<string, unknown>
      • IGameGridEventDetail

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    gameGridInstance: IGameGrid

    The emitting grid (this inside GameGrid).