Interface InputEventInit
interface InputEventInit {
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
data?: string | null;
dataTransfer?: DataTransfer | null;
detail?: number;
inputType?: string;
isComposing?: boolean;
targetRanges?: StaticRange[];
view?: Window | null;
which?: number;
}
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
data?: string | null;
dataTransfer?: DataTransfer | null;
detail?: number;
inputType?: string;
isComposing?: boolean;
targetRanges?: StaticRange[];
view?: Window | null;
which?: number;
}
Hierarchy
- UIEventInit
- InputEventInit (View Summary)
Index
Properties
Optionalbubbles
bubbles?: boolean
Optionalcancelable
cancelable?: boolean
Optionalcomposed
composed?: boolean
Optionaldata
data?: string | null
OptionaldataTransfer
Optionaldetail
detail?: number
OptionalinputType
inputType?: string
OptionalisComposing
isComposing?: boolean
OptionaltargetRanges
Optionalview
Optionalwhich
which?: number
Deprecated