Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}
;

§Extends

§Properties

§
readonly data: string | null
[src]
§
readonly dataTransfer: DataTransfer | null
[src]
§
readonly inputType: string
[src]
§
readonly isComposing: boolean
[src]

§Methods

§
getTargetRanges(): StaticRange[]
[src]