Hilo3d API - v2.0.0
    Preparing search index...

    Interface DispatchEvent

    The minimum shape accepted by the event system. Domain-specific events can add their own fields without weakening the dispatcher API.

    interface DispatchEvent {
        _stopped?: boolean;
        detail?: unknown;
        stopImmediatePropagation?: () => void;
        target?: unknown;
        type: string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    _stopped?: boolean
    detail?: unknown
    stopImmediatePropagation?: () => void
    target?: unknown
    type: string