@types/web 0.0.189 → 0.0.190
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 +59 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +59 -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.190 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.190.
|
package/index.d.ts
CHANGED
|
@@ -20077,7 +20077,9 @@ declare var SVGAnimatedNumberList: {
|
|
|
20077
20077
|
};
|
|
20078
20078
|
|
|
20079
20079
|
interface SVGAnimatedPoints {
|
|
20080
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/animatedPoints) */
|
|
20080
20081
|
readonly animatedPoints: SVGPointList;
|
|
20082
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/points) */
|
|
20081
20083
|
readonly points: SVGPointList;
|
|
20082
20084
|
}
|
|
20083
20085
|
|
|
@@ -20394,8 +20396,11 @@ declare var SVGFEBlendElement: {
|
|
|
20394
20396
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
|
|
20395
20397
|
*/
|
|
20396
20398
|
interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20399
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
|
|
20397
20400
|
readonly in1: SVGAnimatedString;
|
|
20401
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
|
|
20398
20402
|
readonly type: SVGAnimatedEnumeration;
|
|
20403
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
|
|
20399
20404
|
readonly values: SVGAnimatedNumberList;
|
|
20400
20405
|
readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
|
|
20401
20406
|
readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
|
|
@@ -20571,7 +20576,9 @@ declare var SVGFEDisplacementMapElement: {
|
|
|
20571
20576
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement)
|
|
20572
20577
|
*/
|
|
20573
20578
|
interface SVGFEDistantLightElement extends SVGElement {
|
|
20579
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/azimuth) */
|
|
20574
20580
|
readonly azimuth: SVGAnimatedNumber;
|
|
20581
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/elevation) */
|
|
20575
20582
|
readonly elevation: SVGAnimatedNumber;
|
|
20576
20583
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20577
20584
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20694,9 +20701,13 @@ declare var SVGFEFuncRElement: {
|
|
|
20694
20701
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement)
|
|
20695
20702
|
*/
|
|
20696
20703
|
interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20704
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/in1) */
|
|
20697
20705
|
readonly in1: SVGAnimatedString;
|
|
20706
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationX) */
|
|
20698
20707
|
readonly stdDeviationX: SVGAnimatedNumber;
|
|
20708
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationY) */
|
|
20699
20709
|
readonly stdDeviationY: SVGAnimatedNumber;
|
|
20710
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/setStdDeviation) */
|
|
20700
20711
|
setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
|
|
20701
20712
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20702
20713
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20835,11 +20846,15 @@ declare var SVGFEPointLightElement: {
|
|
|
20835
20846
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement)
|
|
20836
20847
|
*/
|
|
20837
20848
|
interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20849
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1) */
|
|
20838
20850
|
readonly in1: SVGAnimatedString;
|
|
20839
20851
|
readonly kernelUnitLengthX: SVGAnimatedNumber;
|
|
20840
20852
|
readonly kernelUnitLengthY: SVGAnimatedNumber;
|
|
20853
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant) */
|
|
20841
20854
|
readonly specularConstant: SVGAnimatedNumber;
|
|
20855
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularExponent) */
|
|
20842
20856
|
readonly specularExponent: SVGAnimatedNumber;
|
|
20857
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/surfaceScale) */
|
|
20843
20858
|
readonly surfaceScale: SVGAnimatedNumber;
|
|
20844
20859
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20845
20860
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20936,11 +20951,17 @@ declare var SVGFETurbulenceElement: {
|
|
|
20936
20951
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement)
|
|
20937
20952
|
*/
|
|
20938
20953
|
interface SVGFilterElement extends SVGElement, SVGURIReference {
|
|
20954
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/filterUnits) */
|
|
20939
20955
|
readonly filterUnits: SVGAnimatedEnumeration;
|
|
20956
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/height) */
|
|
20940
20957
|
readonly height: SVGAnimatedLength;
|
|
20958
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/primitiveUnits) */
|
|
20941
20959
|
readonly primitiveUnits: SVGAnimatedEnumeration;
|
|
20960
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/width) */
|
|
20942
20961
|
readonly width: SVGAnimatedLength;
|
|
20962
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/x) */
|
|
20943
20963
|
readonly x: SVGAnimatedLength;
|
|
20964
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/y) */
|
|
20944
20965
|
readonly y: SVGAnimatedLength;
|
|
20945
20966
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20946
20967
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21035,8 +21056,11 @@ declare var SVGGeometryElement: {
|
|
|
21035
21056
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement)
|
|
21036
21057
|
*/
|
|
21037
21058
|
interface SVGGradientElement extends SVGElement, SVGURIReference {
|
|
21059
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientTransform) */
|
|
21038
21060
|
readonly gradientTransform: SVGAnimatedTransformList;
|
|
21061
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientUnits) */
|
|
21039
21062
|
readonly gradientUnits: SVGAnimatedEnumeration;
|
|
21063
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/spreadMethod) */
|
|
21040
21064
|
readonly spreadMethod: SVGAnimatedEnumeration;
|
|
21041
21065
|
readonly SVG_SPREADMETHOD_UNKNOWN: 0;
|
|
21042
21066
|
readonly SVG_SPREADMETHOD_PAD: 1;
|
|
@@ -21348,14 +21372,23 @@ declare var SVGNumber: {
|
|
|
21348
21372
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList)
|
|
21349
21373
|
*/
|
|
21350
21374
|
interface SVGNumberList {
|
|
21375
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/length) */
|
|
21351
21376
|
readonly length: number;
|
|
21377
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/numberOfItems) */
|
|
21352
21378
|
readonly numberOfItems: number;
|
|
21379
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/appendItem) */
|
|
21353
21380
|
appendItem(newItem: SVGNumber): SVGNumber;
|
|
21381
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/clear) */
|
|
21354
21382
|
clear(): void;
|
|
21383
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/getItem) */
|
|
21355
21384
|
getItem(index: number): SVGNumber;
|
|
21385
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/initialize) */
|
|
21356
21386
|
initialize(newItem: SVGNumber): SVGNumber;
|
|
21387
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/insertItemBefore) */
|
|
21357
21388
|
insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;
|
|
21389
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/removeItem) */
|
|
21358
21390
|
removeItem(index: number): SVGNumber;
|
|
21391
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/replaceItem) */
|
|
21359
21392
|
replaceItem(newItem: SVGNumber, index: number): SVGNumber;
|
|
21360
21393
|
[index: number]: SVGNumber;
|
|
21361
21394
|
}
|
|
@@ -21655,6 +21688,7 @@ declare var SVGSetElement: {
|
|
|
21655
21688
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement)
|
|
21656
21689
|
*/
|
|
21657
21690
|
interface SVGStopElement extends SVGElement {
|
|
21691
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement/offset) */
|
|
21658
21692
|
readonly offset: SVGAnimatedNumber;
|
|
21659
21693
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21660
21694
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21782,15 +21816,25 @@ interface SVGTests {
|
|
|
21782
21816
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement)
|
|
21783
21817
|
*/
|
|
21784
21818
|
interface SVGTextContentElement extends SVGGraphicsElement {
|
|
21819
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/lengthAdjust) */
|
|
21785
21820
|
readonly lengthAdjust: SVGAnimatedEnumeration;
|
|
21821
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/textLength) */
|
|
21786
21822
|
readonly textLength: SVGAnimatedLength;
|
|
21823
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getCharNumAtPosition) */
|
|
21787
21824
|
getCharNumAtPosition(point?: DOMPointInit): number;
|
|
21825
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getComputedTextLength) */
|
|
21788
21826
|
getComputedTextLength(): number;
|
|
21827
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getEndPositionOfChar) */
|
|
21789
21828
|
getEndPositionOfChar(charnum: number): DOMPoint;
|
|
21829
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getExtentOfChar) */
|
|
21790
21830
|
getExtentOfChar(charnum: number): DOMRect;
|
|
21831
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getNumberOfChars) */
|
|
21791
21832
|
getNumberOfChars(): number;
|
|
21833
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getRotationOfChar) */
|
|
21792
21834
|
getRotationOfChar(charnum: number): number;
|
|
21835
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getStartPositionOfChar) */
|
|
21793
21836
|
getStartPositionOfChar(charnum: number): DOMPoint;
|
|
21837
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getSubStringLength) */
|
|
21794
21838
|
getSubStringLength(charnum: number, nchars: number): number;
|
|
21795
21839
|
/** @deprecated */
|
|
21796
21840
|
selectSubString(charnum: number, nchars: number): void;
|
|
@@ -21834,8 +21878,11 @@ declare var SVGTextElement: {
|
|
|
21834
21878
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement)
|
|
21835
21879
|
*/
|
|
21836
21880
|
interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
|
|
21881
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/method) */
|
|
21837
21882
|
readonly method: SVGAnimatedEnumeration;
|
|
21883
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/spacing) */
|
|
21838
21884
|
readonly spacing: SVGAnimatedEnumeration;
|
|
21885
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/startOffset) */
|
|
21839
21886
|
readonly startOffset: SVGAnimatedLength;
|
|
21840
21887
|
readonly TEXTPATH_METHODTYPE_UNKNOWN: 0;
|
|
21841
21888
|
readonly TEXTPATH_METHODTYPE_ALIGN: 1;
|
|
@@ -21950,16 +21997,27 @@ declare var SVGTransform: {
|
|
|
21950
21997
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList)
|
|
21951
21998
|
*/
|
|
21952
21999
|
interface SVGTransformList {
|
|
22000
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/length) */
|
|
21953
22001
|
readonly length: number;
|
|
22002
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/numberOfItems) */
|
|
21954
22003
|
readonly numberOfItems: number;
|
|
22004
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/appendItem) */
|
|
21955
22005
|
appendItem(newItem: SVGTransform): SVGTransform;
|
|
22006
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/clear) */
|
|
21956
22007
|
clear(): void;
|
|
22008
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/consolidate) */
|
|
21957
22009
|
consolidate(): SVGTransform | null;
|
|
22010
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/createSVGTransformFromMatrix) */
|
|
21958
22011
|
createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;
|
|
22012
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/getItem) */
|
|
21959
22013
|
getItem(index: number): SVGTransform;
|
|
22014
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/initialize) */
|
|
21960
22015
|
initialize(newItem: SVGTransform): SVGTransform;
|
|
22016
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/insertItemBefore) */
|
|
21961
22017
|
insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;
|
|
22018
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/removeItem) */
|
|
21962
22019
|
removeItem(index: number): SVGTransform;
|
|
22020
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/replaceItem) */
|
|
21963
22021
|
replaceItem(newItem: SVGTransform, index: number): SVGTransform;
|
|
21964
22022
|
[index: number]: SVGTransform;
|
|
21965
22023
|
}
|
|
@@ -29370,7 +29428,7 @@ type OverSampleType = "2x" | "4x" | "none";
|
|
|
29370
29428
|
type PanningModelType = "HRTF" | "equalpower";
|
|
29371
29429
|
type PaymentComplete = "fail" | "success" | "unknown";
|
|
29372
29430
|
type PaymentShippingType = "delivery" | "pickup" | "shipping";
|
|
29373
|
-
type PermissionName = "geolocation" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
|
|
29431
|
+
type PermissionName = "camera" | "geolocation" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
|
|
29374
29432
|
type PermissionState = "denied" | "granted" | "prompt";
|
|
29375
29433
|
type PlaybackDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
|
|
29376
29434
|
type PositionAlignSetting = "auto" | "center" | "line-left" | "line-right";
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -20056,7 +20056,9 @@ declare var SVGAnimatedNumberList: {
|
|
|
20056
20056
|
};
|
|
20057
20057
|
|
|
20058
20058
|
interface SVGAnimatedPoints {
|
|
20059
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/animatedPoints) */
|
|
20059
20060
|
readonly animatedPoints: SVGPointList;
|
|
20061
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/points) */
|
|
20060
20062
|
readonly points: SVGPointList;
|
|
20061
20063
|
}
|
|
20062
20064
|
|
|
@@ -20373,8 +20375,11 @@ declare var SVGFEBlendElement: {
|
|
|
20373
20375
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
|
|
20374
20376
|
*/
|
|
20375
20377
|
interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20378
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
|
|
20376
20379
|
readonly in1: SVGAnimatedString;
|
|
20380
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
|
|
20377
20381
|
readonly type: SVGAnimatedEnumeration;
|
|
20382
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
|
|
20378
20383
|
readonly values: SVGAnimatedNumberList;
|
|
20379
20384
|
readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
|
|
20380
20385
|
readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
|
|
@@ -20550,7 +20555,9 @@ declare var SVGFEDisplacementMapElement: {
|
|
|
20550
20555
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement)
|
|
20551
20556
|
*/
|
|
20552
20557
|
interface SVGFEDistantLightElement extends SVGElement {
|
|
20558
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/azimuth) */
|
|
20553
20559
|
readonly azimuth: SVGAnimatedNumber;
|
|
20560
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/elevation) */
|
|
20554
20561
|
readonly elevation: SVGAnimatedNumber;
|
|
20555
20562
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20556
20563
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20673,9 +20680,13 @@ declare var SVGFEFuncRElement: {
|
|
|
20673
20680
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement)
|
|
20674
20681
|
*/
|
|
20675
20682
|
interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20683
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/in1) */
|
|
20676
20684
|
readonly in1: SVGAnimatedString;
|
|
20685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationX) */
|
|
20677
20686
|
readonly stdDeviationX: SVGAnimatedNumber;
|
|
20687
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationY) */
|
|
20678
20688
|
readonly stdDeviationY: SVGAnimatedNumber;
|
|
20689
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/setStdDeviation) */
|
|
20679
20690
|
setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
|
|
20680
20691
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20681
20692
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20814,11 +20825,15 @@ declare var SVGFEPointLightElement: {
|
|
|
20814
20825
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement)
|
|
20815
20826
|
*/
|
|
20816
20827
|
interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20828
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1) */
|
|
20817
20829
|
readonly in1: SVGAnimatedString;
|
|
20818
20830
|
readonly kernelUnitLengthX: SVGAnimatedNumber;
|
|
20819
20831
|
readonly kernelUnitLengthY: SVGAnimatedNumber;
|
|
20832
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant) */
|
|
20820
20833
|
readonly specularConstant: SVGAnimatedNumber;
|
|
20834
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularExponent) */
|
|
20821
20835
|
readonly specularExponent: SVGAnimatedNumber;
|
|
20836
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/surfaceScale) */
|
|
20822
20837
|
readonly surfaceScale: SVGAnimatedNumber;
|
|
20823
20838
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20824
20839
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20915,11 +20930,17 @@ declare var SVGFETurbulenceElement: {
|
|
|
20915
20930
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement)
|
|
20916
20931
|
*/
|
|
20917
20932
|
interface SVGFilterElement extends SVGElement, SVGURIReference {
|
|
20933
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/filterUnits) */
|
|
20918
20934
|
readonly filterUnits: SVGAnimatedEnumeration;
|
|
20935
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/height) */
|
|
20919
20936
|
readonly height: SVGAnimatedLength;
|
|
20937
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/primitiveUnits) */
|
|
20920
20938
|
readonly primitiveUnits: SVGAnimatedEnumeration;
|
|
20939
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/width) */
|
|
20921
20940
|
readonly width: SVGAnimatedLength;
|
|
20941
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/x) */
|
|
20922
20942
|
readonly x: SVGAnimatedLength;
|
|
20943
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/y) */
|
|
20923
20944
|
readonly y: SVGAnimatedLength;
|
|
20924
20945
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20925
20946
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21014,8 +21035,11 @@ declare var SVGGeometryElement: {
|
|
|
21014
21035
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement)
|
|
21015
21036
|
*/
|
|
21016
21037
|
interface SVGGradientElement extends SVGElement, SVGURIReference {
|
|
21038
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientTransform) */
|
|
21017
21039
|
readonly gradientTransform: SVGAnimatedTransformList;
|
|
21040
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientUnits) */
|
|
21018
21041
|
readonly gradientUnits: SVGAnimatedEnumeration;
|
|
21042
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/spreadMethod) */
|
|
21019
21043
|
readonly spreadMethod: SVGAnimatedEnumeration;
|
|
21020
21044
|
readonly SVG_SPREADMETHOD_UNKNOWN: 0;
|
|
21021
21045
|
readonly SVG_SPREADMETHOD_PAD: 1;
|
|
@@ -21327,14 +21351,23 @@ declare var SVGNumber: {
|
|
|
21327
21351
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList)
|
|
21328
21352
|
*/
|
|
21329
21353
|
interface SVGNumberList {
|
|
21354
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/length) */
|
|
21330
21355
|
readonly length: number;
|
|
21356
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/numberOfItems) */
|
|
21331
21357
|
readonly numberOfItems: number;
|
|
21358
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/appendItem) */
|
|
21332
21359
|
appendItem(newItem: SVGNumber): SVGNumber;
|
|
21360
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/clear) */
|
|
21333
21361
|
clear(): void;
|
|
21362
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/getItem) */
|
|
21334
21363
|
getItem(index: number): SVGNumber;
|
|
21364
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/initialize) */
|
|
21335
21365
|
initialize(newItem: SVGNumber): SVGNumber;
|
|
21366
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/insertItemBefore) */
|
|
21336
21367
|
insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;
|
|
21368
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/removeItem) */
|
|
21337
21369
|
removeItem(index: number): SVGNumber;
|
|
21370
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/replaceItem) */
|
|
21338
21371
|
replaceItem(newItem: SVGNumber, index: number): SVGNumber;
|
|
21339
21372
|
[index: number]: SVGNumber;
|
|
21340
21373
|
}
|
|
@@ -21634,6 +21667,7 @@ declare var SVGSetElement: {
|
|
|
21634
21667
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement)
|
|
21635
21668
|
*/
|
|
21636
21669
|
interface SVGStopElement extends SVGElement {
|
|
21670
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement/offset) */
|
|
21637
21671
|
readonly offset: SVGAnimatedNumber;
|
|
21638
21672
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21639
21673
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21761,15 +21795,25 @@ interface SVGTests {
|
|
|
21761
21795
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement)
|
|
21762
21796
|
*/
|
|
21763
21797
|
interface SVGTextContentElement extends SVGGraphicsElement {
|
|
21798
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/lengthAdjust) */
|
|
21764
21799
|
readonly lengthAdjust: SVGAnimatedEnumeration;
|
|
21800
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/textLength) */
|
|
21765
21801
|
readonly textLength: SVGAnimatedLength;
|
|
21802
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getCharNumAtPosition) */
|
|
21766
21803
|
getCharNumAtPosition(point?: DOMPointInit): number;
|
|
21804
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getComputedTextLength) */
|
|
21767
21805
|
getComputedTextLength(): number;
|
|
21806
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getEndPositionOfChar) */
|
|
21768
21807
|
getEndPositionOfChar(charnum: number): DOMPoint;
|
|
21808
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getExtentOfChar) */
|
|
21769
21809
|
getExtentOfChar(charnum: number): DOMRect;
|
|
21810
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getNumberOfChars) */
|
|
21770
21811
|
getNumberOfChars(): number;
|
|
21812
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getRotationOfChar) */
|
|
21771
21813
|
getRotationOfChar(charnum: number): number;
|
|
21814
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getStartPositionOfChar) */
|
|
21772
21815
|
getStartPositionOfChar(charnum: number): DOMPoint;
|
|
21816
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getSubStringLength) */
|
|
21773
21817
|
getSubStringLength(charnum: number, nchars: number): number;
|
|
21774
21818
|
/** @deprecated */
|
|
21775
21819
|
selectSubString(charnum: number, nchars: number): void;
|
|
@@ -21813,8 +21857,11 @@ declare var SVGTextElement: {
|
|
|
21813
21857
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement)
|
|
21814
21858
|
*/
|
|
21815
21859
|
interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
|
|
21860
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/method) */
|
|
21816
21861
|
readonly method: SVGAnimatedEnumeration;
|
|
21862
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/spacing) */
|
|
21817
21863
|
readonly spacing: SVGAnimatedEnumeration;
|
|
21864
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/startOffset) */
|
|
21818
21865
|
readonly startOffset: SVGAnimatedLength;
|
|
21819
21866
|
readonly TEXTPATH_METHODTYPE_UNKNOWN: 0;
|
|
21820
21867
|
readonly TEXTPATH_METHODTYPE_ALIGN: 1;
|
|
@@ -21929,16 +21976,27 @@ declare var SVGTransform: {
|
|
|
21929
21976
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList)
|
|
21930
21977
|
*/
|
|
21931
21978
|
interface SVGTransformList {
|
|
21979
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/length) */
|
|
21932
21980
|
readonly length: number;
|
|
21981
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/numberOfItems) */
|
|
21933
21982
|
readonly numberOfItems: number;
|
|
21983
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/appendItem) */
|
|
21934
21984
|
appendItem(newItem: SVGTransform): SVGTransform;
|
|
21985
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/clear) */
|
|
21935
21986
|
clear(): void;
|
|
21987
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/consolidate) */
|
|
21936
21988
|
consolidate(): SVGTransform | null;
|
|
21989
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/createSVGTransformFromMatrix) */
|
|
21937
21990
|
createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;
|
|
21991
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/getItem) */
|
|
21938
21992
|
getItem(index: number): SVGTransform;
|
|
21993
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/initialize) */
|
|
21939
21994
|
initialize(newItem: SVGTransform): SVGTransform;
|
|
21995
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/insertItemBefore) */
|
|
21940
21996
|
insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;
|
|
21997
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/removeItem) */
|
|
21941
21998
|
removeItem(index: number): SVGTransform;
|
|
21999
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/replaceItem) */
|
|
21942
22000
|
replaceItem(newItem: SVGTransform, index: number): SVGTransform;
|
|
21943
22001
|
[index: number]: SVGTransform;
|
|
21944
22002
|
}
|
|
@@ -29348,7 +29406,7 @@ type OverSampleType = "2x" | "4x" | "none";
|
|
|
29348
29406
|
type PanningModelType = "HRTF" | "equalpower";
|
|
29349
29407
|
type PaymentComplete = "fail" | "success" | "unknown";
|
|
29350
29408
|
type PaymentShippingType = "delivery" | "pickup" | "shipping";
|
|
29351
|
-
type PermissionName = "geolocation" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
|
|
29409
|
+
type PermissionName = "camera" | "geolocation" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
|
|
29352
29410
|
type PermissionState = "denied" | "granted" | "prompt";
|
|
29353
29411
|
type PlaybackDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
|
|
29354
29412
|
type PositionAlignSetting = "auto" | "center" | "line-left" | "line-right";
|