@ac-essentials/misc-util
    Preparing search index...

    Type Alias EventDispatcherSubscribeOptions

    type EventDispatcherSubscribeOptions = {
        once?: boolean;
        priority?: number;
    }
    Index

    Properties

    Properties

    once?: boolean

    If true, the listener will be automatically unsubscribed after being called once.

    Default is false.

    priority?: number

    Optional priority used to order listeners when events are dispatched.

    Higher values are invoked before lower values. Listeners with the same priority are invoked in the order they were registered.

    Default is 0.