@types/web 0.0.194 → 0.0.195

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 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.194 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.194.
50
+ You can read what changed in version 0.0.195 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.195.
package/index.d.ts CHANGED
@@ -6638,7 +6638,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6638
6638
  m44: number;
6639
6639
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
6640
6640
  invertSelf(): DOMMatrix;
6641
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
6641
6642
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6643
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
6642
6644
  preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6643
6645
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6644
6646
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6724,6 +6726,7 @@ interface DOMMatrixReadOnly {
6724
6726
  flipY(): DOMMatrix;
6725
6727
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6726
6728
  inverse(): DOMMatrix;
6729
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6727
6730
  multiply(other?: DOMMatrixInit): DOMMatrix;
6728
6731
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6729
6732
  rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20249,12 +20252,19 @@ declare var SVGClipPathElement: {
20249
20252
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
20250
20253
  */
20251
20254
  interface SVGComponentTransferFunctionElement extends SVGElement {
20255
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
20252
20256
  readonly amplitude: SVGAnimatedNumber;
20257
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
20253
20258
  readonly exponent: SVGAnimatedNumber;
20259
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
20254
20260
  readonly intercept: SVGAnimatedNumber;
20261
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
20255
20262
  readonly offset: SVGAnimatedNumber;
20263
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
20256
20264
  readonly slope: SVGAnimatedNumber;
20265
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
20257
20266
  readonly tableValues: SVGAnimatedNumberList;
20267
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
20258
20268
  readonly type: SVGAnimatedEnumeration;
20259
20269
  readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
20260
20270
  readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21619,11 +21629,17 @@ declare var SVGRadialGradientElement: {
21619
21629
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
21620
21630
  */
21621
21631
  interface SVGRectElement extends SVGGeometryElement {
21632
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
21622
21633
  readonly height: SVGAnimatedLength;
21634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
21623
21635
  readonly rx: SVGAnimatedLength;
21636
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
21624
21637
  readonly ry: SVGAnimatedLength;
21638
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
21625
21639
  readonly width: SVGAnimatedLength;
21640
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
21626
21641
  readonly x: SVGAnimatedLength;
21642
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
21627
21643
  readonly y: SVGAnimatedLength;
21628
21644
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21629
21645
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.194",
3
+ "version": "0.0.195",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -6631,7 +6631,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6631
6631
  m44: number;
6632
6632
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
6633
6633
  invertSelf(): DOMMatrix;
6634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
6634
6635
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6636
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
6635
6637
  preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6636
6638
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6637
6639
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6717,6 +6719,7 @@ interface DOMMatrixReadOnly {
6717
6719
  flipY(): DOMMatrix;
6718
6720
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6719
6721
  inverse(): DOMMatrix;
6722
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6720
6723
  multiply(other?: DOMMatrixInit): DOMMatrix;
6721
6724
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6722
6725
  rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20228,12 +20231,19 @@ declare var SVGClipPathElement: {
20228
20231
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
20229
20232
  */
20230
20233
  interface SVGComponentTransferFunctionElement extends SVGElement {
20234
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
20231
20235
  readonly amplitude: SVGAnimatedNumber;
20236
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
20232
20237
  readonly exponent: SVGAnimatedNumber;
20238
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
20233
20239
  readonly intercept: SVGAnimatedNumber;
20240
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
20234
20241
  readonly offset: SVGAnimatedNumber;
20242
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
20235
20243
  readonly slope: SVGAnimatedNumber;
20244
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
20236
20245
  readonly tableValues: SVGAnimatedNumberList;
20246
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
20237
20247
  readonly type: SVGAnimatedEnumeration;
20238
20248
  readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
20239
20249
  readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21598,11 +21608,17 @@ declare var SVGRadialGradientElement: {
21598
21608
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
21599
21609
  */
21600
21610
  interface SVGRectElement extends SVGGeometryElement {
21611
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
21601
21612
  readonly height: SVGAnimatedLength;
21613
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
21602
21614
  readonly rx: SVGAnimatedLength;
21615
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
21603
21616
  readonly ry: SVGAnimatedLength;
21617
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
21604
21618
  readonly width: SVGAnimatedLength;
21619
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
21605
21620
  readonly x: SVGAnimatedLength;
21621
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
21606
21622
  readonly y: SVGAnimatedLength;
21607
21623
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21608
21624
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;