Interface UIEventInit

    interface UIEventInit {
        bubbles?: boolean;
        cancelable?: boolean;
        composed?: boolean;
        detail?: number;
        view?: Window;
        which?: number;
    }
    Hierarchy

    Properties

    bubbles?: boolean
    cancelable?: boolean
    composed?: boolean
    detail?: number
    view?: Window
    which?: number