@@ -3972,7 +3972,7 @@ interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent
39723972 /**
39733973 * Retrieves a value that indicates the current state of the object.
39743974 */
3975- readonly readyState: string ;
3975+ readonly readyState: DocumentReadyState ;
39763976 /**
39773977 * Gets the URL of the location that referred the user to the current page.
39783978 */
@@ -4231,6 +4231,7 @@ interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent
42314231 */
42324232 queryCommandValue(commandId: string): string;
42334233 releaseEvents(): void;
4234+ updateSettings(): void;
42344235 webkitCancelFullScreen(): void;
42354236 webkitExitFullscreen(): void;
42364237 /**
@@ -6255,7 +6256,7 @@ interface HTMLInputElement extends HTMLElement {
62556256 /**
62566257 * Returns a FileList object on a file type input object.
62576258 */
6258- readonly files: FileList | null;
6259+ files: FileList | null;
62596260 /**
62606261 * Retrieves a reference to the form that the object is embedded in.
62616262 */
@@ -12857,6 +12858,7 @@ interface SourceBuffer extends EventTarget {
1285712858 readonly audioTracks: AudioTrackList;
1285812859 readonly buffered: TimeRanges;
1285912860 mode: AppendMode;
12861+ readonly textTracks: TextTrackList;
1286012862 timestampOffset: number;
1286112863 readonly updating: boolean;
1286212864 readonly videoTracks: VideoTrackList;
@@ -14797,6 +14799,8 @@ declare var WheelEvent: {
1479714799
1479814800interface WindowEventMap extends GlobalEventHandlersEventMap {
1479914801 "abort": UIEvent;
14802+ "afterprint": Event;
14803+ "beforeprint": Event;
1480014804 "beforeunload": BeforeUnloadEvent;
1480114805 "blur": FocusEvent;
1480214806 "canplay": Event;
@@ -14928,6 +14932,8 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
1492814932 readonly navigator: Navigator;
1492914933 offscreenBuffering: string | boolean;
1493014934 onabort: ((this: Window, ev: UIEvent) => any) | null;
14935+ onafterprint: ((this: Window, ev: Event) => any) | null;
14936+ onbeforeprint: ((this: Window, ev: Event) => any) | null;
1493114937 onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null;
1493214938 onblur: ((this: Window, ev: FocusEvent) => any) | null;
1493314939 oncanplay: ((this: Window, ev: Event) => any) | null;
@@ -15738,6 +15744,8 @@ declare const name: never;
1573815744declare var navigator: Navigator;
1573915745declare var offscreenBuffering: string | boolean;
1574015746declare var onabort: ((this: Window, ev: UIEvent) => any) | null;
15747+ declare var onafterprint: ((this: Window, ev: Event) => any) | null;
15748+ declare var onbeforeprint: ((this: Window, ev: Event) => any) | null;
1574115749declare var onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null;
1574215750declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
1574315751declare var oncanplay: ((this: Window, ev: Event) => any) | null;
@@ -15982,6 +15990,7 @@ type ChannelCountMode = "max" | "clamped-max" | "explicit";
1598215990type ChannelInterpretation = "speakers" | "discrete";
1598315991type DisplayCaptureSurfaceType = "monitor" | "window" | "application" | "browser";
1598415992type DistanceModelType = "linear" | "inverse" | "exponential";
15993+ type DocumentReadyState = "loading" | "interactive" | "complete";
1598515994type EndOfStreamError = "network" | "decode";
1598615995type ExpandGranularity = "character" | "word" | "sentence" | "textedit";
1598715996type GamepadHand = "" | "left" | "right";
0 commit comments