sprunk-engine
    Preparing search index...

    The class can be used to add observers to an event and emit the event with data of type T (generic).

    Type Parameters

    • T
    Index

    Constructors

    Methods

    • Adds an observer to the Event instance. The observer will be called when the event is emitted.

      Parameters

      • observer: (data: T) => void

      Returns void

    • Emits the event with the given data. All observers will be called with the data.

      Parameters

      • data: T

      Returns void

    • Removes an observer from the Event instance. The observer will no longer be called when the event is emitted.

      Parameters

      • observer: (data: T) => void

      Returns void