Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions baselines/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,9 @@ declare var ByteLengthQueuingStrategy: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
*/
interface CompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -494,7 +496,9 @@ declare var DOMException: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
*/
interface DecompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -1119,7 +1123,9 @@ interface TextDecoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
*/
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<string>;
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -1168,7 +1174,9 @@ interface TextEncoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
*/
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
/** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream. */
readonly writable: WritableStream<string>;
}

Expand Down Expand Up @@ -1538,6 +1546,7 @@ declare var WritableStreamDefaultWriter: {
};

declare namespace WebAssembly {
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
interface CompileError extends Error {
}

Expand Down Expand Up @@ -1612,6 +1621,7 @@ declare namespace WebAssembly {
new(module: Module, importObject?: Imports): Instance;
};

/** The **`WebAssembly.LinkError`** object indicates an error during module instantiation (besides traps from the start function). */
interface LinkError extends Error {
}

Expand Down Expand Up @@ -1677,6 +1687,7 @@ declare namespace WebAssembly {
imports(moduleObject: Module): ModuleImportDescriptor[];
};

/** The **`WebAssembly.RuntimeError`** object is the error type that is thrown whenever WebAssembly specifies a trap. */
interface RuntimeError extends Error {
}

Expand Down Expand Up @@ -1923,6 +1934,7 @@ interface Console {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
*/
timeLog(label?: string, ...data: any[]): void;
/** The **`console.timeStamp()`** static method adds a single marker to the browser's Performance tool (Firefox bug 1387528, Chrome). This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events. */
timeStamp(label?: string): void;
/**
* The **`console.trace()`** static method outputs a stack trace to the console.
Expand Down
39 changes: 35 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10297,7 +10297,9 @@ declare var CompositionEvent: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
*/
interface CompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -11778,7 +11780,9 @@ declare var DataTransferItemList: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
*/
interface DecompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -12280,7 +12284,10 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/caretPositionFromPoint)
*/
caretPositionFromPoint(x: number, y: number, options?: CaretPositionFromPointOptions): CaretPosition | null;
/** @deprecated */
/**
* The **`caretRangeFromPoint()`** method of the Document interface returns a Range object for the document fragment under the specified coordinates.
* @deprecated
*/
caretRangeFromPoint(x: number, y: number): Range | null;
/**
* The **`Document.clear()`** method does nothing, but doesn't raise any error.
Expand Down Expand Up @@ -12477,6 +12484,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPointerLock)
*/
exitPointerLock(): void;
/** The **`getElementById()`** method of the Document interface returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly. */
getElementById(elementId: string): HTMLElement | null;
/**
* The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
Expand Down Expand Up @@ -12620,6 +12628,7 @@ declare var Document: {
*/
interface DocumentFragment extends Node, NonElementParentNode, ParentNode {
readonly ownerDocument: Document;
/** The **`getElementById()`** method of the DocumentFragment returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly. */
getElementById(elementId: string): HTMLElement | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent) */
get textContent(): string;
Expand Down Expand Up @@ -15924,6 +15933,7 @@ declare var HTMLDivElement: {
new(): HTMLDivElement;
};

/** For historical reasons, Window objects have a **`window.HTMLDocument`** property whose value is the Document interface. So you can think of HTMLDocument as an alias for Document, and you can find documentation for HTMLDocument members under the documentation for the Document interface. */
interface HTMLDocument extends Document {
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: HTMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -23683,6 +23693,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/credentials)
*/
readonly credentials: CredentialsContainer;
/** The **`Navigator.doNotTrack`** property returns the user's Do Not Track setting, which indicates whether the user is requesting websites and advertisers to not track them. */
readonly doNotTrack: string | null;
/**
* The **`Navigator.geolocation`** read-only property returns a Geolocation object that gives Web content access to the location of the device. This allows a website or app to offer customized results based on the user's location.
Expand Down Expand Up @@ -26972,7 +26983,11 @@ interface RTCEncodedAudioFrame {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/data)
*/
data: ArrayBuffer;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp) */
/**
* The **`timestamp`** read-only property of the RTCEncodedAudioFrame interface indicates the time at which frame sampling started.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp)
*/
readonly timestamp: number;
/**
* The **`getMetadata()`** method of the RTCEncodedAudioFrame interface returns an object containing the metadata associated with the frame.
Expand All @@ -26999,7 +27014,11 @@ interface RTCEncodedVideoFrame {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/data)
*/
data: ArrayBuffer;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp) */
/**
* The **`timestamp`** read-only property of the RTCEncodedVideoFrame interface indicates the time at which frame sampling started.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp)
*/
readonly timestamp: number;
/**
* The **`type`** read-only property of the RTCEncodedVideoFrame interface indicates whether this frame is a key frame, delta frame, or empty frame.
Expand Down Expand Up @@ -34238,7 +34257,9 @@ interface TextDecoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
*/
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<string>;
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -34287,7 +34308,9 @@ interface TextEncoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
*/
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
/** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream. */
readonly writable: WritableStream<string>;
}

Expand Down Expand Up @@ -38816,7 +38839,11 @@ interface WebTransportDatagramDuplexStream {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/readable)
*/
readonly readable: ReadableStream;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable) */
/**
* The **`writable`** read-only property of the WebTransportDatagramDuplexStream interface returns a WritableStream instance that can be used to unreliably write outgoing datagrams to the stream.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable)
*/
readonly writable: WritableStream;
}

Expand Down Expand Up @@ -40226,6 +40253,7 @@ declare namespace CSS {
}

declare namespace WebAssembly {
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
interface CompileError extends Error {
}

Expand Down Expand Up @@ -40300,6 +40328,7 @@ declare namespace WebAssembly {
new(module: Module, importObject?: Imports): Instance;
};

/** The **`WebAssembly.LinkError`** object indicates an error during module instantiation (besides traps from the start function). */
interface LinkError extends Error {
}

Expand Down Expand Up @@ -40365,6 +40394,7 @@ declare namespace WebAssembly {
imports(moduleObject: Module): ModuleImportDescriptor[];
};

/** The **`WebAssembly.RuntimeError`** object is the error type that is thrown whenever WebAssembly specifies a trap. */
interface RuntimeError extends Error {
}

Expand Down Expand Up @@ -40615,6 +40645,7 @@ interface Console {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
*/
timeLog(label?: string, ...data: any[]): void;
/** The **`console.timeStamp()`** static method adds a single marker to the browser's Performance tool (Firefox bug 1387528, Chrome). This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events. */
timeStamp(label?: string): void;
/**
* The **`console.trace()`** static method outputs a stack trace to the console.
Expand Down
18 changes: 17 additions & 1 deletion baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2202,7 +2202,9 @@ declare var CloseEvent: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
*/
interface CompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -3124,7 +3126,9 @@ declare var DOMStringList: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
*/
interface DecompressionStream extends GenericTransformStream {
/** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -7524,7 +7528,9 @@ interface TextDecoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
*/
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<string>;
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
readonly writable: WritableStream<BufferSource>;
}

Expand Down Expand Up @@ -7573,7 +7579,9 @@ interface TextEncoderCommon {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
*/
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
/** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream. */
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream. */
readonly writable: WritableStream<string>;
}

Expand Down Expand Up @@ -10689,7 +10697,11 @@ interface WebTransportDatagramDuplexStream {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/readable)
*/
readonly readable: ReadableStream;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable) */
/**
* The **`writable`** read-only property of the WebTransportDatagramDuplexStream interface returns a WritableStream instance that can be used to unreliably write outgoing datagrams to the stream.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable)
*/
readonly writable: WritableStream;
}

Expand Down Expand Up @@ -11087,6 +11099,7 @@ declare var WritableStreamDefaultWriter: {
};

declare namespace WebAssembly {
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
interface CompileError extends Error {
}

Expand Down Expand Up @@ -11161,6 +11174,7 @@ declare namespace WebAssembly {
new(module: Module, importObject?: Imports): Instance;
};

/** The **`WebAssembly.LinkError`** object indicates an error during module instantiation (besides traps from the start function). */
interface LinkError extends Error {
}

Expand Down Expand Up @@ -11226,6 +11240,7 @@ declare namespace WebAssembly {
imports(moduleObject: Module): ModuleImportDescriptor[];
};

/** The **`WebAssembly.RuntimeError`** object is the error type that is thrown whenever WebAssembly specifies a trap. */
interface RuntimeError extends Error {
}

Expand Down Expand Up @@ -11476,6 +11491,7 @@ interface Console {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
*/
timeLog(label?: string, ...data: any[]): void;
/** The **`console.timeStamp()`** static method adds a single marker to the browser's Performance tool (Firefox bug 1387528, Chrome). This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events. */
timeStamp(label?: string): void;
/**
* The **`console.trace()`** static method outputs a stack trace to the console.
Expand Down
Loading
Loading