Documentation
    Preparing search index...

    Interface CustomEventParameters

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

    interface CustomEventParameters {
        bubbles: boolean;
        cancelable: boolean;
        detail: any;
    }
    Index
    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