Interface InputEventInit

    interface InputEventInit {
        bubbles?: boolean;
        cancelable?: boolean;
        composed?: boolean;
        data?: string;
        dataTransfer?: DataTransfer;
        detail?: number;
        inputType?: string;
        isComposing?: boolean;
        targetRanges?: StaticRange[];
        view?: Window;
        which?: number;
    }
    Hierarchy

    Properties

    bubbles?: boolean
    cancelable?: boolean
    composed?: boolean
    data?: string
    dataTransfer?: DataTransfer
    detail?: number
    inputType?: string
    isComposing?: boolean
    targetRanges?: StaticRange[]
    view?: Window
    which?: number