Skip to content

Commit 703b224

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 77d2da9 commit 703b224

18 files changed

+657
-136
lines changed

baselines/dom.generated.d.ts

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9168,11 +9168,23 @@ 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. */
9171+
/**
9172+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9173+
*
9174+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9175+
*/
91729176
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. */
9177+
/**
9178+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9179+
*
9180+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9181+
*/
91749182
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. */
9183+
/**
9184+
* 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.
9185+
*
9186+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9187+
*/
91769188
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
91779189
};
91789190

@@ -9348,11 +9360,23 @@ interface DOMMatrixReadOnly {
93489360
declare var DOMMatrixReadOnly: {
93499361
prototype: DOMMatrixReadOnly;
93509362
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. */
9363+
/**
9364+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9365+
*
9366+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9367+
*/
93529368
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. */
9369+
/**
9370+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9371+
*
9372+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9373+
*/
93549374
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. */
9375+
/**
9376+
* 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.
9377+
*
9378+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9379+
*/
93569380
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
93579381
};
93589382

@@ -9523,9 +9547,17 @@ interface DOMQuad {
95239547
declare var DOMQuad: {
95249548
prototype: DOMQuad;
95259549
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. */
9550+
/**
9551+
* 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.
9552+
*
9553+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9554+
*/
95279555
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. */
9556+
/**
9557+
* 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.
9558+
*
9559+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9560+
*/
95299561
fromRect(other?: DOMRectInit): DOMQuad;
95309562
};
95319563

baselines/serviceworker.generated.d.ts

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2606,11 +2606,23 @@ 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. */
2609+
/**
2610+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2611+
*
2612+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2613+
*/
26102614
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. */
2615+
/**
2616+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2617+
*
2618+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2619+
*/
26122620
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. */
2621+
/**
2622+
* 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.
2623+
*
2624+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2625+
*/
26142626
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
26152627
};
26162628

@@ -2779,11 +2791,23 @@ interface DOMMatrixReadOnly {
27792791
declare var DOMMatrixReadOnly: {
27802792
prototype: DOMMatrixReadOnly;
27812793
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. */
2794+
/**
2795+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2796+
*
2797+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2798+
*/
27832799
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. */
2800+
/**
2801+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2802+
*
2803+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2804+
*/
27852805
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. */
2806+
/**
2807+
* 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.
2808+
*
2809+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2810+
*/
27872811
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
27882812
};
27892813

@@ -2932,9 +2956,17 @@ interface DOMQuad {
29322956
declare var DOMQuad: {
29332957
prototype: DOMQuad;
29342958
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. */
2959+
/**
2960+
* 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.
2961+
*
2962+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2963+
*/
29362964
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. */
2965+
/**
2966+
* 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.
2967+
*
2968+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2969+
*/
29382970
fromRect(other?: DOMRectInit): DOMQuad;
29392971
};
29402972

baselines/sharedworker.generated.d.ts

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2387,11 +2387,23 @@ 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. */
2390+
/**
2391+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2392+
*
2393+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2394+
*/
23912395
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. */
2396+
/**
2397+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2398+
*
2399+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2400+
*/
23932401
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. */
2402+
/**
2403+
* 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.
2404+
*
2405+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2406+
*/
23952407
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
23962408
};
23972409

@@ -2560,11 +2572,23 @@ interface DOMMatrixReadOnly {
25602572
declare var DOMMatrixReadOnly: {
25612573
prototype: DOMMatrixReadOnly;
25622574
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. */
2575+
/**
2576+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2577+
*
2578+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2579+
*/
25642580
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. */
2581+
/**
2582+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2583+
*
2584+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2585+
*/
25662586
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. */
2587+
/**
2588+
* 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.
2589+
*
2590+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2591+
*/
25682592
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
25692593
};
25702594

@@ -2713,9 +2737,17 @@ interface DOMQuad {
27132737
declare var DOMQuad: {
27142738
prototype: DOMQuad;
27152739
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. */
2740+
/**
2741+
* 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.
2742+
*
2743+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2744+
*/
27172745
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. */
2746+
/**
2747+
* 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.
2748+
*
2749+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2750+
*/
27192751
fromRect(other?: DOMRectInit): DOMQuad;
27202752
};
27212753

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

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9157,11 +9157,23 @@ 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. */
9160+
/**
9161+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9162+
*
9163+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9164+
*/
91619165
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. */
9166+
/**
9167+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9168+
*
9169+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9170+
*/
91639171
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. */
9172+
/**
9173+
* 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.
9174+
*
9175+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9176+
*/
91659177
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
91669178
};
91679179

@@ -9337,11 +9349,23 @@ interface DOMMatrixReadOnly {
93379349
declare var DOMMatrixReadOnly: {
93389350
prototype: DOMMatrixReadOnly;
93399351
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. */
9352+
/**
9353+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9354+
*
9355+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9356+
*/
93419357
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. */
9358+
/**
9359+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9360+
*
9361+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9362+
*/
93439363
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. */
9364+
/**
9365+
* 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.
9366+
*
9367+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9368+
*/
93459369
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
93469370
};
93479371

@@ -9512,9 +9536,17 @@ interface DOMQuad {
95129536
declare var DOMQuad: {
95139537
prototype: DOMQuad;
95149538
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. */
9539+
/**
9540+
* 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.
9541+
*
9542+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9543+
*/
95169544
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. */
9545+
/**
9546+
* 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.
9547+
*
9548+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9549+
*/
95189550
fromRect(other?: DOMRectInit): DOMQuad;
95199551
};
95209552

0 commit comments

Comments
 (0)