Interface IEventListener

interface IEventListener {
    boundCb: (() => void);
    cb: (() => void);
    emitter: object;
    event: string;
    subscriptionHandler: SubscriptionHandler;
}

Properties

boundCb: (() => void)

Type declaration

    • (): void
    • Returns void

cb: (() => void)

Type declaration

    • (): void
    • Returns void

emitter: object
event: string
subscriptionHandler: SubscriptionHandler

Generated using TypeDoc