Skip to content

Commit 8c7e11d

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 6804be5 commit 8c7e11d

11 files changed

+67
-12
lines changed

baselines/audioworklet.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,12 @@ declare var DecompressionStream: {
429429
*/
430430
interface ErrorEvent extends Event {
431431
readonly colno: number;
432+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
432433
readonly error: any;
434+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
433435
readonly filename: string;
434436
readonly lineno: number;
437+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
435438
readonly message: string;
436439
}
437440

baselines/dom.generated.d.ts

+18-3
Original file line numberDiff line numberDiff line change
@@ -8467,9 +8467,12 @@ declare var EncodedVideoChunk: {
84678467
*/
84688468
interface ErrorEvent extends Event {
84698469
readonly colno: number;
8470+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
84708471
readonly error: any;
8472+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
84718473
readonly filename: string;
84728474
readonly lineno: number;
8475+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
84738476
readonly message: string;
84748477
}
84758478

@@ -10155,7 +10158,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1015510158
formAction: string;
1015610159
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1015710160
formEnctype: string;
10158-
/** Overrides the submit method attribute previously specified on a form element. */
10161+
/**
10162+
* Overrides the submit method attribute previously specified on a form element.
10163+
*
10164+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
10165+
*/
1015910166
formMethod: string;
1016010167
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
1016110168
formNoValidate: boolean;
@@ -10744,7 +10751,11 @@ interface HTMLFormElement extends HTMLElement {
1074410751
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
1074510752
*/
1074610753
action: string;
10747-
/** Specifies whether autocomplete is applied to an editable text field. */
10754+
/**
10755+
* Specifies whether autocomplete is applied to an editable text field.
10756+
*
10757+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
10758+
*/
1074810759
autocomplete: AutoFillBase;
1074910760
/**
1075010761
* Retrieves a collection, in source order, of all controls in a given form.
@@ -11425,7 +11436,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1142511436
formAction: string;
1142611437
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1142711438
formEnctype: string;
11428-
/** Overrides the submit method attribute previously specified on a form element. */
11439+
/**
11440+
* Overrides the submit method attribute previously specified on a form element.
11441+
*
11442+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
11443+
*/
1142911444
formMethod: string;
1143011445
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
1143111446
formNoValidate: boolean;

baselines/serviceworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2191,9 +2191,12 @@ interface EXT_texture_norm16 {
21912191
*/
21922192
interface ErrorEvent extends Event {
21932193
readonly colno: number;
2194+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
21942195
readonly error: any;
2196+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
21952197
readonly filename: string;
21962198
readonly lineno: number;
2199+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
21972200
readonly message: string;
21982201
}
21992202

baselines/sharedworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2118,9 +2118,12 @@ interface EXT_texture_norm16 {
21182118
*/
21192119
interface ErrorEvent extends Event {
21202120
readonly colno: number;
2121+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
21212122
readonly error: any;
2123+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
21222124
readonly filename: string;
21232125
readonly lineno: number;
2126+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
21242127
readonly message: string;
21252128
}
21262129

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

+3
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,12 @@ declare var DecompressionStream: {
429429
*/
430430
interface ErrorEvent extends Event {
431431
readonly colno: number;
432+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
432433
readonly error: any;
434+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
433435
readonly filename: string;
434436
readonly lineno: number;
437+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
435438
readonly message: string;
436439
}
437440

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

+18-3
Original file line numberDiff line numberDiff line change
@@ -8467,9 +8467,12 @@ declare var EncodedVideoChunk: {
84678467
*/
84688468
interface ErrorEvent extends Event {
84698469
readonly colno: number;
8470+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
84708471
readonly error: any;
8472+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
84718473
readonly filename: string;
84728474
readonly lineno: number;
8475+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
84738476
readonly message: string;
84748477
}
84758478

@@ -10155,7 +10158,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1015510158
formAction: string;
1015610159
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1015710160
formEnctype: string;
10158-
/** Overrides the submit method attribute previously specified on a form element. */
10161+
/**
10162+
* Overrides the submit method attribute previously specified on a form element.
10163+
*
10164+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
10165+
*/
1015910166
formMethod: string;
1016010167
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
1016110168
formNoValidate: boolean;
@@ -10744,7 +10751,11 @@ interface HTMLFormElement extends HTMLElement {
1074410751
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
1074510752
*/
1074610753
action: string;
10747-
/** Specifies whether autocomplete is applied to an editable text field. */
10754+
/**
10755+
* Specifies whether autocomplete is applied to an editable text field.
10756+
*
10757+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
10758+
*/
1074810759
autocomplete: AutoFillBase;
1074910760
/**
1075010761
* Retrieves a collection, in source order, of all controls in a given form.
@@ -11425,7 +11436,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1142511436
formAction: string;
1142611437
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1142711438
formEnctype: string;
11428-
/** Overrides the submit method attribute previously specified on a form element. */
11439+
/**
11440+
* Overrides the submit method attribute previously specified on a form element.
11441+
*
11442+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
11443+
*/
1142911444
formMethod: string;
1143011445
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
1143111446
formNoValidate: boolean;

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

+3
Original file line numberDiff line numberDiff line change
@@ -2191,9 +2191,12 @@ interface EXT_texture_norm16 {
21912191
*/
21922192
interface ErrorEvent extends Event {
21932193
readonly colno: number;
2194+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
21942195
readonly error: any;
2196+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
21952197
readonly filename: string;
21962198
readonly lineno: number;
2199+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
21972200
readonly message: string;
21982201
}
21992202

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

+3
Original file line numberDiff line numberDiff line change
@@ -2118,9 +2118,12 @@ interface EXT_texture_norm16 {
21182118
*/
21192119
interface ErrorEvent extends Event {
21202120
readonly colno: number;
2121+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
21212122
readonly error: any;
2123+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
21222124
readonly filename: string;
21232125
readonly lineno: number;
2126+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
21242127
readonly message: string;
21252128
}
21262129

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

+3
Original file line numberDiff line numberDiff line change
@@ -2613,9 +2613,12 @@ declare var EncodedVideoChunk: {
26132613
*/
26142614
interface ErrorEvent extends Event {
26152615
readonly colno: number;
2616+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
26162617
readonly error: any;
2618+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
26172619
readonly filename: string;
26182620
readonly lineno: number;
2621+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
26192622
readonly message: string;
26202623
}
26212624

baselines/webworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2613,9 +2613,12 @@ declare var EncodedVideoChunk: {
26132613
*/
26142614
interface ErrorEvent extends Event {
26152615
readonly colno: number;
2616+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
26162617
readonly error: any;
2618+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
26172619
readonly filename: string;
26182620
readonly lineno: number;
2621+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
26192622
readonly message: string;
26202623
}
26212624

package-lock.json

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)