Skip to content

Commit bd326b8

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 60b79a3 commit bd326b8

17 files changed

+133
-5
lines changed

baselines/dom.generated.d.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9168,8 +9168,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
91689168
declare var DOMMatrix: {
91699169
prototype: DOMMatrix;
91709170
new(init?: string | number[]): DOMMatrix;
9171+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
91719172
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
9173+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
91729174
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
9175+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
91739176
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
91749177
};
91759178

@@ -9345,8 +9348,11 @@ interface DOMMatrixReadOnly {
93459348
declare var DOMMatrixReadOnly: {
93469349
prototype: DOMMatrixReadOnly;
93479350
new(init?: string | number[]): DOMMatrixReadOnly;
9351+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
93489352
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
9353+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
93499354
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
9355+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
93509356
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
93519357
};
93529358

@@ -9517,7 +9523,9 @@ interface DOMQuad {
95179523
declare var DOMQuad: {
95189524
prototype: DOMQuad;
95199525
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9526+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
95209527
fromQuad(other?: DOMQuadInit): DOMQuad;
9528+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
95219529
fromRect(other?: DOMRectInit): DOMQuad;
95229530
};
95239531

@@ -32806,7 +32814,7 @@ declare var TimeRanges: {
3280632814
};
3280732815

3280832816
/**
32809-
* The **`ToggleEvent`** interface represents an event notifying the user an Element's state has changed.
32817+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
3281032818
*
3281132819
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
3281232820
*/

baselines/serviceworker.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2606,8 +2606,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
26062606
declare var DOMMatrix: {
26072607
prototype: DOMMatrix;
26082608
new(init?: string | number[]): DOMMatrix;
2609+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
26092610
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2611+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
26102612
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2613+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
26112614
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
26122615
};
26132616

@@ -2776,8 +2779,11 @@ interface DOMMatrixReadOnly {
27762779
declare var DOMMatrixReadOnly: {
27772780
prototype: DOMMatrixReadOnly;
27782781
new(init?: string | number[]): DOMMatrixReadOnly;
2782+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
27792783
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2784+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
27802785
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2786+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
27812787
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
27822788
};
27832789

@@ -2926,7 +2932,9 @@ interface DOMQuad {
29262932
declare var DOMQuad: {
29272933
prototype: DOMQuad;
29282934
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2935+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
29292936
fromQuad(other?: DOMQuadInit): DOMQuad;
2937+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
29302938
fromRect(other?: DOMRectInit): DOMQuad;
29312939
};
29322940

baselines/sharedworker.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2387,8 +2387,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
23872387
declare var DOMMatrix: {
23882388
prototype: DOMMatrix;
23892389
new(init?: string | number[]): DOMMatrix;
2390+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
23902391
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2392+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
23912393
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2394+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
23922395
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
23932396
};
23942397

@@ -2557,8 +2560,11 @@ interface DOMMatrixReadOnly {
25572560
declare var DOMMatrixReadOnly: {
25582561
prototype: DOMMatrixReadOnly;
25592562
new(init?: string | number[]): DOMMatrixReadOnly;
2563+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
25602564
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2565+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
25612566
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2567+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
25622568
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
25632569
};
25642570

@@ -2707,7 +2713,9 @@ interface DOMQuad {
27072713
declare var DOMQuad: {
27082714
prototype: DOMQuad;
27092715
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2716+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
27102717
fromQuad(other?: DOMQuadInit): DOMQuad;
2718+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
27112719
fromRect(other?: DOMRectInit): DOMQuad;
27122720
};
27132721

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9157,8 +9157,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
91579157
declare var DOMMatrix: {
91589158
prototype: DOMMatrix;
91599159
new(init?: string | number[]): DOMMatrix;
9160+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
91609161
fromFloat32Array(array32: Float32Array): DOMMatrix;
9162+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
91619163
fromFloat64Array(array64: Float64Array): DOMMatrix;
9164+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
91629165
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
91639166
};
91649167

@@ -9334,8 +9337,11 @@ interface DOMMatrixReadOnly {
93349337
declare var DOMMatrixReadOnly: {
93359338
prototype: DOMMatrixReadOnly;
93369339
new(init?: string | number[]): DOMMatrixReadOnly;
9340+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
93379341
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
9342+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
93389343
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
9344+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
93399345
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
93409346
};
93419347

@@ -9506,7 +9512,9 @@ interface DOMQuad {
95069512
declare var DOMQuad: {
95079513
prototype: DOMQuad;
95089514
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9515+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
95099516
fromQuad(other?: DOMQuadInit): DOMQuad;
9517+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
95109518
fromRect(other?: DOMRectInit): DOMQuad;
95119519
};
95129520

@@ -32780,7 +32788,7 @@ declare var TimeRanges: {
3278032788
};
3278132789

3278232790
/**
32783-
* The **`ToggleEvent`** interface represents an event notifying the user an Element's state has changed.
32791+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
3278432792
*
3278532793
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
3278632794
*/

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2603,8 +2603,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
26032603
declare var DOMMatrix: {
26042604
prototype: DOMMatrix;
26052605
new(init?: string | number[]): DOMMatrix;
2606+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
26062607
fromFloat32Array(array32: Float32Array): DOMMatrix;
2608+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
26072609
fromFloat64Array(array64: Float64Array): DOMMatrix;
2610+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
26082611
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
26092612
};
26102613

@@ -2773,8 +2776,11 @@ interface DOMMatrixReadOnly {
27732776
declare var DOMMatrixReadOnly: {
27742777
prototype: DOMMatrixReadOnly;
27752778
new(init?: string | number[]): DOMMatrixReadOnly;
2779+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
27762780
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2781+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
27772782
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2783+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
27782784
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
27792785
};
27802786

@@ -2923,7 +2929,9 @@ interface DOMQuad {
29232929
declare var DOMQuad: {
29242930
prototype: DOMQuad;
29252931
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2932+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
29262933
fromQuad(other?: DOMQuadInit): DOMQuad;
2934+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
29272935
fromRect(other?: DOMRectInit): DOMQuad;
29282936
};
29292937

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2384,8 +2384,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
23842384
declare var DOMMatrix: {
23852385
prototype: DOMMatrix;
23862386
new(init?: string | number[]): DOMMatrix;
2387+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
23872388
fromFloat32Array(array32: Float32Array): DOMMatrix;
2389+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
23882390
fromFloat64Array(array64: Float64Array): DOMMatrix;
2391+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
23892392
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
23902393
};
23912394

@@ -2554,8 +2557,11 @@ interface DOMMatrixReadOnly {
25542557
declare var DOMMatrixReadOnly: {
25552558
prototype: DOMMatrixReadOnly;
25562559
new(init?: string | number[]): DOMMatrixReadOnly;
2560+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
25572561
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2562+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
25582563
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2564+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
25592565
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
25602566
};
25612567

@@ -2704,7 +2710,9 @@ interface DOMQuad {
27042710
declare var DOMQuad: {
27052711
prototype: DOMQuad;
27062712
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2713+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
27072714
fromQuad(other?: DOMQuadInit): DOMQuad;
2715+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
27082716
fromRect(other?: DOMRectInit): DOMQuad;
27092717
};
27102718

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3071,8 +3071,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
30713071
declare var DOMMatrix: {
30723072
prototype: DOMMatrix;
30733073
new(init?: string | number[]): DOMMatrix;
3074+
/** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
30743075
fromFloat32Array(array32: Float32Array): DOMMatrix;
3076+
/** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
30753077
fromFloat64Array(array64: Float64Array): DOMMatrix;
3078+
/** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
30763079
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
30773080
};
30783081

@@ -3241,8 +3244,11 @@ interface DOMMatrixReadOnly {
32413244
declare var DOMMatrixReadOnly: {
32423245
prototype: DOMMatrixReadOnly;
32433246
new(init?: string | number[]): DOMMatrixReadOnly;
3247+
/** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
32443248
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
3249+
/** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
32453250
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
3251+
/** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
32463252
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
32473253
};
32483254

@@ -3391,7 +3397,9 @@ interface DOMQuad {
33913397
declare var DOMQuad: {
33923398
prototype: DOMQuad;
33933399
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3400+
/** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
33943401
fromQuad(other?: DOMQuadInit): DOMQuad;
3402+
/** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
33953403
fromRect(other?: DOMRectInit): DOMQuad;
33963404
};
33973405

0 commit comments

Comments
 (0)