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