Skip to content

Commit 7517bb4

Browse files
committed
merge
2 parents b1b97fc + 89714d0 commit 7517bb4

39 files changed

+23381
-23065
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77

88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- uses: actions/setup-node@v6
1111
with:
1212
node-version: "lts/*"

.github/workflows/codeowners-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Run Codeowners merge check
1919
uses: OSS-Docs-Tools/[email protected]
2020
if: github.repository == 'microsoft/TypeScript-DOM-lib-generator'

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5858
steps:
5959
- name: Checkout repository
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161

6262
# Add any setup steps before running the `github/codeql-action/init` action.
6363
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
submodules: true # Ensures submodules are cloned
2121

.github/workflows/test_typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- uses: actions/setup-node@v6
1919
with:

.github/workflows/update-core-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update-webref:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- uses: actions/setup-node@v6
1717
with:

baselines/audioworklet.generated.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,9 @@ declare var ByteLengthQueuingStrategy: {
350350
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
351351
*/
352352
interface CompressionStream extends GenericTransformStream {
353+
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
353354
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
355+
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
354356
readonly writable: WritableStream<BufferSource>;
355357
}
356358

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

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

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

@@ -1538,6 +1546,7 @@ declare var WritableStreamDefaultWriter: {
15381546
};
15391547

15401548
declare namespace WebAssembly {
1549+
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
15411550
interface CompileError extends Error {
15421551
}
15431552

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

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

@@ -1677,6 +1687,7 @@ declare namespace WebAssembly {
16771687
imports(moduleObject: Module): ModuleImportDescriptor[];
16781688
};
16791689

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

@@ -1923,6 +1934,7 @@ interface Console {
19231934
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
19241935
*/
19251936
timeLog(label?: string, ...data: any[]): void;
1937+
/** 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. */
19261938
timeStamp(label?: string): void;
19271939
/**
19281940
* The **`console.trace()`** static method outputs a stack trace to the console.

0 commit comments

Comments
 (0)