Skip to content

Commit c04927c

Browse files
typescript-botorta
andauthored
🤖 Update core dependencies (#2041)
Co-authored-by: orta <49038+orta@users.noreply.github.com>
1 parent 9e203a4 commit c04927c

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

baselines/dom.generated.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29014,7 +29014,7 @@ declare var SVGPatternElement: {
2901429014
};
2901529015

2901629016
/**
29017-
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
29017+
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
2901829018
*
2901929019
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
2902029020
*/
@@ -29032,7 +29032,7 @@ interface SVGPointList {
2903229032
*/
2903329033
readonly numberOfItems: number;
2903429034
/**
29035-
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29035+
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
2903629036
*
2903729037
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
2903829038
*/
@@ -29050,25 +29050,25 @@ interface SVGPointList {
2905029050
*/
2905129051
getItem(index: number): DOMPoint;
2905229052
/**
29053-
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29053+
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
2905429054
*
2905529055
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
2905629056
*/
2905729057
initialize(newItem: DOMPoint): DOMPoint;
2905829058
/**
29059-
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29059+
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
2906029060
*
2906129061
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
2906229062
*/
2906329063
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
2906429064
/**
29065-
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29065+
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
2906629066
*
2906729067
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
2906829068
*/
2906929069
removeItem(index: number): DOMPoint;
2907029070
/**
29071-
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29071+
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
2907229072
*
2907329073
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
2907429074
*/
@@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
2936229362
*/
2936329363
createSVGNumber(): SVGNumber;
2936429364
/**
29365-
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29365+
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
2936629366
*
2936729367
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
2936829368
*/

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28993,7 +28993,7 @@ declare var SVGPatternElement: {
2899328993
};
2899428994

2899528995
/**
28996-
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
28996+
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
2899728997
*
2899828998
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
2899928999
*/
@@ -29011,7 +29011,7 @@ interface SVGPointList {
2901129011
*/
2901229012
readonly numberOfItems: number;
2901329013
/**
29014-
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29014+
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
2901529015
*
2901629016
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
2901729017
*/
@@ -29029,25 +29029,25 @@ interface SVGPointList {
2902929029
*/
2903029030
getItem(index: number): DOMPoint;
2903129031
/**
29032-
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29032+
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
2903329033
*
2903429034
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
2903529035
*/
2903629036
initialize(newItem: DOMPoint): DOMPoint;
2903729037
/**
29038-
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29038+
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
2903929039
*
2904029040
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
2904129041
*/
2904229042
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
2904329043
/**
29044-
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29044+
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
2904529045
*
2904629046
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
2904729047
*/
2904829048
removeItem(index: number): DOMPoint;
2904929049
/**
29050-
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29050+
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
2905129051
*
2905229052
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
2905329053
*/
@@ -29341,7 +29341,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
2934129341
*/
2934229342
createSVGNumber(): SVGNumber;
2934329343
/**
29344-
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29344+
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
2934529345
*
2934629346
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
2934729347
*/

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29014,7 +29014,7 @@ declare var SVGPatternElement: {
2901429014
};
2901529015

2901629016
/**
29017-
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
29017+
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
2901829018
*
2901929019
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
2902029020
*/
@@ -29032,7 +29032,7 @@ interface SVGPointList {
2903229032
*/
2903329033
readonly numberOfItems: number;
2903429034
/**
29035-
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29035+
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
2903629036
*
2903729037
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
2903829038
*/
@@ -29050,25 +29050,25 @@ interface SVGPointList {
2905029050
*/
2905129051
getItem(index: number): DOMPoint;
2905229052
/**
29053-
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29053+
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
2905429054
*
2905529055
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
2905629056
*/
2905729057
initialize(newItem: DOMPoint): DOMPoint;
2905829058
/**
29059-
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29059+
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
2906029060
*
2906129061
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
2906229062
*/
2906329063
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
2906429064
/**
29065-
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29065+
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
2906629066
*
2906729067
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
2906829068
*/
2906929069
removeItem(index: number): DOMPoint;
2907029070
/**
29071-
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29071+
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
2907229072
*
2907329073
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
2907429074
*/
@@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
2936229362
*/
2936329363
createSVGNumber(): SVGNumber;
2936429364
/**
29365-
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29365+
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
2936629366
*
2936729367
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
2936829368
*/

0 commit comments

Comments
 (0)