Skip to main content
Module

x/denoversion/lib/lib.deno_runtime.d.ts>event.Event

Deno cli to manage and bump release versions.
Latest
class event.Event
implements [domTypes.Event]
import { event } from "https://deno.land/x/denoversion@v1.0.2/lib/lib.deno_runtime.d.ts";
const { Event } = event;

Constructors

new
Event(type: string, eventInitDict?: domTypes.EventInit)

Properties

private
_canceledFlag
private
_dispatchedFlag
private
_initializedFlag
private
_inPassiveListenerFlag
private
_path
private
_stopImmediatePropagationFlag
private
_stopPropagationFlag
readonly
bubbles: boolean
readonly
cancelable: boolean
readonly
cancelBubble: boolean
readonly
cancelBubbleImmediately: boolean
readonly
composed: boolean
readonly
currentTarget: domTypes.EventTarget
readonly
defaultPrevented: boolean
readonly
dispatched: boolean
readonly
eventPhase: number
readonly
initialized: boolean
isTrusted: boolean
readonly
target: domTypes.EventTarget
readonly
timeStamp: Date
readonly
type: string

Methods

composedPath(): domTypes.EventPath[]

Returns the event’s path (objects on which listeners will be invoked). This does not include nodes in shadow trees if the shadow root was created with its ShadowRoot.mode closed.

 event.composedPath();

Cancels the event (if it is cancelable). See https://dom.spec.whatwg.org/#set-the-canceled-flag

 event.preventDefault();

For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance).

 event.stopImmediatePropagation();

Stops the propagation of events further along in the DOM.

 event.stopPropagation();