Search


Search something to see results

InputEventInit

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

Hierarchy (View Summary)

Index

Properties

Properties

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