Skip to content

Commit 2c3c5a8

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent cfe1f6a commit 2c3c5a8

17 files changed

+608
-1051
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ declare var CountQueuingStrategy: {
374374
};
375375

376376
/**
377-
* The **`CustomEvent`** interface represents events initialized by an application for any purpose.
377+
* The **`CustomEvent`** interface can be used to attach custom data to an event generated by an application.
378378
*
379379
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)
380380
*/
@@ -1067,7 +1067,7 @@ interface ReadableStreamGenericReader {
10671067
}
10681068

10691069
/**
1070-
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.
1070+
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, or `GBK`.
10711071
*
10721072
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)
10731073
*/
@@ -1122,19 +1122,19 @@ declare var TextDecoderStream: {
11221122
};
11231123

11241124
/**
1125-
* The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.
1125+
* The **`TextEncoder`** interface enables you to character encoding a JavaScript string using UTF-8.
11261126
*
11271127
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)
11281128
*/
11291129
interface TextEncoder extends TextEncoderCommon {
11301130
/**
1131-
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.
1131+
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the string character encoding using UTF-8.
11321132
*
11331133
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)
11341134
*/
11351135
encode(input?: string): Uint8Array<ArrayBuffer>;
11361136
/**
1137-
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.
1137+
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns an object indicating the progress of the encoding.
11381138
*
11391139
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)
11401140
*/

baselines/dom.generated.d.ts

Lines changed: 152 additions & 174 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 14 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,15 @@ interface RegistrationOptions {
570570
updateViaCache?: ServiceWorkerUpdateViaCache;
571571
}
572572

573+
interface Report {
574+
body?: ReportBody | null;
575+
type?: string;
576+
url?: string;
577+
}
578+
579+
interface ReportBody {
580+
}
581+
573582
interface ReportingObserverOptions {
574583
buffered?: boolean;
575584
types?: string[];
@@ -2307,7 +2316,7 @@ declare var CryptoKey: {
23072316
};
23082317

23092318
/**
2310-
* The **`CustomEvent`** interface represents events initialized by an application for any purpose.
2319+
* The **`CustomEvent`** interface can be used to attach custom data to an event generated by an application.
23112320
*
23122321
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)
23132322
*/
@@ -6517,57 +6526,6 @@ interface ReadableStreamGenericReader {
65176526
cancel(reason?: any): Promise<void>;
65186527
}
65196528

6520-
/**
6521-
* The `Report` interface of the Reporting API represents a single report.
6522-
*
6523-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report)
6524-
*/
6525-
interface Report {
6526-
/**
6527-
* The **`body`** read-only property of the Report interface returns the body of the report, which is a `ReportBody` object containing the detailed report information.
6528-
*
6529-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/body)
6530-
*/
6531-
readonly body: ReportBody | null;
6532-
/**
6533-
* The **`type`** read-only property of the Report interface returns the type of report generated, e.g., `deprecation` or `intervention`.
6534-
*
6535-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/type)
6536-
*/
6537-
readonly type: string;
6538-
/**
6539-
* The **`url`** read-only property of the Report interface returns the URL of the document that generated the report.
6540-
*
6541-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/url)
6542-
*/
6543-
readonly url: string;
6544-
toJSON(): any;
6545-
}
6546-
6547-
declare var Report: {
6548-
prototype: Report;
6549-
new(): Report;
6550-
};
6551-
6552-
/**
6553-
* The **`ReportBody`** interface of the Reporting API represents the body of a report.
6554-
*
6555-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody)
6556-
*/
6557-
interface ReportBody {
6558-
/**
6559-
* The **`toJSON()`** method of the ReportBody interface is a _serializer_, and returns a JSON representation of the `ReportBody` object.
6560-
*
6561-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON)
6562-
*/
6563-
toJSON(): any;
6564-
}
6565-
6566-
declare var ReportBody: {
6567-
prototype: ReportBody;
6568-
new(): ReportBody;
6569-
};
6570-
65716529
/**
65726530
* The `ReportingObserver` interface of the Reporting API allows you to collect and access reports.
65736531
*
@@ -7309,7 +7267,7 @@ declare var SubtleCrypto: {
73097267
};
73107268

73117269
/**
7312-
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.
7270+
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, or `GBK`.
73137271
*
73147272
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)
73157273
*/
@@ -7364,19 +7322,19 @@ declare var TextDecoderStream: {
73647322
};
73657323

73667324
/**
7367-
* The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.
7325+
* The **`TextEncoder`** interface enables you to character encoding a JavaScript string using UTF-8.
73687326
*
73697327
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)
73707328
*/
73717329
interface TextEncoder extends TextEncoderCommon {
73727330
/**
7373-
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.
7331+
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the string character encoding using UTF-8.
73747332
*
73757333
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)
73767334
*/
73777335
encode(input?: string): Uint8Array<ArrayBuffer>;
73787336
/**
7379-
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.
7337+
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns an object indicating the progress of the encoding.
73807338
*
73817339
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)
73827340
*/

baselines/sharedworker.generated.d.ts

Lines changed: 14 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,15 @@ interface RegistrationOptions {
500500
updateViaCache?: ServiceWorkerUpdateViaCache;
501501
}
502502

503+
interface Report {
504+
body?: ReportBody | null;
505+
type?: string;
506+
url?: string;
507+
}
508+
509+
interface ReportBody {
510+
}
511+
503512
interface ReportingObserverOptions {
504513
buffered?: boolean;
505514
types?: string[];
@@ -2088,7 +2097,7 @@ declare var CryptoKey: {
20882097
};
20892098

20902099
/**
2091-
* The **`CustomEvent`** interface represents events initialized by an application for any purpose.
2100+
* The **`CustomEvent`** interface can be used to attach custom data to an event generated by an application.
20922101
*
20932102
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)
20942103
*/
@@ -6100,57 +6109,6 @@ interface ReadableStreamGenericReader {
61006109
cancel(reason?: any): Promise<void>;
61016110
}
61026111

6103-
/**
6104-
* The `Report` interface of the Reporting API represents a single report.
6105-
*
6106-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report)
6107-
*/
6108-
interface Report {
6109-
/**
6110-
* The **`body`** read-only property of the Report interface returns the body of the report, which is a `ReportBody` object containing the detailed report information.
6111-
*
6112-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/body)
6113-
*/
6114-
readonly body: ReportBody | null;
6115-
/**
6116-
* The **`type`** read-only property of the Report interface returns the type of report generated, e.g., `deprecation` or `intervention`.
6117-
*
6118-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/type)
6119-
*/
6120-
readonly type: string;
6121-
/**
6122-
* The **`url`** read-only property of the Report interface returns the URL of the document that generated the report.
6123-
*
6124-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/url)
6125-
*/
6126-
readonly url: string;
6127-
toJSON(): any;
6128-
}
6129-
6130-
declare var Report: {
6131-
prototype: Report;
6132-
new(): Report;
6133-
};
6134-
6135-
/**
6136-
* The **`ReportBody`** interface of the Reporting API represents the body of a report.
6137-
*
6138-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody)
6139-
*/
6140-
interface ReportBody {
6141-
/**
6142-
* The **`toJSON()`** method of the ReportBody interface is a _serializer_, and returns a JSON representation of the `ReportBody` object.
6143-
*
6144-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON)
6145-
*/
6146-
toJSON(): any;
6147-
}
6148-
6149-
declare var ReportBody: {
6150-
prototype: ReportBody;
6151-
new(): ReportBody;
6152-
};
6153-
61546112
/**
61556113
* The `ReportingObserver` interface of the Reporting API allows you to collect and access reports.
61566114
*
@@ -6840,7 +6798,7 @@ declare var SubtleCrypto: {
68406798
};
68416799

68426800
/**
6843-
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.
6801+
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, or `GBK`.
68446802
*
68456803
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)
68466804
*/
@@ -6895,19 +6853,19 @@ declare var TextDecoderStream: {
68956853
};
68966854

68976855
/**
6898-
* The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.
6856+
* The **`TextEncoder`** interface enables you to character encoding a JavaScript string using UTF-8.
68996857
*
69006858
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)
69016859
*/
69026860
interface TextEncoder extends TextEncoderCommon {
69036861
/**
6904-
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.
6862+
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the string character encoding using UTF-8.
69056863
*
69066864
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)
69076865
*/
69086866
encode(input?: string): Uint8Array<ArrayBuffer>;
69096867
/**
6910-
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.
6868+
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns an object indicating the progress of the encoding.
69116869
*
69126870
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)
69136871
*/

baselines/ts5.5/audioworklet.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ declare var CountQueuingStrategy: {
374374
};
375375

376376
/**
377-
* The **`CustomEvent`** interface represents events initialized by an application for any purpose.
377+
* The **`CustomEvent`** interface can be used to attach custom data to an event generated by an application.
378378
*
379379
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)
380380
*/
@@ -1067,7 +1067,7 @@ interface ReadableStreamGenericReader {
10671067
}
10681068

10691069
/**
1070-
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.
1070+
* The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, or `GBK`.
10711071
*
10721072
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)
10731073
*/
@@ -1122,19 +1122,19 @@ declare var TextDecoderStream: {
11221122
};
11231123

11241124
/**
1125-
* The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.
1125+
* The **`TextEncoder`** interface enables you to character encoding a JavaScript string using UTF-8.
11261126
*
11271127
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)
11281128
*/
11291129
interface TextEncoder extends TextEncoderCommon {
11301130
/**
1131-
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.
1131+
* The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the string character encoding using UTF-8.
11321132
*
11331133
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)
11341134
*/
11351135
encode(input?: string): Uint8Array;
11361136
/**
1137-
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.
1137+
* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns an object indicating the progress of the encoding.
11381138
*
11391139
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)
11401140
*/

0 commit comments

Comments
 (0)