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;
}
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
data?: string;
dataTransfer?: DataTransfer;
detail?: number;
inputType?: string;
isComposing?: boolean;
targetRanges?: StaticRange[];
view?: Window;
which?: number;
}
Hierarchy
- UIEventInit
- InputEventInit (view full)
Index
Properties
Optional
bubbles
bubbles?: boolean
Optional
cancelable
cancelable?: boolean
Optional
composed
composed?: boolean
Optional
data
data?: string
Optional
dataTransfer
Optional
detail
detail?: number
Optional
inputType
inputType ?: string
Optional
isComposing
isComposing ?: boolean
Optional
targetRanges
Optional
view
Optional
which
which?: number
Deprecated