mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:33:53 -06:00
Port generated lib files
This commit is contained in:
parent
5f9c34bcd2
commit
460df57ce5
13
src/lib/dom.generated.d.ts
vendored
13
src/lib/dom.generated.d.ts
vendored
@ -3972,7 +3972,7 @@ interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent
|
||||
/**
|
||||
* Retrieves a value that indicates the current state of the object.
|
||||
*/
|
||||
readonly readyState: string;
|
||||
readonly readyState: DocumentReadyState;
|
||||
/**
|
||||
* Gets the URL of the location that referred the user to the current page.
|
||||
*/
|
||||
@ -4231,6 +4231,7 @@ interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent
|
||||
*/
|
||||
queryCommandValue(commandId: string): string;
|
||||
releaseEvents(): void;
|
||||
updateSettings(): void;
|
||||
webkitCancelFullScreen(): void;
|
||||
webkitExitFullscreen(): void;
|
||||
/**
|
||||
@ -6255,7 +6256,7 @@ interface HTMLInputElement extends HTMLElement {
|
||||
/**
|
||||
* Returns a FileList object on a file type input object.
|
||||
*/
|
||||
readonly files: FileList | null;
|
||||
files: FileList | null;
|
||||
/**
|
||||
* Retrieves a reference to the form that the object is embedded in.
|
||||
*/
|
||||
@ -12857,6 +12858,7 @@ interface SourceBuffer extends EventTarget {
|
||||
readonly audioTracks: AudioTrackList;
|
||||
readonly buffered: TimeRanges;
|
||||
mode: AppendMode;
|
||||
readonly textTracks: TextTrackList;
|
||||
timestampOffset: number;
|
||||
readonly updating: boolean;
|
||||
readonly videoTracks: VideoTrackList;
|
||||
@ -14797,6 +14799,8 @@ declare var WheelEvent: {
|
||||
|
||||
interface WindowEventMap extends GlobalEventHandlersEventMap {
|
||||
"abort": UIEvent;
|
||||
"afterprint": Event;
|
||||
"beforeprint": Event;
|
||||
"beforeunload": BeforeUnloadEvent;
|
||||
"blur": FocusEvent;
|
||||
"canplay": Event;
|
||||
@ -14928,6 +14932,8 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
|
||||
readonly navigator: Navigator;
|
||||
offscreenBuffering: string | boolean;
|
||||
onabort: ((this: Window, ev: UIEvent) => any) | null;
|
||||
onafterprint: ((this: Window, ev: Event) => any) | null;
|
||||
onbeforeprint: ((this: Window, ev: Event) => any) | null;
|
||||
onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null;
|
||||
onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
||||
oncanplay: ((this: Window, ev: Event) => any) | null;
|
||||
@ -15738,6 +15744,8 @@ declare const name: never;
|
||||
declare var navigator: Navigator;
|
||||
declare var offscreenBuffering: string | boolean;
|
||||
declare var onabort: ((this: Window, ev: UIEvent) => any) | null;
|
||||
declare var onafterprint: ((this: Window, ev: Event) => any) | null;
|
||||
declare var onbeforeprint: ((this: Window, ev: Event) => any) | null;
|
||||
declare var onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null;
|
||||
declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
||||
declare var oncanplay: ((this: Window, ev: Event) => any) | null;
|
||||
@ -15982,6 +15990,7 @@ type ChannelCountMode = "max" | "clamped-max" | "explicit";
|
||||
type ChannelInterpretation = "speakers" | "discrete";
|
||||
type DisplayCaptureSurfaceType = "monitor" | "window" | "application" | "browser";
|
||||
type DistanceModelType = "linear" | "inverse" | "exponential";
|
||||
type DocumentReadyState = "loading" | "interactive" | "complete";
|
||||
type EndOfStreamError = "network" | "decode";
|
||||
type ExpandGranularity = "character" | "word" | "sentence" | "textedit";
|
||||
type GamepadHand = "" | "left" | "right";
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user