@arcmantle/lit-jsx
    Preparing search index...

    Interface EventHandlerWithOptions<T, E, EHandler>

    interface EventHandlerWithOptions<
        T,
        E extends Event,
        EHandler = EventHandler<T, E>,
    > {
        capture?: boolean;
        handleEvent: EHandler;
        once?: boolean;
        passive?: boolean;
        signal?: AbortSignal;
    }

    Type Parameters

    Hierarchy

    • AddEventListenerOptions
      • EventHandlerWithOptions
    Index

    Properties

    capture?: boolean
    handleEvent: EHandler
    once?: boolean
    passive?: boolean
    signal?: AbortSignal