Uneventful
    Preparing search index...

    Function fromDomEvent

    • Create an event source from an element, window, or other event target

      You can manually override the expected event type using a type parameter, e.g. fromDomEvent<CustomEvent>(someTarget, "custom-event").

      Type Parameters

      • T extends HTMLElement
      • K extends keyof HTMLElementEventMap

      Parameters

      • target: T

        an HTMLElement, Window, Document, or other EventTarget.

      • type: K

        the name of the event to add a listener for

      • Optionaloptions: boolean | AddEventListenerOptions

        a boolean capture option, or an object of event listener options

      Returns Source<HTMLElementEventMap[K]>

      a source that can be subscribed or piped, issuing events from the target of the specified type.

    • Create an event source from an element, window, or other event target

      You can manually override the expected event type using a type parameter, e.g. fromDomEvent<CustomEvent>(someTarget, "custom-event").

      Type Parameters

      • T extends Window
      • K extends keyof WindowEventMap

      Parameters

      • target: T

        an HTMLElement, Window, Document, or other EventTarget.

      • type: K

        the name of the event to add a listener for

      • Optionaloptions: boolean | AddEventListenerOptions

        a boolean capture option, or an object of event listener options

      Returns Source<WindowEventMap[K]>

      a source that can be subscribed or piped, issuing events from the target of the specified type.

    • Create an event source from an element, window, or other event target

      You can manually override the expected event type using a type parameter, e.g. fromDomEvent<CustomEvent>(someTarget, "custom-event").

      Type Parameters

      • T extends Document
      • K extends keyof DocumentEventMap

      Parameters

      • target: T

        an HTMLElement, Window, Document, or other EventTarget.

      • type: K

        the name of the event to add a listener for

      • Optionaloptions: boolean | AddEventListenerOptions

        a boolean capture option, or an object of event listener options

      Returns Source<DocumentEventMap[K]>

      a source that can be subscribed or piped, issuing events from the target of the specified type.

    • Create an event source from an element, window, or other event target

      You can manually override the expected event type using a type parameter, e.g. fromDomEvent<CustomEvent>(someTarget, "custom-event").

      Type Parameters

      • T extends Event

      Parameters

      • target: EventTarget

        an HTMLElement, Window, Document, or other EventTarget.

      • type: string

        the name of the event to add a listener for

      • Optionaloptions: boolean | AddEventListenerOptions

        a boolean capture option, or an object of event listener options

      Returns Source<T>

      a source that can be subscribed or piped, issuing events from the target of the specified type.