@types/web 0.0.187 → 0.0.189
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +63 -4
- package/package.json +1 -1
- package/ts5.5/index.d.ts +63 -4
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.189 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.189.
|
package/index.d.ts
CHANGED
|
@@ -4877,8 +4877,6 @@ interface CSSStyleDeclaration {
|
|
|
4877
4877
|
pointerEvents: string;
|
|
4878
4878
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
|
|
4879
4879
|
position: string;
|
|
4880
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
|
|
4881
|
-
positionArea: string;
|
|
4882
4880
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
|
|
4883
4881
|
printColorAdjust: string;
|
|
4884
4882
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
@@ -4999,6 +4997,9 @@ interface CSSStyleDeclaration {
|
|
|
4999
4997
|
textAlignLast: string;
|
|
5000
4998
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
|
|
5001
4999
|
textAnchor: string;
|
|
5000
|
+
textBox: string;
|
|
5001
|
+
textBoxEdge: string;
|
|
5002
|
+
textBoxTrim: string;
|
|
5002
5003
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
|
|
5003
5004
|
textCombineUpright: string;
|
|
5004
5005
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
|
|
@@ -6632,17 +6633,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
6632
6633
|
m43: number;
|
|
6633
6634
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
|
|
6634
6635
|
m44: number;
|
|
6636
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
6635
6637
|
invertSelf(): DOMMatrix;
|
|
6636
6638
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6637
6639
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6638
6640
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6639
6641
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
6642
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
6640
6643
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6641
6644
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6642
6645
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6646
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
|
|
6643
6647
|
setMatrixValue(transformList: string): DOMMatrix;
|
|
6648
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
|
|
6644
6649
|
skewXSelf(sx?: number): DOMMatrix;
|
|
6650
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
|
|
6645
6651
|
skewYSelf(sy?: number): DOMMatrix;
|
|
6652
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
|
|
6646
6653
|
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
6647
6654
|
}
|
|
6648
6655
|
|
|
@@ -6711,6 +6718,7 @@ interface DOMMatrixReadOnly {
|
|
|
6711
6718
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
|
|
6712
6719
|
flipX(): DOMMatrix;
|
|
6713
6720
|
flipY(): DOMMatrix;
|
|
6721
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
6714
6722
|
inverse(): DOMMatrix;
|
|
6715
6723
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
6716
6724
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
@@ -6723,9 +6731,13 @@ interface DOMMatrixReadOnly {
|
|
|
6723
6731
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
6724
6732
|
skewX(sx?: number): DOMMatrix;
|
|
6725
6733
|
skewY(sy?: number): DOMMatrix;
|
|
6734
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
6726
6735
|
toFloat32Array(): Float32Array;
|
|
6736
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
|
|
6727
6737
|
toFloat64Array(): Float64Array;
|
|
6738
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
6728
6739
|
toJSON(): any;
|
|
6740
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
|
|
6729
6741
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
6730
6742
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
6731
6743
|
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
@@ -6797,6 +6809,7 @@ interface DOMPointReadOnly {
|
|
|
6797
6809
|
readonly y: number;
|
|
6798
6810
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
|
|
6799
6811
|
readonly z: number;
|
|
6812
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
|
|
6800
6813
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
6801
6814
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
|
|
6802
6815
|
toJSON(): any;
|
|
@@ -7873,7 +7886,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7873
7886
|
*
|
|
7874
7887
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
|
|
7875
7888
|
*/
|
|
7876
|
-
importNode<T extends Node>(node: T,
|
|
7889
|
+
importNode<T extends Node>(node: T, subtree?: boolean): T;
|
|
7877
7890
|
/**
|
|
7878
7891
|
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
|
|
7879
7892
|
* @param url Specifies a MIME type for the document.
|
|
@@ -7930,6 +7943,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7930
7943
|
/**
|
|
7931
7944
|
* Writes one or more HTML expressions to a document in the specified window.
|
|
7932
7945
|
* @param content Specifies the text and HTML tags to write.
|
|
7946
|
+
* @deprecated
|
|
7933
7947
|
*
|
|
7934
7948
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
|
|
7935
7949
|
*/
|
|
@@ -10684,6 +10698,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10684
10698
|
title: string;
|
|
10685
10699
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
|
|
10686
10700
|
translate: boolean;
|
|
10701
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
|
|
10687
10702
|
writingSuggestions: string;
|
|
10688
10703
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
|
|
10689
10704
|
attachInternals(): ElementInternals;
|
|
@@ -17035,7 +17050,7 @@ interface Node extends EventTarget {
|
|
|
17035
17050
|
*
|
|
17036
17051
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
|
|
17037
17052
|
*/
|
|
17038
|
-
cloneNode(
|
|
17053
|
+
cloneNode(subtree?: boolean): Node;
|
|
17039
17054
|
/**
|
|
17040
17055
|
* Returns a bitmask indicating the position of other relative to node.
|
|
17041
17056
|
*
|
|
@@ -19933,7 +19948,9 @@ declare var SVGAnimateTransformElement: {
|
|
|
19933
19948
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
19934
19949
|
*/
|
|
19935
19950
|
interface SVGAnimatedAngle {
|
|
19951
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
|
|
19936
19952
|
readonly animVal: SVGAngle;
|
|
19953
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
|
|
19937
19954
|
readonly baseVal: SVGAngle;
|
|
19938
19955
|
}
|
|
19939
19956
|
|
|
@@ -19948,7 +19965,9 @@ declare var SVGAnimatedAngle: {
|
|
|
19948
19965
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
19949
19966
|
*/
|
|
19950
19967
|
interface SVGAnimatedBoolean {
|
|
19968
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
|
|
19951
19969
|
readonly animVal: boolean;
|
|
19970
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
|
|
19952
19971
|
baseVal: boolean;
|
|
19953
19972
|
}
|
|
19954
19973
|
|
|
@@ -20012,7 +20031,9 @@ declare var SVGAnimatedLength: {
|
|
|
20012
20031
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
20013
20032
|
*/
|
|
20014
20033
|
interface SVGAnimatedLengthList {
|
|
20034
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
|
|
20015
20035
|
readonly animVal: SVGLengthList;
|
|
20036
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
|
|
20016
20037
|
readonly baseVal: SVGLengthList;
|
|
20017
20038
|
}
|
|
20018
20039
|
|
|
@@ -20027,7 +20048,9 @@ declare var SVGAnimatedLengthList: {
|
|
|
20027
20048
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
|
|
20028
20049
|
*/
|
|
20029
20050
|
interface SVGAnimatedNumber {
|
|
20051
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
|
|
20030
20052
|
readonly animVal: number;
|
|
20053
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
|
|
20031
20054
|
baseVal: number;
|
|
20032
20055
|
}
|
|
20033
20056
|
|
|
@@ -20042,7 +20065,9 @@ declare var SVGAnimatedNumber: {
|
|
|
20042
20065
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
|
|
20043
20066
|
*/
|
|
20044
20067
|
interface SVGAnimatedNumberList {
|
|
20068
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
|
|
20045
20069
|
readonly animVal: SVGNumberList;
|
|
20070
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
|
|
20046
20071
|
readonly baseVal: SVGNumberList;
|
|
20047
20072
|
}
|
|
20048
20073
|
|
|
@@ -20077,7 +20102,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
|
|
|
20077
20102
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
|
|
20078
20103
|
*/
|
|
20079
20104
|
interface SVGAnimatedRect {
|
|
20105
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
|
|
20080
20106
|
readonly animVal: DOMRectReadOnly;
|
|
20107
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
|
|
20081
20108
|
readonly baseVal: DOMRect;
|
|
20082
20109
|
}
|
|
20083
20110
|
|
|
@@ -20109,7 +20136,9 @@ declare var SVGAnimatedString: {
|
|
|
20109
20136
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
20110
20137
|
*/
|
|
20111
20138
|
interface SVGAnimatedTransformList {
|
|
20139
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
|
|
20112
20140
|
readonly animVal: SVGTransformList;
|
|
20141
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
|
|
20113
20142
|
readonly baseVal: SVGTransformList;
|
|
20114
20143
|
}
|
|
20115
20144
|
|
|
@@ -20122,9 +20151,13 @@ declare var SVGAnimatedTransformList: {
|
|
|
20122
20151
|
interface SVGAnimationElement extends SVGElement, SVGTests {
|
|
20123
20152
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
|
|
20124
20153
|
readonly targetElement: SVGElement | null;
|
|
20154
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
|
|
20125
20155
|
beginElement(): void;
|
|
20156
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
|
|
20126
20157
|
beginElementAt(offset: number): void;
|
|
20158
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
|
|
20127
20159
|
endElement(): void;
|
|
20160
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
|
|
20128
20161
|
endElementAt(offset: number): void;
|
|
20129
20162
|
getCurrentTime(): number;
|
|
20130
20163
|
getSimpleDuration(): number;
|
|
@@ -20265,7 +20298,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
|
|
|
20265
20298
|
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
|
|
20266
20299
|
/** @deprecated */
|
|
20267
20300
|
readonly className: any;
|
|
20301
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
|
|
20268
20302
|
readonly ownerSVGElement: SVGSVGElement | null;
|
|
20303
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
|
|
20269
20304
|
readonly viewportElement: SVGElement | null;
|
|
20270
20305
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20271
20306
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21172,9 +21207,13 @@ declare var SVGLineElement: {
|
|
|
21172
21207
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
|
|
21173
21208
|
*/
|
|
21174
21209
|
interface SVGLinearGradientElement extends SVGGradientElement {
|
|
21210
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
|
|
21175
21211
|
readonly x1: SVGAnimatedLength;
|
|
21212
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
|
|
21176
21213
|
readonly x2: SVGAnimatedLength;
|
|
21214
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
|
|
21177
21215
|
readonly y1: SVGAnimatedLength;
|
|
21216
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
|
|
21178
21217
|
readonly y2: SVGAnimatedLength;
|
|
21179
21218
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21180
21219
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21350,8 +21389,11 @@ declare var SVGPathElement: {
|
|
|
21350
21389
|
*/
|
|
21351
21390
|
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
|
|
21352
21391
|
readonly height: SVGAnimatedLength;
|
|
21392
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
|
|
21353
21393
|
readonly patternContentUnits: SVGAnimatedEnumeration;
|
|
21394
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
|
|
21354
21395
|
readonly patternTransform: SVGAnimatedTransformList;
|
|
21396
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
|
|
21355
21397
|
readonly patternUnits: SVGAnimatedEnumeration;
|
|
21356
21398
|
readonly width: SVGAnimatedLength;
|
|
21357
21399
|
readonly x: SVGAnimatedLength;
|
|
@@ -21478,11 +21520,16 @@ declare var SVGPreserveAspectRatio: {
|
|
|
21478
21520
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
|
|
21479
21521
|
*/
|
|
21480
21522
|
interface SVGRadialGradientElement extends SVGGradientElement {
|
|
21523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
|
|
21481
21524
|
readonly cx: SVGAnimatedLength;
|
|
21525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
|
|
21482
21526
|
readonly cy: SVGAnimatedLength;
|
|
21483
21527
|
readonly fr: SVGAnimatedLength;
|
|
21528
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
|
|
21484
21529
|
readonly fx: SVGAnimatedLength;
|
|
21530
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
|
|
21485
21531
|
readonly fy: SVGAnimatedLength;
|
|
21532
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
|
|
21486
21533
|
readonly r: SVGAnimatedLength;
|
|
21487
21534
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21488
21535
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21723,7 +21770,9 @@ declare var SVGTSpanElement: {
|
|
|
21723
21770
|
};
|
|
21724
21771
|
|
|
21725
21772
|
interface SVGTests {
|
|
21773
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
|
|
21726
21774
|
readonly requiredExtensions: SVGStringList;
|
|
21775
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
|
|
21727
21776
|
readonly systemLanguage: SVGStringList;
|
|
21728
21777
|
}
|
|
21729
21778
|
|
|
@@ -21856,14 +21905,23 @@ declare var SVGTitleElement: {
|
|
|
21856
21905
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
|
|
21857
21906
|
*/
|
|
21858
21907
|
interface SVGTransform {
|
|
21908
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
|
|
21859
21909
|
readonly angle: number;
|
|
21910
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
|
|
21860
21911
|
readonly matrix: DOMMatrix;
|
|
21912
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
|
|
21861
21913
|
readonly type: number;
|
|
21914
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
|
|
21862
21915
|
setMatrix(matrix?: DOMMatrix2DInit): void;
|
|
21916
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
|
|
21863
21917
|
setRotate(angle: number, cx: number, cy: number): void;
|
|
21918
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
|
|
21864
21919
|
setScale(sx: number, sy: number): void;
|
|
21920
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
|
|
21865
21921
|
setSkewX(angle: number): void;
|
|
21922
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
|
|
21866
21923
|
setSkewY(angle: number): void;
|
|
21924
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
|
|
21867
21925
|
setTranslate(tx: number, ty: number): void;
|
|
21868
21926
|
readonly SVG_TRANSFORM_UNKNOWN: 0;
|
|
21869
21927
|
readonly SVG_TRANSFORM_MATRIX: 1;
|
|
@@ -25959,6 +26017,7 @@ interface WebGLRenderingContextBase {
|
|
|
25959
26017
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
25960
26018
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
25961
26019
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
26020
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
25962
26021
|
lineWidth(width: GLfloat): void;
|
|
25963
26022
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
25964
26023
|
linkProgram(program: WebGLProgram): void;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -4871,8 +4871,6 @@ interface CSSStyleDeclaration {
|
|
|
4871
4871
|
pointerEvents: string;
|
|
4872
4872
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
|
|
4873
4873
|
position: string;
|
|
4874
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
|
|
4875
|
-
positionArea: string;
|
|
4876
4874
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
|
|
4877
4875
|
printColorAdjust: string;
|
|
4878
4876
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
@@ -4993,6 +4991,9 @@ interface CSSStyleDeclaration {
|
|
|
4993
4991
|
textAlignLast: string;
|
|
4994
4992
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
|
|
4995
4993
|
textAnchor: string;
|
|
4994
|
+
textBox: string;
|
|
4995
|
+
textBoxEdge: string;
|
|
4996
|
+
textBoxTrim: string;
|
|
4996
4997
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
|
|
4997
4998
|
textCombineUpright: string;
|
|
4998
4999
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
|
|
@@ -6625,17 +6626,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
6625
6626
|
m43: number;
|
|
6626
6627
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
|
|
6627
6628
|
m44: number;
|
|
6629
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
6628
6630
|
invertSelf(): DOMMatrix;
|
|
6629
6631
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6630
6632
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6631
6633
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6632
6634
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
6635
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
6633
6636
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6634
6637
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6635
6638
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6639
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
|
|
6636
6640
|
setMatrixValue(transformList: string): DOMMatrix;
|
|
6641
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
|
|
6637
6642
|
skewXSelf(sx?: number): DOMMatrix;
|
|
6643
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
|
|
6638
6644
|
skewYSelf(sy?: number): DOMMatrix;
|
|
6645
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
|
|
6639
6646
|
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
6640
6647
|
}
|
|
6641
6648
|
|
|
@@ -6704,6 +6711,7 @@ interface DOMMatrixReadOnly {
|
|
|
6704
6711
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
|
|
6705
6712
|
flipX(): DOMMatrix;
|
|
6706
6713
|
flipY(): DOMMatrix;
|
|
6714
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
6707
6715
|
inverse(): DOMMatrix;
|
|
6708
6716
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
6709
6717
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
@@ -6716,9 +6724,13 @@ interface DOMMatrixReadOnly {
|
|
|
6716
6724
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
6717
6725
|
skewX(sx?: number): DOMMatrix;
|
|
6718
6726
|
skewY(sy?: number): DOMMatrix;
|
|
6727
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
6719
6728
|
toFloat32Array(): Float32Array;
|
|
6729
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
|
|
6720
6730
|
toFloat64Array(): Float64Array;
|
|
6731
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
6721
6732
|
toJSON(): any;
|
|
6733
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
|
|
6722
6734
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
6723
6735
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
6724
6736
|
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
@@ -6790,6 +6802,7 @@ interface DOMPointReadOnly {
|
|
|
6790
6802
|
readonly y: number;
|
|
6791
6803
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
|
|
6792
6804
|
readonly z: number;
|
|
6805
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
|
|
6793
6806
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
6794
6807
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
|
|
6795
6808
|
toJSON(): any;
|
|
@@ -7866,7 +7879,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7866
7879
|
*
|
|
7867
7880
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
|
|
7868
7881
|
*/
|
|
7869
|
-
importNode<T extends Node>(node: T,
|
|
7882
|
+
importNode<T extends Node>(node: T, subtree?: boolean): T;
|
|
7870
7883
|
/**
|
|
7871
7884
|
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
|
|
7872
7885
|
* @param url Specifies a MIME type for the document.
|
|
@@ -7923,6 +7936,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7923
7936
|
/**
|
|
7924
7937
|
* Writes one or more HTML expressions to a document in the specified window.
|
|
7925
7938
|
* @param content Specifies the text and HTML tags to write.
|
|
7939
|
+
* @deprecated
|
|
7926
7940
|
*
|
|
7927
7941
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
|
|
7928
7942
|
*/
|
|
@@ -10672,6 +10686,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10672
10686
|
title: string;
|
|
10673
10687
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
|
|
10674
10688
|
translate: boolean;
|
|
10689
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
|
|
10675
10690
|
writingSuggestions: string;
|
|
10676
10691
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
|
|
10677
10692
|
attachInternals(): ElementInternals;
|
|
@@ -17015,7 +17030,7 @@ interface Node extends EventTarget {
|
|
|
17015
17030
|
*
|
|
17016
17031
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
|
|
17017
17032
|
*/
|
|
17018
|
-
cloneNode(
|
|
17033
|
+
cloneNode(subtree?: boolean): Node;
|
|
17019
17034
|
/**
|
|
17020
17035
|
* Returns a bitmask indicating the position of other relative to node.
|
|
17021
17036
|
*
|
|
@@ -19912,7 +19927,9 @@ declare var SVGAnimateTransformElement: {
|
|
|
19912
19927
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
19913
19928
|
*/
|
|
19914
19929
|
interface SVGAnimatedAngle {
|
|
19930
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
|
|
19915
19931
|
readonly animVal: SVGAngle;
|
|
19932
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
|
|
19916
19933
|
readonly baseVal: SVGAngle;
|
|
19917
19934
|
}
|
|
19918
19935
|
|
|
@@ -19927,7 +19944,9 @@ declare var SVGAnimatedAngle: {
|
|
|
19927
19944
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
19928
19945
|
*/
|
|
19929
19946
|
interface SVGAnimatedBoolean {
|
|
19947
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
|
|
19930
19948
|
readonly animVal: boolean;
|
|
19949
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
|
|
19931
19950
|
baseVal: boolean;
|
|
19932
19951
|
}
|
|
19933
19952
|
|
|
@@ -19991,7 +20010,9 @@ declare var SVGAnimatedLength: {
|
|
|
19991
20010
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
19992
20011
|
*/
|
|
19993
20012
|
interface SVGAnimatedLengthList {
|
|
20013
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
|
|
19994
20014
|
readonly animVal: SVGLengthList;
|
|
20015
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
|
|
19995
20016
|
readonly baseVal: SVGLengthList;
|
|
19996
20017
|
}
|
|
19997
20018
|
|
|
@@ -20006,7 +20027,9 @@ declare var SVGAnimatedLengthList: {
|
|
|
20006
20027
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
|
|
20007
20028
|
*/
|
|
20008
20029
|
interface SVGAnimatedNumber {
|
|
20030
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
|
|
20009
20031
|
readonly animVal: number;
|
|
20032
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
|
|
20010
20033
|
baseVal: number;
|
|
20011
20034
|
}
|
|
20012
20035
|
|
|
@@ -20021,7 +20044,9 @@ declare var SVGAnimatedNumber: {
|
|
|
20021
20044
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
|
|
20022
20045
|
*/
|
|
20023
20046
|
interface SVGAnimatedNumberList {
|
|
20047
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
|
|
20024
20048
|
readonly animVal: SVGNumberList;
|
|
20049
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
|
|
20025
20050
|
readonly baseVal: SVGNumberList;
|
|
20026
20051
|
}
|
|
20027
20052
|
|
|
@@ -20056,7 +20081,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
|
|
|
20056
20081
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
|
|
20057
20082
|
*/
|
|
20058
20083
|
interface SVGAnimatedRect {
|
|
20084
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
|
|
20059
20085
|
readonly animVal: DOMRectReadOnly;
|
|
20086
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
|
|
20060
20087
|
readonly baseVal: DOMRect;
|
|
20061
20088
|
}
|
|
20062
20089
|
|
|
@@ -20088,7 +20115,9 @@ declare var SVGAnimatedString: {
|
|
|
20088
20115
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
20089
20116
|
*/
|
|
20090
20117
|
interface SVGAnimatedTransformList {
|
|
20118
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
|
|
20091
20119
|
readonly animVal: SVGTransformList;
|
|
20120
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
|
|
20092
20121
|
readonly baseVal: SVGTransformList;
|
|
20093
20122
|
}
|
|
20094
20123
|
|
|
@@ -20101,9 +20130,13 @@ declare var SVGAnimatedTransformList: {
|
|
|
20101
20130
|
interface SVGAnimationElement extends SVGElement, SVGTests {
|
|
20102
20131
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
|
|
20103
20132
|
readonly targetElement: SVGElement | null;
|
|
20133
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
|
|
20104
20134
|
beginElement(): void;
|
|
20135
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
|
|
20105
20136
|
beginElementAt(offset: number): void;
|
|
20137
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
|
|
20106
20138
|
endElement(): void;
|
|
20139
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
|
|
20107
20140
|
endElementAt(offset: number): void;
|
|
20108
20141
|
getCurrentTime(): number;
|
|
20109
20142
|
getSimpleDuration(): number;
|
|
@@ -20244,7 +20277,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
|
|
|
20244
20277
|
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
|
|
20245
20278
|
/** @deprecated */
|
|
20246
20279
|
readonly className: any;
|
|
20280
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
|
|
20247
20281
|
readonly ownerSVGElement: SVGSVGElement | null;
|
|
20282
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
|
|
20248
20283
|
readonly viewportElement: SVGElement | null;
|
|
20249
20284
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20250
20285
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21151,9 +21186,13 @@ declare var SVGLineElement: {
|
|
|
21151
21186
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
|
|
21152
21187
|
*/
|
|
21153
21188
|
interface SVGLinearGradientElement extends SVGGradientElement {
|
|
21189
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
|
|
21154
21190
|
readonly x1: SVGAnimatedLength;
|
|
21191
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
|
|
21155
21192
|
readonly x2: SVGAnimatedLength;
|
|
21193
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
|
|
21156
21194
|
readonly y1: SVGAnimatedLength;
|
|
21195
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
|
|
21157
21196
|
readonly y2: SVGAnimatedLength;
|
|
21158
21197
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21159
21198
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21329,8 +21368,11 @@ declare var SVGPathElement: {
|
|
|
21329
21368
|
*/
|
|
21330
21369
|
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
|
|
21331
21370
|
readonly height: SVGAnimatedLength;
|
|
21371
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
|
|
21332
21372
|
readonly patternContentUnits: SVGAnimatedEnumeration;
|
|
21373
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
|
|
21333
21374
|
readonly patternTransform: SVGAnimatedTransformList;
|
|
21375
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
|
|
21334
21376
|
readonly patternUnits: SVGAnimatedEnumeration;
|
|
21335
21377
|
readonly width: SVGAnimatedLength;
|
|
21336
21378
|
readonly x: SVGAnimatedLength;
|
|
@@ -21457,11 +21499,16 @@ declare var SVGPreserveAspectRatio: {
|
|
|
21457
21499
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
|
|
21458
21500
|
*/
|
|
21459
21501
|
interface SVGRadialGradientElement extends SVGGradientElement {
|
|
21502
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
|
|
21460
21503
|
readonly cx: SVGAnimatedLength;
|
|
21504
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
|
|
21461
21505
|
readonly cy: SVGAnimatedLength;
|
|
21462
21506
|
readonly fr: SVGAnimatedLength;
|
|
21507
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
|
|
21463
21508
|
readonly fx: SVGAnimatedLength;
|
|
21509
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
|
|
21464
21510
|
readonly fy: SVGAnimatedLength;
|
|
21511
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
|
|
21465
21512
|
readonly r: SVGAnimatedLength;
|
|
21466
21513
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21467
21514
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21702,7 +21749,9 @@ declare var SVGTSpanElement: {
|
|
|
21702
21749
|
};
|
|
21703
21750
|
|
|
21704
21751
|
interface SVGTests {
|
|
21752
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
|
|
21705
21753
|
readonly requiredExtensions: SVGStringList;
|
|
21754
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
|
|
21706
21755
|
readonly systemLanguage: SVGStringList;
|
|
21707
21756
|
}
|
|
21708
21757
|
|
|
@@ -21835,14 +21884,23 @@ declare var SVGTitleElement: {
|
|
|
21835
21884
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
|
|
21836
21885
|
*/
|
|
21837
21886
|
interface SVGTransform {
|
|
21887
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
|
|
21838
21888
|
readonly angle: number;
|
|
21889
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
|
|
21839
21890
|
readonly matrix: DOMMatrix;
|
|
21891
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
|
|
21840
21892
|
readonly type: number;
|
|
21893
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
|
|
21841
21894
|
setMatrix(matrix?: DOMMatrix2DInit): void;
|
|
21895
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
|
|
21842
21896
|
setRotate(angle: number, cx: number, cy: number): void;
|
|
21897
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
|
|
21843
21898
|
setScale(sx: number, sy: number): void;
|
|
21899
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
|
|
21844
21900
|
setSkewX(angle: number): void;
|
|
21901
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
|
|
21845
21902
|
setSkewY(angle: number): void;
|
|
21903
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
|
|
21846
21904
|
setTranslate(tx: number, ty: number): void;
|
|
21847
21905
|
readonly SVG_TRANSFORM_UNKNOWN: 0;
|
|
21848
21906
|
readonly SVG_TRANSFORM_MATRIX: 1;
|
|
@@ -25937,6 +25995,7 @@ interface WebGLRenderingContextBase {
|
|
|
25937
25995
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
25938
25996
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
25939
25997
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
25998
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
25940
25999
|
lineWidth(width: GLfloat): void;
|
|
25941
26000
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
25942
26001
|
linkProgram(program: WebGLProgram): void;
|