@types/web 0.0.187 → 0.0.188
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 +36 -4
- package/package.json +1 -1
- package/ts5.5/index.d.ts +36 -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.188 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.188.
|
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;
|
|
@@ -6725,6 +6733,7 @@ interface DOMMatrixReadOnly {
|
|
|
6725
6733
|
skewY(sy?: number): DOMMatrix;
|
|
6726
6734
|
toFloat32Array(): Float32Array;
|
|
6727
6735
|
toFloat64Array(): Float64Array;
|
|
6736
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
6728
6737
|
toJSON(): any;
|
|
6729
6738
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
6730
6739
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
@@ -7873,7 +7882,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7873
7882
|
*
|
|
7874
7883
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
|
|
7875
7884
|
*/
|
|
7876
|
-
importNode<T extends Node>(node: T,
|
|
7885
|
+
importNode<T extends Node>(node: T, subtree?: boolean): T;
|
|
7877
7886
|
/**
|
|
7878
7887
|
* 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
7888
|
* @param url Specifies a MIME type for the document.
|
|
@@ -7930,6 +7939,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7930
7939
|
/**
|
|
7931
7940
|
* Writes one or more HTML expressions to a document in the specified window.
|
|
7932
7941
|
* @param content Specifies the text and HTML tags to write.
|
|
7942
|
+
* @deprecated
|
|
7933
7943
|
*
|
|
7934
7944
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
|
|
7935
7945
|
*/
|
|
@@ -10684,6 +10694,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10684
10694
|
title: string;
|
|
10685
10695
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
|
|
10686
10696
|
translate: boolean;
|
|
10697
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
|
|
10687
10698
|
writingSuggestions: string;
|
|
10688
10699
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
|
|
10689
10700
|
attachInternals(): ElementInternals;
|
|
@@ -17035,7 +17046,7 @@ interface Node extends EventTarget {
|
|
|
17035
17046
|
*
|
|
17036
17047
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
|
|
17037
17048
|
*/
|
|
17038
|
-
cloneNode(
|
|
17049
|
+
cloneNode(subtree?: boolean): Node;
|
|
17039
17050
|
/**
|
|
17040
17051
|
* Returns a bitmask indicating the position of other relative to node.
|
|
17041
17052
|
*
|
|
@@ -19933,7 +19944,9 @@ declare var SVGAnimateTransformElement: {
|
|
|
19933
19944
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
19934
19945
|
*/
|
|
19935
19946
|
interface SVGAnimatedAngle {
|
|
19947
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
|
|
19936
19948
|
readonly animVal: SVGAngle;
|
|
19949
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
|
|
19937
19950
|
readonly baseVal: SVGAngle;
|
|
19938
19951
|
}
|
|
19939
19952
|
|
|
@@ -19948,7 +19961,9 @@ declare var SVGAnimatedAngle: {
|
|
|
19948
19961
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
19949
19962
|
*/
|
|
19950
19963
|
interface SVGAnimatedBoolean {
|
|
19964
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
|
|
19951
19965
|
readonly animVal: boolean;
|
|
19966
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
|
|
19952
19967
|
baseVal: boolean;
|
|
19953
19968
|
}
|
|
19954
19969
|
|
|
@@ -20012,7 +20027,9 @@ declare var SVGAnimatedLength: {
|
|
|
20012
20027
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
20013
20028
|
*/
|
|
20014
20029
|
interface SVGAnimatedLengthList {
|
|
20030
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
|
|
20015
20031
|
readonly animVal: SVGLengthList;
|
|
20032
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
|
|
20016
20033
|
readonly baseVal: SVGLengthList;
|
|
20017
20034
|
}
|
|
20018
20035
|
|
|
@@ -20027,7 +20044,9 @@ declare var SVGAnimatedLengthList: {
|
|
|
20027
20044
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
|
|
20028
20045
|
*/
|
|
20029
20046
|
interface SVGAnimatedNumber {
|
|
20047
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
|
|
20030
20048
|
readonly animVal: number;
|
|
20049
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
|
|
20031
20050
|
baseVal: number;
|
|
20032
20051
|
}
|
|
20033
20052
|
|
|
@@ -20042,7 +20061,9 @@ declare var SVGAnimatedNumber: {
|
|
|
20042
20061
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
|
|
20043
20062
|
*/
|
|
20044
20063
|
interface SVGAnimatedNumberList {
|
|
20064
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
|
|
20045
20065
|
readonly animVal: SVGNumberList;
|
|
20066
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
|
|
20046
20067
|
readonly baseVal: SVGNumberList;
|
|
20047
20068
|
}
|
|
20048
20069
|
|
|
@@ -20077,7 +20098,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
|
|
|
20077
20098
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
|
|
20078
20099
|
*/
|
|
20079
20100
|
interface SVGAnimatedRect {
|
|
20101
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
|
|
20080
20102
|
readonly animVal: DOMRectReadOnly;
|
|
20103
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
|
|
20081
20104
|
readonly baseVal: DOMRect;
|
|
20082
20105
|
}
|
|
20083
20106
|
|
|
@@ -20109,7 +20132,9 @@ declare var SVGAnimatedString: {
|
|
|
20109
20132
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
20110
20133
|
*/
|
|
20111
20134
|
interface SVGAnimatedTransformList {
|
|
20135
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
|
|
20112
20136
|
readonly animVal: SVGTransformList;
|
|
20137
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
|
|
20113
20138
|
readonly baseVal: SVGTransformList;
|
|
20114
20139
|
}
|
|
20115
20140
|
|
|
@@ -20122,9 +20147,13 @@ declare var SVGAnimatedTransformList: {
|
|
|
20122
20147
|
interface SVGAnimationElement extends SVGElement, SVGTests {
|
|
20123
20148
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
|
|
20124
20149
|
readonly targetElement: SVGElement | null;
|
|
20150
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
|
|
20125
20151
|
beginElement(): void;
|
|
20152
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
|
|
20126
20153
|
beginElementAt(offset: number): void;
|
|
20154
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
|
|
20127
20155
|
endElement(): void;
|
|
20156
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
|
|
20128
20157
|
endElementAt(offset: number): void;
|
|
20129
20158
|
getCurrentTime(): number;
|
|
20130
20159
|
getSimpleDuration(): number;
|
|
@@ -21723,7 +21752,9 @@ declare var SVGTSpanElement: {
|
|
|
21723
21752
|
};
|
|
21724
21753
|
|
|
21725
21754
|
interface SVGTests {
|
|
21755
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
|
|
21726
21756
|
readonly requiredExtensions: SVGStringList;
|
|
21757
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
|
|
21727
21758
|
readonly systemLanguage: SVGStringList;
|
|
21728
21759
|
}
|
|
21729
21760
|
|
|
@@ -25959,6 +25990,7 @@ interface WebGLRenderingContextBase {
|
|
|
25959
25990
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
25960
25991
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
25961
25992
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
25993
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
25962
25994
|
lineWidth(width: GLfloat): void;
|
|
25963
25995
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
25964
25996
|
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;
|
|
@@ -6718,6 +6726,7 @@ interface DOMMatrixReadOnly {
|
|
|
6718
6726
|
skewY(sy?: number): DOMMatrix;
|
|
6719
6727
|
toFloat32Array(): Float32Array;
|
|
6720
6728
|
toFloat64Array(): Float64Array;
|
|
6729
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
6721
6730
|
toJSON(): any;
|
|
6722
6731
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
6723
6732
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
@@ -7866,7 +7875,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7866
7875
|
*
|
|
7867
7876
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
|
|
7868
7877
|
*/
|
|
7869
|
-
importNode<T extends Node>(node: T,
|
|
7878
|
+
importNode<T extends Node>(node: T, subtree?: boolean): T;
|
|
7870
7879
|
/**
|
|
7871
7880
|
* 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
7881
|
* @param url Specifies a MIME type for the document.
|
|
@@ -7923,6 +7932,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7923
7932
|
/**
|
|
7924
7933
|
* Writes one or more HTML expressions to a document in the specified window.
|
|
7925
7934
|
* @param content Specifies the text and HTML tags to write.
|
|
7935
|
+
* @deprecated
|
|
7926
7936
|
*
|
|
7927
7937
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
|
|
7928
7938
|
*/
|
|
@@ -10672,6 +10682,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10672
10682
|
title: string;
|
|
10673
10683
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
|
|
10674
10684
|
translate: boolean;
|
|
10685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
|
|
10675
10686
|
writingSuggestions: string;
|
|
10676
10687
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
|
|
10677
10688
|
attachInternals(): ElementInternals;
|
|
@@ -17015,7 +17026,7 @@ interface Node extends EventTarget {
|
|
|
17015
17026
|
*
|
|
17016
17027
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
|
|
17017
17028
|
*/
|
|
17018
|
-
cloneNode(
|
|
17029
|
+
cloneNode(subtree?: boolean): Node;
|
|
17019
17030
|
/**
|
|
17020
17031
|
* Returns a bitmask indicating the position of other relative to node.
|
|
17021
17032
|
*
|
|
@@ -19912,7 +19923,9 @@ declare var SVGAnimateTransformElement: {
|
|
|
19912
19923
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
19913
19924
|
*/
|
|
19914
19925
|
interface SVGAnimatedAngle {
|
|
19926
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
|
|
19915
19927
|
readonly animVal: SVGAngle;
|
|
19928
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
|
|
19916
19929
|
readonly baseVal: SVGAngle;
|
|
19917
19930
|
}
|
|
19918
19931
|
|
|
@@ -19927,7 +19940,9 @@ declare var SVGAnimatedAngle: {
|
|
|
19927
19940
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
19928
19941
|
*/
|
|
19929
19942
|
interface SVGAnimatedBoolean {
|
|
19943
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
|
|
19930
19944
|
readonly animVal: boolean;
|
|
19945
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
|
|
19931
19946
|
baseVal: boolean;
|
|
19932
19947
|
}
|
|
19933
19948
|
|
|
@@ -19991,7 +20006,9 @@ declare var SVGAnimatedLength: {
|
|
|
19991
20006
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
19992
20007
|
*/
|
|
19993
20008
|
interface SVGAnimatedLengthList {
|
|
20009
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
|
|
19994
20010
|
readonly animVal: SVGLengthList;
|
|
20011
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
|
|
19995
20012
|
readonly baseVal: SVGLengthList;
|
|
19996
20013
|
}
|
|
19997
20014
|
|
|
@@ -20006,7 +20023,9 @@ declare var SVGAnimatedLengthList: {
|
|
|
20006
20023
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
|
|
20007
20024
|
*/
|
|
20008
20025
|
interface SVGAnimatedNumber {
|
|
20026
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
|
|
20009
20027
|
readonly animVal: number;
|
|
20028
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
|
|
20010
20029
|
baseVal: number;
|
|
20011
20030
|
}
|
|
20012
20031
|
|
|
@@ -20021,7 +20040,9 @@ declare var SVGAnimatedNumber: {
|
|
|
20021
20040
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
|
|
20022
20041
|
*/
|
|
20023
20042
|
interface SVGAnimatedNumberList {
|
|
20043
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
|
|
20024
20044
|
readonly animVal: SVGNumberList;
|
|
20045
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
|
|
20025
20046
|
readonly baseVal: SVGNumberList;
|
|
20026
20047
|
}
|
|
20027
20048
|
|
|
@@ -20056,7 +20077,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
|
|
|
20056
20077
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
|
|
20057
20078
|
*/
|
|
20058
20079
|
interface SVGAnimatedRect {
|
|
20080
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
|
|
20059
20081
|
readonly animVal: DOMRectReadOnly;
|
|
20082
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
|
|
20060
20083
|
readonly baseVal: DOMRect;
|
|
20061
20084
|
}
|
|
20062
20085
|
|
|
@@ -20088,7 +20111,9 @@ declare var SVGAnimatedString: {
|
|
|
20088
20111
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
20089
20112
|
*/
|
|
20090
20113
|
interface SVGAnimatedTransformList {
|
|
20114
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
|
|
20091
20115
|
readonly animVal: SVGTransformList;
|
|
20116
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
|
|
20092
20117
|
readonly baseVal: SVGTransformList;
|
|
20093
20118
|
}
|
|
20094
20119
|
|
|
@@ -20101,9 +20126,13 @@ declare var SVGAnimatedTransformList: {
|
|
|
20101
20126
|
interface SVGAnimationElement extends SVGElement, SVGTests {
|
|
20102
20127
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
|
|
20103
20128
|
readonly targetElement: SVGElement | null;
|
|
20129
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
|
|
20104
20130
|
beginElement(): void;
|
|
20131
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
|
|
20105
20132
|
beginElementAt(offset: number): void;
|
|
20133
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
|
|
20106
20134
|
endElement(): void;
|
|
20135
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
|
|
20107
20136
|
endElementAt(offset: number): void;
|
|
20108
20137
|
getCurrentTime(): number;
|
|
20109
20138
|
getSimpleDuration(): number;
|
|
@@ -21702,7 +21731,9 @@ declare var SVGTSpanElement: {
|
|
|
21702
21731
|
};
|
|
21703
21732
|
|
|
21704
21733
|
interface SVGTests {
|
|
21734
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
|
|
21705
21735
|
readonly requiredExtensions: SVGStringList;
|
|
21736
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
|
|
21706
21737
|
readonly systemLanguage: SVGStringList;
|
|
21707
21738
|
}
|
|
21708
21739
|
|
|
@@ -25937,6 +25968,7 @@ interface WebGLRenderingContextBase {
|
|
|
25937
25968
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
25938
25969
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
25939
25970
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
25971
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
25940
25972
|
lineWidth(width: GLfloat): void;
|
|
25941
25973
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
25942
25974
|
linkProgram(program: WebGLProgram): void;
|