InputEvent
interface InputEvent extends UIEvent {
readonly data: string | null;
readonly dataTransfer: DataTransfer | null;
readonly inputType: string;
readonly isComposing: boolean;
getTargetRanges(): StaticRange[];
}var InputEvent: {
prototype: InputEvent;
new (type: string, eventInitDict?: InputEventInit): InputEvent;
};