Interface CustomEventCustomEventInit

interface CustomEventCustomEventInit {
    bubbles?: boolean;
    cancelable?: boolean;
    composed?: boolean;
    detail?: any;
}

Properties

bubbles?: boolean
cancelable?: boolean
composed?: boolean
detail?: any