Interface CustomEventParameters

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

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

Properties

bubbles: boolean

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

cancelable: boolean

If true, event.preventDefault is allowed

detail: any

Any custom data associated with the event