Interface UIEventInit

interface UIEventInit {
    bubbles?: boolean;
    cancelable?: boolean;
    composed?: boolean;
    detail?: number;
}

Hierarchy (view full)

Properties

bubbles?: boolean
cancelable?: boolean
composed?: boolean
detail?: number