EventsOnMethod: (<E>(event: E, listener: EventsListeners[E]) => (() => void))

Type declaration

    • <E>(event: E, listener: EventsListeners[E]): (() => void)
    • Method to call to use the EventsFeature.

      Returns

      off function which may be called to remove the event listener and unsubscribe from events.

      As with all event listeners, be careful to avoid memory leaks.

      Type Parameters

      Parameters

      • event: E

        Event type to listen for. change is the only event type.

      • listener: EventsListeners[E]

        Function that will be called when an event of the type is emitted.

      Returns (() => void)

        • (): void
        • Returns void

Generated using TypeDoc