Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CustomEventParameters

Interface for optional parameters map, when dispatching custom events on a selection

interface CustomEventParameters {
bubbles: boolean;
cancelable: boolean;
detail: any;
}

§Properties

§
bubbles: boolean
[src]

If true, the event is dispatched to ancestors in reverse tree order

§
cancelable: boolean
[src]

If true, event.preventDefault is allowed

§
detail: any
[src]

Any custom data associated with the event