@types/web 0.0.201 → 0.0.203
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 +286 -66
- package/package.json +1 -1
- package/ts5.5/index.d.ts +286 -66
package/index.d.ts
CHANGED
|
@@ -371,6 +371,38 @@ interface ConvolverOptions extends AudioNodeOptions {
|
|
|
371
371
|
disableNormalization?: boolean;
|
|
372
372
|
}
|
|
373
373
|
|
|
374
|
+
interface CookieChangeEventInit extends EventInit {
|
|
375
|
+
changed?: CookieList;
|
|
376
|
+
deleted?: CookieList;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
interface CookieInit {
|
|
380
|
+
domain?: string | null;
|
|
381
|
+
expires?: DOMHighResTimeStamp | null;
|
|
382
|
+
name: string;
|
|
383
|
+
partitioned?: boolean;
|
|
384
|
+
path?: string;
|
|
385
|
+
sameSite?: CookieSameSite;
|
|
386
|
+
value: string;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
interface CookieListItem {
|
|
390
|
+
name?: string;
|
|
391
|
+
value?: string;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
interface CookieStoreDeleteOptions {
|
|
395
|
+
domain?: string | null;
|
|
396
|
+
name: string;
|
|
397
|
+
partitioned?: boolean;
|
|
398
|
+
path?: string;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
interface CookieStoreGetOptions {
|
|
402
|
+
name?: string;
|
|
403
|
+
url?: string;
|
|
404
|
+
}
|
|
405
|
+
|
|
374
406
|
interface CredentialCreationOptions {
|
|
375
407
|
publicKey?: PublicKeyCredentialCreationOptions;
|
|
376
408
|
signal?: AbortSignal;
|
|
@@ -2014,6 +2046,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
|
|
|
2014
2046
|
}
|
|
2015
2047
|
|
|
2016
2048
|
interface ShadowRootInit {
|
|
2049
|
+
clonable?: boolean;
|
|
2017
2050
|
delegatesFocus?: boolean;
|
|
2018
2051
|
mode: ShadowRootMode;
|
|
2019
2052
|
serializable?: boolean;
|
|
@@ -5326,7 +5359,7 @@ interface CSSStyleDeclaration {
|
|
|
5326
5359
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)
|
|
5327
5360
|
*/
|
|
5328
5361
|
webkitJustifyContent: string;
|
|
5329
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS
|
|
5362
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-clamp) */
|
|
5330
5363
|
webkitLineClamp: string;
|
|
5331
5364
|
/**
|
|
5332
5365
|
* @deprecated This is a legacy alias of `mask`.
|
|
@@ -6353,6 +6386,58 @@ declare var ConvolverNode: {
|
|
|
6353
6386
|
new(context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
6354
6387
|
};
|
|
6355
6388
|
|
|
6389
|
+
/**
|
|
6390
|
+
* Available only in secure contexts.
|
|
6391
|
+
*
|
|
6392
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent)
|
|
6393
|
+
*/
|
|
6394
|
+
interface CookieChangeEvent extends Event {
|
|
6395
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/changed) */
|
|
6396
|
+
readonly changed: ReadonlyArray<CookieListItem>;
|
|
6397
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/deleted) */
|
|
6398
|
+
readonly deleted: ReadonlyArray<CookieListItem>;
|
|
6399
|
+
}
|
|
6400
|
+
|
|
6401
|
+
declare var CookieChangeEvent: {
|
|
6402
|
+
prototype: CookieChangeEvent;
|
|
6403
|
+
new(type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
6404
|
+
};
|
|
6405
|
+
|
|
6406
|
+
interface CookieStoreEventMap {
|
|
6407
|
+
"change": CookieChangeEvent;
|
|
6408
|
+
}
|
|
6409
|
+
|
|
6410
|
+
/**
|
|
6411
|
+
* Available only in secure contexts.
|
|
6412
|
+
*
|
|
6413
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore)
|
|
6414
|
+
*/
|
|
6415
|
+
interface CookieStore extends EventTarget {
|
|
6416
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/change_event) */
|
|
6417
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
6418
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/delete) */
|
|
6419
|
+
delete(name: string): Promise<void>;
|
|
6420
|
+
delete(options: CookieStoreDeleteOptions): Promise<void>;
|
|
6421
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/get) */
|
|
6422
|
+
get(name: string): Promise<CookieListItem | null>;
|
|
6423
|
+
get(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
6424
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/getAll) */
|
|
6425
|
+
getAll(name: string): Promise<CookieList>;
|
|
6426
|
+
getAll(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
6427
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/set) */
|
|
6428
|
+
set(name: string, value: string): Promise<void>;
|
|
6429
|
+
set(options: CookieInit): Promise<void>;
|
|
6430
|
+
addEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
6431
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
6432
|
+
removeEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
6433
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
6434
|
+
}
|
|
6435
|
+
|
|
6436
|
+
declare var CookieStore: {
|
|
6437
|
+
prototype: CookieStore;
|
|
6438
|
+
new(): CookieStore;
|
|
6439
|
+
};
|
|
6440
|
+
|
|
6356
6441
|
/**
|
|
6357
6442
|
* This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
|
|
6358
6443
|
*
|
|
@@ -6657,10 +6742,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
6657
6742
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6658
6743
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
6659
6744
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6745
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
|
|
6660
6746
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6747
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
|
|
6661
6748
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
6662
6749
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
6663
6750
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6751
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
|
|
6664
6752
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6665
6753
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6666
6754
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
|
|
@@ -6745,15 +6833,21 @@ interface DOMMatrixReadOnly {
|
|
|
6745
6833
|
inverse(): DOMMatrix;
|
|
6746
6834
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
6747
6835
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
6836
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
|
|
6748
6837
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6838
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
|
|
6749
6839
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6840
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
|
|
6750
6841
|
rotateFromVector(x?: number, y?: number): DOMMatrix;
|
|
6751
6842
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
|
|
6752
6843
|
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6844
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
|
|
6753
6845
|
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6754
6846
|
/** @deprecated */
|
|
6755
6847
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
6848
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
|
|
6756
6849
|
skewX(sx?: number): DOMMatrix;
|
|
6850
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
|
|
6757
6851
|
skewY(sy?: number): DOMMatrix;
|
|
6758
6852
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
6759
6853
|
toFloat32Array(): Float32Array;
|
|
@@ -7731,6 +7825,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7731
7825
|
createEvent(eventInterface: "CloseEvent"): CloseEvent;
|
|
7732
7826
|
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
|
|
7733
7827
|
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
|
|
7828
|
+
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
|
|
7734
7829
|
createEvent(eventInterface: "CustomEvent"): CustomEvent;
|
|
7735
7830
|
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
|
|
7736
7831
|
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
|
@@ -10690,6 +10785,8 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10690
10785
|
readonly accessKeyLabel: string;
|
|
10691
10786
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) */
|
|
10692
10787
|
autocapitalize: string;
|
|
10788
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocorrect) */
|
|
10789
|
+
autocorrect: boolean;
|
|
10693
10790
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) */
|
|
10694
10791
|
dir: string;
|
|
10695
10792
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable) */
|
|
@@ -18744,6 +18841,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
18744
18841
|
declare var PublicKeyCredential: {
|
|
18745
18842
|
prototype: PublicKeyCredential;
|
|
18746
18843
|
new(): PublicKeyCredential;
|
|
18844
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientCapabilities_static) */
|
|
18747
18845
|
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
18748
18846
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable_static) */
|
|
18749
18847
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
@@ -20379,9 +20477,13 @@ declare var SVGElement: {
|
|
|
20379
20477
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
|
|
20380
20478
|
*/
|
|
20381
20479
|
interface SVGEllipseElement extends SVGGeometryElement {
|
|
20480
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
|
|
20382
20481
|
readonly cx: SVGAnimatedLength;
|
|
20482
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
|
|
20383
20483
|
readonly cy: SVGAnimatedLength;
|
|
20484
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
|
|
20384
20485
|
readonly rx: SVGAnimatedLength;
|
|
20486
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
|
|
20385
20487
|
readonly ry: SVGAnimatedLength;
|
|
20386
20488
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20387
20489
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20400,8 +20502,11 @@ declare var SVGEllipseElement: {
|
|
|
20400
20502
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement)
|
|
20401
20503
|
*/
|
|
20402
20504
|
interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in1) */
|
|
20403
20506
|
readonly in1: SVGAnimatedString;
|
|
20507
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in2) */
|
|
20404
20508
|
readonly in2: SVGAnimatedString;
|
|
20509
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/mode) */
|
|
20405
20510
|
readonly mode: SVGAnimatedEnumeration;
|
|
20406
20511
|
readonly SVG_FEBLEND_MODE_UNKNOWN: 0;
|
|
20407
20512
|
readonly SVG_FEBLEND_MODE_NORMAL: 1;
|
|
@@ -20487,6 +20592,7 @@ declare var SVGFEColorMatrixElement: {
|
|
|
20487
20592
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement)
|
|
20488
20593
|
*/
|
|
20489
20594
|
interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20595
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement/in1) */
|
|
20490
20596
|
readonly in1: SVGAnimatedString;
|
|
20491
20597
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20492
20598
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20505,12 +20611,19 @@ declare var SVGFEComponentTransferElement: {
|
|
|
20505
20611
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement)
|
|
20506
20612
|
*/
|
|
20507
20613
|
interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20614
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in1) */
|
|
20508
20615
|
readonly in1: SVGAnimatedString;
|
|
20616
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in2) */
|
|
20509
20617
|
readonly in2: SVGAnimatedString;
|
|
20618
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k1) */
|
|
20510
20619
|
readonly k1: SVGAnimatedNumber;
|
|
20620
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k2) */
|
|
20511
20621
|
readonly k2: SVGAnimatedNumber;
|
|
20622
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k3) */
|
|
20512
20623
|
readonly k3: SVGAnimatedNumber;
|
|
20624
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k4) */
|
|
20513
20625
|
readonly k4: SVGAnimatedNumber;
|
|
20626
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/operator) */
|
|
20514
20627
|
readonly operator: SVGAnimatedEnumeration;
|
|
20515
20628
|
readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: 0;
|
|
20516
20629
|
readonly SVG_FECOMPOSITE_OPERATOR_OVER: 1;
|
|
@@ -20543,17 +20656,29 @@ declare var SVGFECompositeElement: {
|
|
|
20543
20656
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)
|
|
20544
20657
|
*/
|
|
20545
20658
|
interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20659
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias) */
|
|
20546
20660
|
readonly bias: SVGAnimatedNumber;
|
|
20661
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor) */
|
|
20547
20662
|
readonly divisor: SVGAnimatedNumber;
|
|
20663
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode) */
|
|
20548
20664
|
readonly edgeMode: SVGAnimatedEnumeration;
|
|
20665
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1) */
|
|
20549
20666
|
readonly in1: SVGAnimatedString;
|
|
20667
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix) */
|
|
20550
20668
|
readonly kernelMatrix: SVGAnimatedNumberList;
|
|
20669
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX) */
|
|
20551
20670
|
readonly kernelUnitLengthX: SVGAnimatedNumber;
|
|
20671
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY) */
|
|
20552
20672
|
readonly kernelUnitLengthY: SVGAnimatedNumber;
|
|
20673
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX) */
|
|
20553
20674
|
readonly orderX: SVGAnimatedInteger;
|
|
20675
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY) */
|
|
20554
20676
|
readonly orderY: SVGAnimatedInteger;
|
|
20677
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha) */
|
|
20555
20678
|
readonly preserveAlpha: SVGAnimatedBoolean;
|
|
20679
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX) */
|
|
20556
20680
|
readonly targetX: SVGAnimatedInteger;
|
|
20681
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY) */
|
|
20557
20682
|
readonly targetY: SVGAnimatedInteger;
|
|
20558
20683
|
readonly SVG_EDGEMODE_UNKNOWN: 0;
|
|
20559
20684
|
readonly SVG_EDGEMODE_DUPLICATE: 1;
|
|
@@ -20607,10 +20732,15 @@ declare var SVGFEDiffuseLightingElement: {
|
|
|
20607
20732
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)
|
|
20608
20733
|
*/
|
|
20609
20734
|
interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20735
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1) */
|
|
20610
20736
|
readonly in1: SVGAnimatedString;
|
|
20737
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2) */
|
|
20611
20738
|
readonly in2: SVGAnimatedString;
|
|
20739
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale) */
|
|
20612
20740
|
readonly scale: SVGAnimatedNumber;
|
|
20741
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector) */
|
|
20613
20742
|
readonly xChannelSelector: SVGAnimatedEnumeration;
|
|
20743
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector) */
|
|
20614
20744
|
readonly yChannelSelector: SVGAnimatedEnumeration;
|
|
20615
20745
|
readonly SVG_CHANNEL_UNKNOWN: 0;
|
|
20616
20746
|
readonly SVG_CHANNEL_R: 1;
|
|
@@ -20656,11 +20786,17 @@ declare var SVGFEDistantLightElement: {
|
|
|
20656
20786
|
|
|
20657
20787
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement) */
|
|
20658
20788
|
interface SVGFEDropShadowElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20789
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dx) */
|
|
20659
20790
|
readonly dx: SVGAnimatedNumber;
|
|
20791
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dy) */
|
|
20660
20792
|
readonly dy: SVGAnimatedNumber;
|
|
20793
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/in1) */
|
|
20661
20794
|
readonly in1: SVGAnimatedString;
|
|
20795
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationX) */
|
|
20662
20796
|
readonly stdDeviationX: SVGAnimatedNumber;
|
|
20797
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationY) */
|
|
20663
20798
|
readonly stdDeviationY: SVGAnimatedNumber;
|
|
20799
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/setStdDeviation) */
|
|
20664
20800
|
setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
|
|
20665
20801
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20666
20802
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20789,6 +20925,7 @@ declare var SVGFEGaussianBlurElement: {
|
|
|
20789
20925
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement)
|
|
20790
20926
|
*/
|
|
20791
20927
|
interface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {
|
|
20928
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement/preserveAspectRatio) */
|
|
20792
20929
|
readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
|
|
20793
20930
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20794
20931
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20874,8 +21011,11 @@ declare var SVGFEMorphologyElement: {
|
|
|
20874
21011
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)
|
|
20875
21012
|
*/
|
|
20876
21013
|
interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
21014
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx) */
|
|
20877
21015
|
readonly dx: SVGAnimatedNumber;
|
|
21016
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy) */
|
|
20878
21017
|
readonly dy: SVGAnimatedNumber;
|
|
21018
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1) */
|
|
20879
21019
|
readonly in1: SVGAnimatedString;
|
|
20880
21020
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20881
21021
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20944,10 +21084,15 @@ declare var SVGFESpecularLightingElement: {
|
|
|
20944
21084
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)
|
|
20945
21085
|
*/
|
|
20946
21086
|
interface SVGFESpotLightElement extends SVGElement {
|
|
21087
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle) */
|
|
20947
21088
|
readonly limitingConeAngle: SVGAnimatedNumber;
|
|
21089
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX) */
|
|
20948
21090
|
readonly pointsAtX: SVGAnimatedNumber;
|
|
21091
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY) */
|
|
20949
21092
|
readonly pointsAtY: SVGAnimatedNumber;
|
|
21093
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ) */
|
|
20950
21094
|
readonly pointsAtZ: SVGAnimatedNumber;
|
|
21095
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent) */
|
|
20951
21096
|
readonly specularExponent: SVGAnimatedNumber;
|
|
20952
21097
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
|
|
20953
21098
|
readonly x: SVGAnimatedNumber;
|
|
@@ -20972,6 +21117,7 @@ declare var SVGFESpotLightElement: {
|
|
|
20972
21117
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
|
|
20973
21118
|
*/
|
|
20974
21119
|
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
21120
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
|
|
20975
21121
|
readonly in1: SVGAnimatedString;
|
|
20976
21122
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20977
21123
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20990,11 +21136,17 @@ declare var SVGFETileElement: {
|
|
|
20990
21136
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement)
|
|
20991
21137
|
*/
|
|
20992
21138
|
interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
21139
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyX) */
|
|
20993
21140
|
readonly baseFrequencyX: SVGAnimatedNumber;
|
|
21141
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyY) */
|
|
20994
21142
|
readonly baseFrequencyY: SVGAnimatedNumber;
|
|
21143
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/numOctaves) */
|
|
20995
21144
|
readonly numOctaves: SVGAnimatedInteger;
|
|
21145
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/seed) */
|
|
20996
21146
|
readonly seed: SVGAnimatedNumber;
|
|
21147
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/stitchTiles) */
|
|
20997
21148
|
readonly stitchTiles: SVGAnimatedEnumeration;
|
|
21149
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/type) */
|
|
20998
21150
|
readonly type: SVGAnimatedEnumeration;
|
|
20999
21151
|
readonly SVG_TURBULENCE_TYPE_UNKNOWN: 0;
|
|
21000
21152
|
readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: 1;
|
|
@@ -21049,10 +21201,15 @@ declare var SVGFilterElement: {
|
|
|
21049
21201
|
};
|
|
21050
21202
|
|
|
21051
21203
|
interface SVGFilterPrimitiveStandardAttributes {
|
|
21204
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */
|
|
21052
21205
|
readonly height: SVGAnimatedLength;
|
|
21206
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */
|
|
21053
21207
|
readonly result: SVGAnimatedString;
|
|
21208
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */
|
|
21054
21209
|
readonly width: SVGAnimatedLength;
|
|
21210
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */
|
|
21055
21211
|
readonly x: SVGAnimatedLength;
|
|
21212
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */
|
|
21056
21213
|
readonly y: SVGAnimatedLength;
|
|
21057
21214
|
}
|
|
21058
21215
|
|
|
@@ -21069,9 +21226,13 @@ interface SVGFitToViewBox {
|
|
|
21069
21226
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement)
|
|
21070
21227
|
*/
|
|
21071
21228
|
interface SVGForeignObjectElement extends SVGGraphicsElement {
|
|
21229
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/height) */
|
|
21072
21230
|
readonly height: SVGAnimatedLength;
|
|
21231
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/width) */
|
|
21073
21232
|
readonly width: SVGAnimatedLength;
|
|
21233
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/x) */
|
|
21074
21234
|
readonly x: SVGAnimatedLength;
|
|
21235
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/y) */
|
|
21075
21236
|
readonly y: SVGAnimatedLength;
|
|
21076
21237
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21077
21238
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21161,10 +21322,13 @@ declare var SVGGradientElement: {
|
|
|
21161
21322
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement)
|
|
21162
21323
|
*/
|
|
21163
21324
|
interface SVGGraphicsElement extends SVGElement, SVGTests {
|
|
21325
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/transform) */
|
|
21164
21326
|
readonly transform: SVGAnimatedTransformList;
|
|
21165
21327
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getBBox) */
|
|
21166
21328
|
getBBox(options?: SVGBoundingBoxOptions): DOMRect;
|
|
21329
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getCTM) */
|
|
21167
21330
|
getCTM(): DOMMatrix | null;
|
|
21331
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getScreenCTM) */
|
|
21168
21332
|
getScreenCTM(): DOMMatrix | null;
|
|
21169
21333
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21170
21334
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21211,11 +21375,17 @@ declare var SVGImageElement: {
|
|
|
21211
21375
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength)
|
|
21212
21376
|
*/
|
|
21213
21377
|
interface SVGLength {
|
|
21378
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/unitType) */
|
|
21214
21379
|
readonly unitType: number;
|
|
21380
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/value) */
|
|
21215
21381
|
value: number;
|
|
21382
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueAsString) */
|
|
21216
21383
|
valueAsString: string;
|
|
21384
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueInSpecifiedUnits) */
|
|
21217
21385
|
valueInSpecifiedUnits: number;
|
|
21386
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/convertToSpecifiedUnits) */
|
|
21218
21387
|
convertToSpecifiedUnits(unitType: number): void;
|
|
21388
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/newValueSpecifiedUnits) */
|
|
21219
21389
|
newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;
|
|
21220
21390
|
readonly SVG_LENGTHTYPE_UNKNOWN: 0;
|
|
21221
21391
|
readonly SVG_LENGTHTYPE_NUMBER: 1;
|
|
@@ -21436,6 +21606,7 @@ declare var SVGMetadataElement: {
|
|
|
21436
21606
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber)
|
|
21437
21607
|
*/
|
|
21438
21608
|
interface SVGNumber {
|
|
21609
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber/value) */
|
|
21439
21610
|
value: number;
|
|
21440
21611
|
}
|
|
21441
21612
|
|
|
@@ -21499,6 +21670,7 @@ declare var SVGPathElement: {
|
|
|
21499
21670
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement)
|
|
21500
21671
|
*/
|
|
21501
21672
|
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
|
|
21673
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/height) */
|
|
21502
21674
|
readonly height: SVGAnimatedLength;
|
|
21503
21675
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
|
|
21504
21676
|
readonly patternContentUnits: SVGAnimatedEnumeration;
|
|
@@ -21506,8 +21678,11 @@ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference
|
|
|
21506
21678
|
readonly patternTransform: SVGAnimatedTransformList;
|
|
21507
21679
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
|
|
21508
21680
|
readonly patternUnits: SVGAnimatedEnumeration;
|
|
21681
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/width) */
|
|
21509
21682
|
readonly width: SVGAnimatedLength;
|
|
21683
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/x) */
|
|
21510
21684
|
readonly x: SVGAnimatedLength;
|
|
21685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/y) */
|
|
21511
21686
|
readonly y: SVGAnimatedLength;
|
|
21512
21687
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21513
21688
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21588,7 +21763,9 @@ declare var SVGPolylineElement: {
|
|
|
21588
21763
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)
|
|
21589
21764
|
*/
|
|
21590
21765
|
interface SVGPreserveAspectRatio {
|
|
21766
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/align) */
|
|
21591
21767
|
align: number;
|
|
21768
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/meetOrSlice) */
|
|
21592
21769
|
meetOrSlice: number;
|
|
21593
21770
|
readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: 0;
|
|
21594
21771
|
readonly SVG_PRESERVEASPECTRATIO_NONE: 1;
|
|
@@ -21691,34 +21868,53 @@ interface SVGSVGElementEventMap extends SVGElementEventMap, WindowEventHandlersE
|
|
|
21691
21868
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement)
|
|
21692
21869
|
*/
|
|
21693
21870
|
interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEventHandlers {
|
|
21871
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentScale) */
|
|
21694
21872
|
currentScale: number;
|
|
21873
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentTranslate) */
|
|
21695
21874
|
readonly currentTranslate: DOMPointReadOnly;
|
|
21696
21875
|
readonly height: SVGAnimatedLength;
|
|
21697
21876
|
readonly width: SVGAnimatedLength;
|
|
21698
21877
|
readonly x: SVGAnimatedLength;
|
|
21699
21878
|
readonly y: SVGAnimatedLength;
|
|
21879
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/animationsPaused) */
|
|
21700
21880
|
animationsPaused(): boolean;
|
|
21881
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkEnclosure) */
|
|
21701
21882
|
checkEnclosure(element: SVGElement, rect: DOMRectReadOnly): boolean;
|
|
21883
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkIntersection) */
|
|
21702
21884
|
checkIntersection(element: SVGElement, rect: DOMRectReadOnly): boolean;
|
|
21885
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGAngle) */
|
|
21703
21886
|
createSVGAngle(): SVGAngle;
|
|
21887
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGLength) */
|
|
21704
21888
|
createSVGLength(): SVGLength;
|
|
21889
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGMatrix) */
|
|
21705
21890
|
createSVGMatrix(): DOMMatrix;
|
|
21891
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGNumber) */
|
|
21706
21892
|
createSVGNumber(): SVGNumber;
|
|
21893
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint) */
|
|
21707
21894
|
createSVGPoint(): DOMPoint;
|
|
21895
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGRect) */
|
|
21708
21896
|
createSVGRect(): DOMRect;
|
|
21897
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransform) */
|
|
21709
21898
|
createSVGTransform(): SVGTransform;
|
|
21899
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransformFromMatrix) */
|
|
21710
21900
|
createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;
|
|
21901
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/deselectAll) */
|
|
21711
21902
|
deselectAll(): void;
|
|
21712
21903
|
/** @deprecated */
|
|
21713
21904
|
forceRedraw(): void;
|
|
21905
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getCurrentTime) */
|
|
21714
21906
|
getCurrentTime(): number;
|
|
21907
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getElementById) */
|
|
21715
21908
|
getElementById(elementId: string): Element;
|
|
21716
21909
|
getEnclosureList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;
|
|
21717
21910
|
getIntersectionList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;
|
|
21911
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/pauseAnimations) */
|
|
21718
21912
|
pauseAnimations(): void;
|
|
21913
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/setCurrentTime) */
|
|
21719
21914
|
setCurrentTime(seconds: number): void;
|
|
21720
21915
|
/** @deprecated */
|
|
21721
21916
|
suspendRedraw(maxWaitMilliseconds: number): number;
|
|
21917
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/unpauseAnimations) */
|
|
21722
21918
|
unpauseAnimations(): void;
|
|
21723
21919
|
/** @deprecated */
|
|
21724
21920
|
unsuspendRedraw(suspendHandleID: number): void;
|
|
@@ -21741,6 +21937,7 @@ declare var SVGSVGElement: {
|
|
|
21741
21937
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement)
|
|
21742
21938
|
*/
|
|
21743
21939
|
interface SVGScriptElement extends SVGElement, SVGURIReference {
|
|
21940
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement/type) */
|
|
21744
21941
|
type: string;
|
|
21745
21942
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21746
21943
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21791,14 +21988,23 @@ declare var SVGStopElement: {
|
|
|
21791
21988
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList)
|
|
21792
21989
|
*/
|
|
21793
21990
|
interface SVGStringList {
|
|
21991
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/length) */
|
|
21794
21992
|
readonly length: number;
|
|
21993
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/numberOfItems) */
|
|
21795
21994
|
readonly numberOfItems: number;
|
|
21995
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/appendItem) */
|
|
21796
21996
|
appendItem(newItem: string): string;
|
|
21997
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/clear) */
|
|
21797
21998
|
clear(): void;
|
|
21999
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/getItem) */
|
|
21798
22000
|
getItem(index: number): string;
|
|
22001
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/initialize) */
|
|
21799
22002
|
initialize(newItem: string): string;
|
|
22003
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/insertItemBefore) */
|
|
21800
22004
|
insertItemBefore(newItem: string, index: number): string;
|
|
22005
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/removeItem) */
|
|
21801
22006
|
removeItem(index: number): string;
|
|
22007
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/replaceItem) */
|
|
21802
22008
|
replaceItem(newItem: string, index: number): string;
|
|
21803
22009
|
[index: number]: string;
|
|
21804
22010
|
}
|
|
@@ -21997,10 +22203,14 @@ declare var SVGTextPathElement: {
|
|
|
21997
22203
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement)
|
|
21998
22204
|
*/
|
|
21999
22205
|
interface SVGTextPositioningElement extends SVGTextContentElement {
|
|
22206
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dx) */
|
|
22000
22207
|
readonly dx: SVGAnimatedLengthList;
|
|
22208
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dy) */
|
|
22001
22209
|
readonly dy: SVGAnimatedLengthList;
|
|
22002
22210
|
readonly rotate: SVGAnimatedNumberList;
|
|
22211
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/x) */
|
|
22003
22212
|
readonly x: SVGAnimatedLengthList;
|
|
22213
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/y) */
|
|
22004
22214
|
readonly y: SVGAnimatedLengthList;
|
|
22005
22215
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
22006
22216
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -22141,9 +22351,13 @@ declare var SVGUnitTypes: {
|
|
|
22141
22351
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
|
|
22142
22352
|
*/
|
|
22143
22353
|
interface SVGUseElement extends SVGGraphicsElement, SVGURIReference {
|
|
22354
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height) */
|
|
22144
22355
|
readonly height: SVGAnimatedLength;
|
|
22356
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width) */
|
|
22145
22357
|
readonly width: SVGAnimatedLength;
|
|
22358
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x) */
|
|
22146
22359
|
readonly x: SVGAnimatedLength;
|
|
22360
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y) */
|
|
22147
22361
|
readonly y: SVGAnimatedLength;
|
|
22148
22362
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
22149
22363
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -26907,6 +27121,8 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
26907
27121
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)
|
|
26908
27122
|
*/
|
|
26909
27123
|
readonly closed: boolean;
|
|
27124
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore) */
|
|
27125
|
+
readonly cookieStore: CookieStore;
|
|
26910
27126
|
/**
|
|
26911
27127
|
* Defines a new custom element, mapping the given name to the given constructor as an autonomous custom element.
|
|
26912
27128
|
*
|
|
@@ -27759,51 +27975,6 @@ declare var XSLTProcessor: {
|
|
|
27759
27975
|
new(): XSLTProcessor;
|
|
27760
27976
|
};
|
|
27761
27977
|
|
|
27762
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
27763
|
-
interface Console {
|
|
27764
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
27765
|
-
assert(condition?: boolean, ...data: any[]): void;
|
|
27766
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
27767
|
-
clear(): void;
|
|
27768
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
27769
|
-
count(label?: string): void;
|
|
27770
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
27771
|
-
countReset(label?: string): void;
|
|
27772
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
27773
|
-
debug(...data: any[]): void;
|
|
27774
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
27775
|
-
dir(item?: any, options?: any): void;
|
|
27776
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
27777
|
-
dirxml(...data: any[]): void;
|
|
27778
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
27779
|
-
error(...data: any[]): void;
|
|
27780
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
27781
|
-
group(...data: any[]): void;
|
|
27782
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
27783
|
-
groupCollapsed(...data: any[]): void;
|
|
27784
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
27785
|
-
groupEnd(): void;
|
|
27786
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
27787
|
-
info(...data: any[]): void;
|
|
27788
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
27789
|
-
log(...data: any[]): void;
|
|
27790
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
27791
|
-
table(tabularData?: any, properties?: string[]): void;
|
|
27792
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
27793
|
-
time(label?: string): void;
|
|
27794
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
27795
|
-
timeEnd(label?: string): void;
|
|
27796
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
27797
|
-
timeLog(label?: string, ...data: any[]): void;
|
|
27798
|
-
timeStamp(label?: string): void;
|
|
27799
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
27800
|
-
trace(...data: any[]): void;
|
|
27801
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
27802
|
-
warn(...data: any[]): void;
|
|
27803
|
-
}
|
|
27804
|
-
|
|
27805
|
-
declare var console: Console;
|
|
27806
|
-
|
|
27807
27978
|
/** Holds useful CSS-related methods. No object with this interface are implemented: it contains only static methods and therefore is a utilitarian interface. */
|
|
27808
27979
|
declare namespace CSS {
|
|
27809
27980
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static) */
|
|
@@ -27943,7 +28114,7 @@ declare namespace WebAssembly {
|
|
|
27943
28114
|
(message?: string): CompileError;
|
|
27944
28115
|
};
|
|
27945
28116
|
|
|
27946
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
|
|
28117
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global) */
|
|
27947
28118
|
interface Global<T extends ValueType = ValueType> {
|
|
27948
28119
|
value: ValueTypeMap[T];
|
|
27949
28120
|
valueOf(): ValueTypeMap[T];
|
|
@@ -27954,9 +28125,9 @@ declare namespace WebAssembly {
|
|
|
27954
28125
|
new<T extends ValueType = ValueType>(descriptor: GlobalDescriptor<T>, v?: ValueTypeMap[T]): Global<T>;
|
|
27955
28126
|
};
|
|
27956
28127
|
|
|
27957
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Instance) */
|
|
28128
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance) */
|
|
27958
28129
|
interface Instance {
|
|
27959
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Instance/exports) */
|
|
28130
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance/exports) */
|
|
27960
28131
|
readonly exports: Exports;
|
|
27961
28132
|
}
|
|
27962
28133
|
|
|
@@ -27974,11 +28145,11 @@ declare namespace WebAssembly {
|
|
|
27974
28145
|
(message?: string): LinkError;
|
|
27975
28146
|
};
|
|
27976
28147
|
|
|
27977
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory) */
|
|
28148
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory) */
|
|
27978
28149
|
interface Memory {
|
|
27979
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory/buffer) */
|
|
28150
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/buffer) */
|
|
27980
28151
|
readonly buffer: ArrayBuffer;
|
|
27981
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory/grow) */
|
|
28152
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow) */
|
|
27982
28153
|
grow(delta: number): number;
|
|
27983
28154
|
}
|
|
27984
28155
|
|
|
@@ -27987,18 +28158,18 @@ declare namespace WebAssembly {
|
|
|
27987
28158
|
new(descriptor: MemoryDescriptor): Memory;
|
|
27988
28159
|
};
|
|
27989
28160
|
|
|
27990
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module) */
|
|
28161
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module) */
|
|
27991
28162
|
interface Module {
|
|
27992
28163
|
}
|
|
27993
28164
|
|
|
27994
28165
|
var Module: {
|
|
27995
28166
|
prototype: Module;
|
|
27996
28167
|
new(bytes: BufferSource): Module;
|
|
27997
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/customSections_static) */
|
|
28168
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/customSections_static) */
|
|
27998
28169
|
customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];
|
|
27999
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/exports_static) */
|
|
28170
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/exports_static) */
|
|
28000
28171
|
exports(moduleObject: Module): ModuleExportDescriptor[];
|
|
28001
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/imports_static) */
|
|
28172
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/imports_static) */
|
|
28002
28173
|
imports(moduleObject: Module): ModuleImportDescriptor[];
|
|
28003
28174
|
};
|
|
28004
28175
|
|
|
@@ -28011,15 +28182,15 @@ declare namespace WebAssembly {
|
|
|
28011
28182
|
(message?: string): RuntimeError;
|
|
28012
28183
|
};
|
|
28013
28184
|
|
|
28014
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table) */
|
|
28185
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table) */
|
|
28015
28186
|
interface Table {
|
|
28016
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/length) */
|
|
28187
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/length) */
|
|
28017
28188
|
readonly length: number;
|
|
28018
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/get) */
|
|
28189
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/get) */
|
|
28019
28190
|
get(index: number): any;
|
|
28020
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/grow) */
|
|
28191
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/grow) */
|
|
28021
28192
|
grow(delta: number, value?: any): number;
|
|
28022
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/set) */
|
|
28193
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/set) */
|
|
28023
28194
|
set(index: number, value?: any): void;
|
|
28024
28195
|
}
|
|
28025
28196
|
|
|
@@ -28079,19 +28250,64 @@ declare namespace WebAssembly {
|
|
|
28079
28250
|
type Imports = Record<string, ModuleImports>;
|
|
28080
28251
|
type ModuleImports = Record<string, ImportValue>;
|
|
28081
28252
|
type ValueType = keyof ValueTypeMap;
|
|
28082
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compile_static) */
|
|
28253
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */
|
|
28083
28254
|
function compile(bytes: BufferSource): Promise<Module>;
|
|
28084
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compileStreaming_static) */
|
|
28255
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */
|
|
28085
28256
|
function compileStreaming(source: Response | PromiseLike<Response>): Promise<Module>;
|
|
28086
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiate_static) */
|
|
28257
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static) */
|
|
28087
28258
|
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
28088
28259
|
function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
|
|
28089
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiateStreaming_static) */
|
|
28260
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static) */
|
|
28090
28261
|
function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
28091
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/validate_static) */
|
|
28262
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static) */
|
|
28092
28263
|
function validate(bytes: BufferSource): boolean;
|
|
28093
28264
|
}
|
|
28094
28265
|
|
|
28266
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
28267
|
+
interface Console {
|
|
28268
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
28269
|
+
assert(condition?: boolean, ...data: any[]): void;
|
|
28270
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
28271
|
+
clear(): void;
|
|
28272
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
28273
|
+
count(label?: string): void;
|
|
28274
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
28275
|
+
countReset(label?: string): void;
|
|
28276
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
28277
|
+
debug(...data: any[]): void;
|
|
28278
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
28279
|
+
dir(item?: any, options?: any): void;
|
|
28280
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
28281
|
+
dirxml(...data: any[]): void;
|
|
28282
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
28283
|
+
error(...data: any[]): void;
|
|
28284
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
28285
|
+
group(...data: any[]): void;
|
|
28286
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
28287
|
+
groupCollapsed(...data: any[]): void;
|
|
28288
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
28289
|
+
groupEnd(): void;
|
|
28290
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
28291
|
+
info(...data: any[]): void;
|
|
28292
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
28293
|
+
log(...data: any[]): void;
|
|
28294
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
28295
|
+
table(tabularData?: any, properties?: string[]): void;
|
|
28296
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
28297
|
+
time(label?: string): void;
|
|
28298
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
28299
|
+
timeEnd(label?: string): void;
|
|
28300
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
28301
|
+
timeLog(label?: string, ...data: any[]): void;
|
|
28302
|
+
timeStamp(label?: string): void;
|
|
28303
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
28304
|
+
trace(...data: any[]): void;
|
|
28305
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
28306
|
+
warn(...data: any[]): void;
|
|
28307
|
+
}
|
|
28308
|
+
|
|
28309
|
+
declare var console: Console;
|
|
28310
|
+
|
|
28095
28311
|
interface AudioDataOutputCallback {
|
|
28096
28312
|
(output: AudioData): void;
|
|
28097
28313
|
}
|
|
@@ -28542,6 +28758,8 @@ declare var clientInformation: Navigator;
|
|
|
28542
28758
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)
|
|
28543
28759
|
*/
|
|
28544
28760
|
declare var closed: boolean;
|
|
28761
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore) */
|
|
28762
|
+
declare var cookieStore: CookieStore;
|
|
28545
28763
|
/**
|
|
28546
28764
|
* Defines a new custom element, mapping the given name to the given constructor as an autonomous custom element.
|
|
28547
28765
|
*
|
|
@@ -29349,6 +29567,7 @@ type ConstrainBoolean = boolean | ConstrainBooleanParameters;
|
|
|
29349
29567
|
type ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;
|
|
29350
29568
|
type ConstrainDouble = number | ConstrainDoubleRange;
|
|
29351
29569
|
type ConstrainULong = number | ConstrainULongRange;
|
|
29570
|
+
type CookieList = CookieListItem[];
|
|
29352
29571
|
type DOMHighResTimeStamp = number;
|
|
29353
29572
|
type EpochTimeStamp = number;
|
|
29354
29573
|
type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
|
|
@@ -29447,6 +29666,7 @@ type ColorSpaceConversion = "default" | "none";
|
|
|
29447
29666
|
type CompositeOperation = "accumulate" | "add" | "replace";
|
|
29448
29667
|
type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
|
|
29449
29668
|
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
|
|
29669
|
+
type CookieSameSite = "lax" | "none" | "strict";
|
|
29450
29670
|
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
|
|
29451
29671
|
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
|
|
29452
29672
|
type DirectionSetting = "" | "lr" | "rl";
|