Skip to content

Commit d0f76ee

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

9 files changed

+170
-28
lines changed

baselines/dom.generated.d.ts

+50-2
Original file line numberDiff line numberDiff line change
@@ -2238,8 +2238,10 @@ interface VideoDecoderConfig {
22382238
description?: AllowSharedBufferSource;
22392239
displayAspectHeight?: number;
22402240
displayAspectWidth?: number;
2241+
flip?: boolean;
22412242
hardwareAcceleration?: HardwareAcceleration;
22422243
optimizeForLatency?: boolean;
2244+
rotation?: number;
22432245
}
22442246

22452247
interface VideoDecoderInit {
@@ -6655,10 +6657,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66556657
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
66566658
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
66576659
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6660+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
66586661
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6662+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
66596663
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
66606664
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
66616665
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6666+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
66626667
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
66636668
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
66646669
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
@@ -6743,15 +6748,21 @@ interface DOMMatrixReadOnly {
67436748
inverse(): DOMMatrix;
67446749
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
67456750
multiply(other?: DOMMatrixInit): DOMMatrix;
6751+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
67466752
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6753+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
67476754
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6755+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
67486756
rotateFromVector(x?: number, y?: number): DOMMatrix;
67496757
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
67506758
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6759+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
67516760
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
67526761
/** @deprecated */
67536762
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6763+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
67546764
skewX(sx?: number): DOMMatrix;
6765+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
67556766
skewY(sy?: number): DOMMatrix;
67566767
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
67576768
toFloat32Array(): Float32Array;
@@ -18266,8 +18277,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
1826618277
readonly requestStart: DOMHighResTimeStamp;
1826718278
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
1826818279
readonly responseEnd: DOMHighResTimeStamp;
18269-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270-
readonly responseStart: DOMHighResTimeStamp;
1827118280
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
1827218281
readonly responseStatus: number;
1827318282
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20386,13 @@ declare var SVGElement: {
2037720386
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
2037820387
*/
2037920388
interface SVGEllipseElement extends SVGGeometryElement {
20389+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
2038020390
readonly cx: SVGAnimatedLength;
20391+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
2038120392
readonly cy: SVGAnimatedLength;
20393+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
2038220394
readonly rx: SVGAnimatedLength;
20395+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
2038320396
readonly ry: SVGAnimatedLength;
2038420397
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2038520398
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20541,17 +20554,29 @@ declare var SVGFECompositeElement: {
2054120554
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)
2054220555
*/
2054320556
interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20557+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias) */
2054420558
readonly bias: SVGAnimatedNumber;
20559+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor) */
2054520560
readonly divisor: SVGAnimatedNumber;
20561+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode) */
2054620562
readonly edgeMode: SVGAnimatedEnumeration;
20563+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1) */
2054720564
readonly in1: SVGAnimatedString;
20565+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix) */
2054820566
readonly kernelMatrix: SVGAnimatedNumberList;
20567+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX) */
2054920568
readonly kernelUnitLengthX: SVGAnimatedNumber;
20569+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY) */
2055020570
readonly kernelUnitLengthY: SVGAnimatedNumber;
20571+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX) */
2055120572
readonly orderX: SVGAnimatedInteger;
20573+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY) */
2055220574
readonly orderY: SVGAnimatedInteger;
20575+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha) */
2055320576
readonly preserveAlpha: SVGAnimatedBoolean;
20577+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX) */
2055420578
readonly targetX: SVGAnimatedInteger;
20579+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY) */
2055520580
readonly targetY: SVGAnimatedInteger;
2055620581
readonly SVG_EDGEMODE_UNKNOWN: 0;
2055720582
readonly SVG_EDGEMODE_DUPLICATE: 1;
@@ -20605,10 +20630,15 @@ declare var SVGFEDiffuseLightingElement: {
2060520630
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)
2060620631
*/
2060720632
interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20633+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1) */
2060820634
readonly in1: SVGAnimatedString;
20635+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2) */
2060920636
readonly in2: SVGAnimatedString;
20637+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale) */
2061020638
readonly scale: SVGAnimatedNumber;
20639+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector) */
2061120640
readonly xChannelSelector: SVGAnimatedEnumeration;
20641+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector) */
2061220642
readonly yChannelSelector: SVGAnimatedEnumeration;
2061320643
readonly SVG_CHANNEL_UNKNOWN: 0;
2061420644
readonly SVG_CHANNEL_R: 1;
@@ -20872,8 +20902,11 @@ declare var SVGFEMorphologyElement: {
2087220902
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)
2087320903
*/
2087420904
interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20905+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx) */
2087520906
readonly dx: SVGAnimatedNumber;
20907+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy) */
2087620908
readonly dy: SVGAnimatedNumber;
20909+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1) */
2087720910
readonly in1: SVGAnimatedString;
2087820911
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2087920912
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20942,10 +20975,15 @@ declare var SVGFESpecularLightingElement: {
2094220975
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)
2094320976
*/
2094420977
interface SVGFESpotLightElement extends SVGElement {
20978+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle) */
2094520979
readonly limitingConeAngle: SVGAnimatedNumber;
20980+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX) */
2094620981
readonly pointsAtX: SVGAnimatedNumber;
20982+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY) */
2094720983
readonly pointsAtY: SVGAnimatedNumber;
20984+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ) */
2094820985
readonly pointsAtZ: SVGAnimatedNumber;
20986+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent) */
2094920987
readonly specularExponent: SVGAnimatedNumber;
2095020988
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
2095120989
readonly x: SVGAnimatedNumber;
@@ -20970,6 +21008,7 @@ declare var SVGFESpotLightElement: {
2097021008
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
2097121009
*/
2097221010
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
21011+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
2097321012
readonly in1: SVGAnimatedString;
2097421013
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2097521014
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21047,10 +21086,15 @@ declare var SVGFilterElement: {
2104721086
};
2104821087

2104921088
interface SVGFilterPrimitiveStandardAttributes {
21089+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */
2105021090
readonly height: SVGAnimatedLength;
21091+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */
2105121092
readonly result: SVGAnimatedString;
21093+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */
2105221094
readonly width: SVGAnimatedLength;
21095+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */
2105321096
readonly x: SVGAnimatedLength;
21097+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */
2105421098
readonly y: SVGAnimatedLength;
2105521099
}
2105621100

@@ -22139,9 +22183,13 @@ declare var SVGUnitTypes: {
2213922183
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
2214022184
*/
2214122185
interface SVGUseElement extends SVGGraphicsElement, SVGURIReference {
22186+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height) */
2214222187
readonly height: SVGAnimatedLength;
22188+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width) */
2214322189
readonly width: SVGAnimatedLength;
22190+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x) */
2214422191
readonly x: SVGAnimatedLength;
22192+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y) */
2214522193
readonly y: SVGAnimatedLength;
2214622194
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2214722195
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

baselines/serviceworker.generated.d.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -1866,10 +1866,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
18661866
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
18671867
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
18681868
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
1869+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
18691870
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1871+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
18701872
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
18711873
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
18721874
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1875+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
18731876
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18741877
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18751878
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
@@ -1946,15 +1949,21 @@ interface DOMMatrixReadOnly {
19461949
inverse(): DOMMatrix;
19471950
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
19481951
multiply(other?: DOMMatrixInit): DOMMatrix;
1952+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
19491953
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1954+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
19501955
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1956+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
19511957
rotateFromVector(x?: number, y?: number): DOMMatrix;
19521958
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
19531959
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1960+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
19541961
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
19551962
/** @deprecated */
19561963
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1964+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
19571965
skewX(sx?: number): DOMMatrix;
1966+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
19581967
skewY(sy?: number): DOMMatrix;
19591968
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
19601969
toFloat32Array(): Float32Array;
@@ -4336,8 +4345,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
43364345
readonly requestStart: DOMHighResTimeStamp;
43374346
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
43384347
readonly responseEnd: DOMHighResTimeStamp;
4339-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
4340-
readonly responseStart: DOMHighResTimeStamp;
43414348
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
43424349
readonly responseStatus: number;
43434350
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */

baselines/sharedworker.generated.d.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -1793,10 +1793,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
17931793
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
17941794
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
17951795
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
1796+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
17961797
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1798+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
17971799
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
17981800
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
17991801
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1802+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
18001803
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18011804
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18021805
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
@@ -1873,15 +1876,21 @@ interface DOMMatrixReadOnly {
18731876
inverse(): DOMMatrix;
18741877
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
18751878
multiply(other?: DOMMatrixInit): DOMMatrix;
1879+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
18761880
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1881+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
18771882
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1883+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
18781884
rotateFromVector(x?: number, y?: number): DOMMatrix;
18791885
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
18801886
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1887+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
18811888
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18821889
/** @deprecated */
18831890
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1891+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
18841892
skewX(sx?: number): DOMMatrix;
1893+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
18851894
skewY(sy?: number): DOMMatrix;
18861895
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
18871896
toFloat32Array(): Float32Array;
@@ -4208,8 +4217,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
42084217
readonly requestStart: DOMHighResTimeStamp;
42094218
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
42104219
readonly responseEnd: DOMHighResTimeStamp;
4211-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
4212-
readonly responseStart: DOMHighResTimeStamp;
42134220
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
42144221
readonly responseStatus: number;
42154222
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */

0 commit comments

Comments
 (0)