Interface ListenerEvent<T>

interface ListenerEvent<T> {
    source: T;
    transactional: boolean;
    type: string;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

source: T

The source of the ListenerEvent

transactional: boolean

If the event is being fired from within a transaction.

type: string