Type alias EventInternalData
Event
Internal
Data
: { type
: string; bubbles
: boolean; cancelable
: boolean; composed
: boolean; timeStamp
: number; target
: EventTarget | null; currentTarget
: EventTarget | null; stopPropagationFlag
: boolean; stopImmediatePropagationFlag
: boolean; canceledFlag
: boolean; inPassiveListenerFlag
: boolean; dispatchFlag
: boolean; }
Type declaration
-
Readonly
type: string
-
Readonly
bubbles: boolean
-
Readonly
cancelable: boolean
-
Readonly
composed: boolean
-
Readonly
timeStamp: number
-
-
-
stopPropagationFlag: boolean
-
stopImmediatePropagationFlag: boolean
-
canceledFlag: boolean
-
inPassiveListenerFlag: boolean
-
dispatchFlag: boolean
Property
The type of event.
Property
Indicates if the event bubbles.
Property
Indicates if the event is cancelable.
Property
Indicates if the event can cross the shadow boundary.
Property
The time when the event was created.
Property
The target of the event.
Property
The current target of the event.
Property
Indicates if the event propagation is stopped.
Property
Indicates if the event immediate propagation is stopped.
Property
Indicates if the event is canceled.
Property
Indicates if the event is in a passive listener.
Property
Indicates if the event is being dispatched.