@types/web 0.0.229 → 0.0.231
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 +7 -7
- package/iterable.d.ts +1 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +7 -7
- package/ts5.5/iterable.d.ts +1 -1
- package/ts5.6/index.d.ts +7 -7
- package/ts5.6/iterable.d.ts +1 -1
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.231 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.231.
|
package/index.d.ts
CHANGED
|
@@ -20980,7 +20980,7 @@ declare var SVGAnimateTransformElement: {
|
|
|
20980
20980
|
};
|
|
20981
20981
|
|
|
20982
20982
|
/**
|
|
20983
|
-
* The
|
|
20983
|
+
* The **`SVGAnimatedAngle`** interface is used for attributes of basic type \<angle> which can be animated.
|
|
20984
20984
|
*
|
|
20985
20985
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
20986
20986
|
*/
|
|
@@ -20997,7 +20997,7 @@ declare var SVGAnimatedAngle: {
|
|
|
20997
20997
|
};
|
|
20998
20998
|
|
|
20999
20999
|
/**
|
|
21000
|
-
* The
|
|
21000
|
+
* The **`SVGAnimatedBoolean`** interface is used for attributes of type boolean which can be animated.
|
|
21001
21001
|
*
|
|
21002
21002
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
21003
21003
|
*/
|
|
@@ -21031,7 +21031,7 @@ declare var SVGAnimatedEnumeration: {
|
|
|
21031
21031
|
};
|
|
21032
21032
|
|
|
21033
21033
|
/**
|
|
21034
|
-
* The
|
|
21034
|
+
* The **`SVGAnimatedInteger`** interface is used for attributes of basic type \<integer> which can be animated.
|
|
21035
21035
|
*
|
|
21036
21036
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger)
|
|
21037
21037
|
*/
|
|
@@ -21065,7 +21065,7 @@ declare var SVGAnimatedLength: {
|
|
|
21065
21065
|
};
|
|
21066
21066
|
|
|
21067
21067
|
/**
|
|
21068
|
-
* The
|
|
21068
|
+
* The **`SVGAnimatedLengthList`** interface is used for attributes of type SVGLengthList which can be animated.
|
|
21069
21069
|
*
|
|
21070
21070
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
21071
21071
|
*/
|
|
@@ -21174,7 +21174,7 @@ declare var SVGAnimatedString: {
|
|
|
21174
21174
|
};
|
|
21175
21175
|
|
|
21176
21176
|
/**
|
|
21177
|
-
* The
|
|
21177
|
+
* The **`SVGAnimatedTransformList`** interface represents attributes which take a list of numbers and which can be animated.
|
|
21178
21178
|
*
|
|
21179
21179
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
21180
21180
|
*/
|
|
@@ -21268,7 +21268,7 @@ declare var SVGClipPathElement: {
|
|
|
21268
21268
|
};
|
|
21269
21269
|
|
|
21270
21270
|
/**
|
|
21271
|
-
* The **`SVGComponentTransferFunctionElement`** interface
|
|
21271
|
+
* The **`SVGComponentTransferFunctionElement`** interface represents a base interface used by the component transfer function interfaces.
|
|
21272
21272
|
*
|
|
21273
21273
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
|
|
21274
21274
|
*/
|
|
@@ -22686,7 +22686,7 @@ declare var SVGPolylineElement: {
|
|
|
22686
22686
|
};
|
|
22687
22687
|
|
|
22688
22688
|
/**
|
|
22689
|
-
* The
|
|
22689
|
+
* The **`SVGPreserveAspectRatio`** interface corresponds to the preserveAspectRatio attribute.
|
|
22690
22690
|
*
|
|
22691
22691
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)
|
|
22692
22692
|
*/
|
package/iterable.d.ts
CHANGED
|
@@ -380,7 +380,7 @@ interface WebGL2RenderingContextBase {
|
|
|
380
380
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */
|
|
381
381
|
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
|
|
382
382
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */
|
|
383
|
-
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>):
|
|
383
|
+
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;
|
|
384
384
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */
|
|
385
385
|
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
|
|
386
386
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -20959,7 +20959,7 @@ declare var SVGAnimateTransformElement: {
|
|
|
20959
20959
|
};
|
|
20960
20960
|
|
|
20961
20961
|
/**
|
|
20962
|
-
* The
|
|
20962
|
+
* The **`SVGAnimatedAngle`** interface is used for attributes of basic type \<angle> which can be animated.
|
|
20963
20963
|
*
|
|
20964
20964
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
20965
20965
|
*/
|
|
@@ -20976,7 +20976,7 @@ declare var SVGAnimatedAngle: {
|
|
|
20976
20976
|
};
|
|
20977
20977
|
|
|
20978
20978
|
/**
|
|
20979
|
-
* The
|
|
20979
|
+
* The **`SVGAnimatedBoolean`** interface is used for attributes of type boolean which can be animated.
|
|
20980
20980
|
*
|
|
20981
20981
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
20982
20982
|
*/
|
|
@@ -21010,7 +21010,7 @@ declare var SVGAnimatedEnumeration: {
|
|
|
21010
21010
|
};
|
|
21011
21011
|
|
|
21012
21012
|
/**
|
|
21013
|
-
* The
|
|
21013
|
+
* The **`SVGAnimatedInteger`** interface is used for attributes of basic type \<integer> which can be animated.
|
|
21014
21014
|
*
|
|
21015
21015
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger)
|
|
21016
21016
|
*/
|
|
@@ -21044,7 +21044,7 @@ declare var SVGAnimatedLength: {
|
|
|
21044
21044
|
};
|
|
21045
21045
|
|
|
21046
21046
|
/**
|
|
21047
|
-
* The
|
|
21047
|
+
* The **`SVGAnimatedLengthList`** interface is used for attributes of type SVGLengthList which can be animated.
|
|
21048
21048
|
*
|
|
21049
21049
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
21050
21050
|
*/
|
|
@@ -21153,7 +21153,7 @@ declare var SVGAnimatedString: {
|
|
|
21153
21153
|
};
|
|
21154
21154
|
|
|
21155
21155
|
/**
|
|
21156
|
-
* The
|
|
21156
|
+
* The **`SVGAnimatedTransformList`** interface represents attributes which take a list of numbers and which can be animated.
|
|
21157
21157
|
*
|
|
21158
21158
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
21159
21159
|
*/
|
|
@@ -21247,7 +21247,7 @@ declare var SVGClipPathElement: {
|
|
|
21247
21247
|
};
|
|
21248
21248
|
|
|
21249
21249
|
/**
|
|
21250
|
-
* The **`SVGComponentTransferFunctionElement`** interface
|
|
21250
|
+
* The **`SVGComponentTransferFunctionElement`** interface represents a base interface used by the component transfer function interfaces.
|
|
21251
21251
|
*
|
|
21252
21252
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
|
|
21253
21253
|
*/
|
|
@@ -22665,7 +22665,7 @@ declare var SVGPolylineElement: {
|
|
|
22665
22665
|
};
|
|
22666
22666
|
|
|
22667
22667
|
/**
|
|
22668
|
-
* The
|
|
22668
|
+
* The **`SVGPreserveAspectRatio`** interface corresponds to the preserveAspectRatio attribute.
|
|
22669
22669
|
*
|
|
22670
22670
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)
|
|
22671
22671
|
*/
|
package/ts5.5/iterable.d.ts
CHANGED
|
@@ -360,7 +360,7 @@ interface WebGL2RenderingContextBase {
|
|
|
360
360
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */
|
|
361
361
|
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
|
|
362
362
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */
|
|
363
|
-
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>):
|
|
363
|
+
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;
|
|
364
364
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */
|
|
365
365
|
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
|
|
366
366
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -20980,7 +20980,7 @@ declare var SVGAnimateTransformElement: {
|
|
|
20980
20980
|
};
|
|
20981
20981
|
|
|
20982
20982
|
/**
|
|
20983
|
-
* The
|
|
20983
|
+
* The **`SVGAnimatedAngle`** interface is used for attributes of basic type \<angle> which can be animated.
|
|
20984
20984
|
*
|
|
20985
20985
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
|
|
20986
20986
|
*/
|
|
@@ -20997,7 +20997,7 @@ declare var SVGAnimatedAngle: {
|
|
|
20997
20997
|
};
|
|
20998
20998
|
|
|
20999
20999
|
/**
|
|
21000
|
-
* The
|
|
21000
|
+
* The **`SVGAnimatedBoolean`** interface is used for attributes of type boolean which can be animated.
|
|
21001
21001
|
*
|
|
21002
21002
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
|
|
21003
21003
|
*/
|
|
@@ -21031,7 +21031,7 @@ declare var SVGAnimatedEnumeration: {
|
|
|
21031
21031
|
};
|
|
21032
21032
|
|
|
21033
21033
|
/**
|
|
21034
|
-
* The
|
|
21034
|
+
* The **`SVGAnimatedInteger`** interface is used for attributes of basic type \<integer> which can be animated.
|
|
21035
21035
|
*
|
|
21036
21036
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger)
|
|
21037
21037
|
*/
|
|
@@ -21065,7 +21065,7 @@ declare var SVGAnimatedLength: {
|
|
|
21065
21065
|
};
|
|
21066
21066
|
|
|
21067
21067
|
/**
|
|
21068
|
-
* The
|
|
21068
|
+
* The **`SVGAnimatedLengthList`** interface is used for attributes of type SVGLengthList which can be animated.
|
|
21069
21069
|
*
|
|
21070
21070
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
|
|
21071
21071
|
*/
|
|
@@ -21174,7 +21174,7 @@ declare var SVGAnimatedString: {
|
|
|
21174
21174
|
};
|
|
21175
21175
|
|
|
21176
21176
|
/**
|
|
21177
|
-
* The
|
|
21177
|
+
* The **`SVGAnimatedTransformList`** interface represents attributes which take a list of numbers and which can be animated.
|
|
21178
21178
|
*
|
|
21179
21179
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
|
|
21180
21180
|
*/
|
|
@@ -21268,7 +21268,7 @@ declare var SVGClipPathElement: {
|
|
|
21268
21268
|
};
|
|
21269
21269
|
|
|
21270
21270
|
/**
|
|
21271
|
-
* The **`SVGComponentTransferFunctionElement`** interface
|
|
21271
|
+
* The **`SVGComponentTransferFunctionElement`** interface represents a base interface used by the component transfer function interfaces.
|
|
21272
21272
|
*
|
|
21273
21273
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
|
|
21274
21274
|
*/
|
|
@@ -22686,7 +22686,7 @@ declare var SVGPolylineElement: {
|
|
|
22686
22686
|
};
|
|
22687
22687
|
|
|
22688
22688
|
/**
|
|
22689
|
-
* The
|
|
22689
|
+
* The **`SVGPreserveAspectRatio`** interface corresponds to the preserveAspectRatio attribute.
|
|
22690
22690
|
*
|
|
22691
22691
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)
|
|
22692
22692
|
*/
|
package/ts5.6/iterable.d.ts
CHANGED
|
@@ -380,7 +380,7 @@ interface WebGL2RenderingContextBase {
|
|
|
380
380
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */
|
|
381
381
|
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
|
|
382
382
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */
|
|
383
|
-
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>):
|
|
383
|
+
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;
|
|
384
384
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */
|
|
385
385
|
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
|
|
386
386
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */
|