@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/ts5.5/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;
|
|
@@ -5320,7 +5352,7 @@ interface CSSStyleDeclaration {
|
|
|
5320
5352
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)
|
|
5321
5353
|
*/
|
|
5322
5354
|
webkitJustifyContent: string;
|
|
5323
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS
|
|
5355
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-clamp) */
|
|
5324
5356
|
webkitLineClamp: string;
|
|
5325
5357
|
/**
|
|
5326
5358
|
* @deprecated This is a legacy alias of `mask`.
|
|
@@ -6346,6 +6378,58 @@ declare var ConvolverNode: {
|
|
|
6346
6378
|
new(context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
6347
6379
|
};
|
|
6348
6380
|
|
|
6381
|
+
/**
|
|
6382
|
+
* Available only in secure contexts.
|
|
6383
|
+
*
|
|
6384
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent)
|
|
6385
|
+
*/
|
|
6386
|
+
interface CookieChangeEvent extends Event {
|
|
6387
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/changed) */
|
|
6388
|
+
readonly changed: ReadonlyArray<CookieListItem>;
|
|
6389
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/deleted) */
|
|
6390
|
+
readonly deleted: ReadonlyArray<CookieListItem>;
|
|
6391
|
+
}
|
|
6392
|
+
|
|
6393
|
+
declare var CookieChangeEvent: {
|
|
6394
|
+
prototype: CookieChangeEvent;
|
|
6395
|
+
new(type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
6396
|
+
};
|
|
6397
|
+
|
|
6398
|
+
interface CookieStoreEventMap {
|
|
6399
|
+
"change": CookieChangeEvent;
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
/**
|
|
6403
|
+
* Available only in secure contexts.
|
|
6404
|
+
*
|
|
6405
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore)
|
|
6406
|
+
*/
|
|
6407
|
+
interface CookieStore extends EventTarget {
|
|
6408
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/change_event) */
|
|
6409
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
6410
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/delete) */
|
|
6411
|
+
delete(name: string): Promise<void>;
|
|
6412
|
+
delete(options: CookieStoreDeleteOptions): Promise<void>;
|
|
6413
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/get) */
|
|
6414
|
+
get(name: string): Promise<CookieListItem | null>;
|
|
6415
|
+
get(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
6416
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/getAll) */
|
|
6417
|
+
getAll(name: string): Promise<CookieList>;
|
|
6418
|
+
getAll(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
6419
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/set) */
|
|
6420
|
+
set(name: string, value: string): Promise<void>;
|
|
6421
|
+
set(options: CookieInit): Promise<void>;
|
|
6422
|
+
addEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
6423
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
6424
|
+
removeEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
6425
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6428
|
+
declare var CookieStore: {
|
|
6429
|
+
prototype: CookieStore;
|
|
6430
|
+
new(): CookieStore;
|
|
6431
|
+
};
|
|
6432
|
+
|
|
6349
6433
|
/**
|
|
6350
6434
|
* This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
|
|
6351
6435
|
*
|
|
@@ -6650,10 +6734,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
6650
6734
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6651
6735
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
6652
6736
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
6737
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
|
|
6653
6738
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6739
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
|
|
6654
6740
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
6655
6741
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
6656
6742
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6743
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
|
|
6657
6744
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6658
6745
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6659
6746
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
|
|
@@ -6738,15 +6825,21 @@ interface DOMMatrixReadOnly {
|
|
|
6738
6825
|
inverse(): DOMMatrix;
|
|
6739
6826
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
6740
6827
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
6828
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
|
|
6741
6829
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6830
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
|
|
6742
6831
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6832
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
|
|
6743
6833
|
rotateFromVector(x?: number, y?: number): DOMMatrix;
|
|
6744
6834
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
|
|
6745
6835
|
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6836
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
|
|
6746
6837
|
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6747
6838
|
/** @deprecated */
|
|
6748
6839
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
6840
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
|
|
6749
6841
|
skewX(sx?: number): DOMMatrix;
|
|
6842
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
|
|
6750
6843
|
skewY(sy?: number): DOMMatrix;
|
|
6751
6844
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
6752
6845
|
toFloat32Array(): Float32Array;
|
|
@@ -7724,6 +7817,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7724
7817
|
createEvent(eventInterface: "CloseEvent"): CloseEvent;
|
|
7725
7818
|
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
|
|
7726
7819
|
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
|
|
7820
|
+
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
|
|
7727
7821
|
createEvent(eventInterface: "CustomEvent"): CustomEvent;
|
|
7728
7822
|
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
|
|
7729
7823
|
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
|
@@ -10678,6 +10772,8 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10678
10772
|
readonly accessKeyLabel: string;
|
|
10679
10773
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) */
|
|
10680
10774
|
autocapitalize: string;
|
|
10775
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocorrect) */
|
|
10776
|
+
autocorrect: boolean;
|
|
10681
10777
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) */
|
|
10682
10778
|
dir: string;
|
|
10683
10779
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable) */
|
|
@@ -16394,12 +16490,12 @@ interface MessageEventTargetEventMap {
|
|
|
16394
16490
|
|
|
16395
16491
|
interface MessageEventTarget<T> {
|
|
16396
16492
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/message_event) */
|
|
16397
|
-
onmessage: ((this:
|
|
16493
|
+
onmessage: ((this: T, ev: MessageEvent) => any) | null;
|
|
16398
16494
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/messageerror_event) */
|
|
16399
|
-
onmessageerror: ((this:
|
|
16400
|
-
addEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this:
|
|
16495
|
+
onmessageerror: ((this: T, ev: MessageEvent) => any) | null;
|
|
16496
|
+
addEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
16401
16497
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
16402
|
-
removeEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this:
|
|
16498
|
+
removeEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
16403
16499
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
16404
16500
|
}
|
|
16405
16501
|
|
|
@@ -18724,6 +18820,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
18724
18820
|
declare var PublicKeyCredential: {
|
|
18725
18821
|
prototype: PublicKeyCredential;
|
|
18726
18822
|
new(): PublicKeyCredential;
|
|
18823
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientCapabilities_static) */
|
|
18727
18824
|
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
18728
18825
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable_static) */
|
|
18729
18826
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
@@ -20358,9 +20455,13 @@ declare var SVGElement: {
|
|
|
20358
20455
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
|
|
20359
20456
|
*/
|
|
20360
20457
|
interface SVGEllipseElement extends SVGGeometryElement {
|
|
20458
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
|
|
20361
20459
|
readonly cx: SVGAnimatedLength;
|
|
20460
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
|
|
20362
20461
|
readonly cy: SVGAnimatedLength;
|
|
20462
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
|
|
20363
20463
|
readonly rx: SVGAnimatedLength;
|
|
20464
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
|
|
20364
20465
|
readonly ry: SVGAnimatedLength;
|
|
20365
20466
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20366
20467
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20379,8 +20480,11 @@ declare var SVGEllipseElement: {
|
|
|
20379
20480
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement)
|
|
20380
20481
|
*/
|
|
20381
20482
|
interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20483
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in1) */
|
|
20382
20484
|
readonly in1: SVGAnimatedString;
|
|
20485
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in2) */
|
|
20383
20486
|
readonly in2: SVGAnimatedString;
|
|
20487
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/mode) */
|
|
20384
20488
|
readonly mode: SVGAnimatedEnumeration;
|
|
20385
20489
|
readonly SVG_FEBLEND_MODE_UNKNOWN: 0;
|
|
20386
20490
|
readonly SVG_FEBLEND_MODE_NORMAL: 1;
|
|
@@ -20466,6 +20570,7 @@ declare var SVGFEColorMatrixElement: {
|
|
|
20466
20570
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement)
|
|
20467
20571
|
*/
|
|
20468
20572
|
interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20573
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement/in1) */
|
|
20469
20574
|
readonly in1: SVGAnimatedString;
|
|
20470
20575
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20471
20576
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20484,12 +20589,19 @@ declare var SVGFEComponentTransferElement: {
|
|
|
20484
20589
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement)
|
|
20485
20590
|
*/
|
|
20486
20591
|
interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20592
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in1) */
|
|
20487
20593
|
readonly in1: SVGAnimatedString;
|
|
20594
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in2) */
|
|
20488
20595
|
readonly in2: SVGAnimatedString;
|
|
20596
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k1) */
|
|
20489
20597
|
readonly k1: SVGAnimatedNumber;
|
|
20598
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k2) */
|
|
20490
20599
|
readonly k2: SVGAnimatedNumber;
|
|
20600
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k3) */
|
|
20491
20601
|
readonly k3: SVGAnimatedNumber;
|
|
20602
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k4) */
|
|
20492
20603
|
readonly k4: SVGAnimatedNumber;
|
|
20604
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/operator) */
|
|
20493
20605
|
readonly operator: SVGAnimatedEnumeration;
|
|
20494
20606
|
readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: 0;
|
|
20495
20607
|
readonly SVG_FECOMPOSITE_OPERATOR_OVER: 1;
|
|
@@ -20522,17 +20634,29 @@ declare var SVGFECompositeElement: {
|
|
|
20522
20634
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)
|
|
20523
20635
|
*/
|
|
20524
20636
|
interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20637
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias) */
|
|
20525
20638
|
readonly bias: SVGAnimatedNumber;
|
|
20639
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor) */
|
|
20526
20640
|
readonly divisor: SVGAnimatedNumber;
|
|
20641
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode) */
|
|
20527
20642
|
readonly edgeMode: SVGAnimatedEnumeration;
|
|
20643
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1) */
|
|
20528
20644
|
readonly in1: SVGAnimatedString;
|
|
20645
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix) */
|
|
20529
20646
|
readonly kernelMatrix: SVGAnimatedNumberList;
|
|
20647
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX) */
|
|
20530
20648
|
readonly kernelUnitLengthX: SVGAnimatedNumber;
|
|
20649
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY) */
|
|
20531
20650
|
readonly kernelUnitLengthY: SVGAnimatedNumber;
|
|
20651
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX) */
|
|
20532
20652
|
readonly orderX: SVGAnimatedInteger;
|
|
20653
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY) */
|
|
20533
20654
|
readonly orderY: SVGAnimatedInteger;
|
|
20655
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha) */
|
|
20534
20656
|
readonly preserveAlpha: SVGAnimatedBoolean;
|
|
20657
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX) */
|
|
20535
20658
|
readonly targetX: SVGAnimatedInteger;
|
|
20659
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY) */
|
|
20536
20660
|
readonly targetY: SVGAnimatedInteger;
|
|
20537
20661
|
readonly SVG_EDGEMODE_UNKNOWN: 0;
|
|
20538
20662
|
readonly SVG_EDGEMODE_DUPLICATE: 1;
|
|
@@ -20586,10 +20710,15 @@ declare var SVGFEDiffuseLightingElement: {
|
|
|
20586
20710
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)
|
|
20587
20711
|
*/
|
|
20588
20712
|
interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20713
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1) */
|
|
20589
20714
|
readonly in1: SVGAnimatedString;
|
|
20715
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2) */
|
|
20590
20716
|
readonly in2: SVGAnimatedString;
|
|
20717
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale) */
|
|
20591
20718
|
readonly scale: SVGAnimatedNumber;
|
|
20719
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector) */
|
|
20592
20720
|
readonly xChannelSelector: SVGAnimatedEnumeration;
|
|
20721
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector) */
|
|
20593
20722
|
readonly yChannelSelector: SVGAnimatedEnumeration;
|
|
20594
20723
|
readonly SVG_CHANNEL_UNKNOWN: 0;
|
|
20595
20724
|
readonly SVG_CHANNEL_R: 1;
|
|
@@ -20635,11 +20764,17 @@ declare var SVGFEDistantLightElement: {
|
|
|
20635
20764
|
|
|
20636
20765
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement) */
|
|
20637
20766
|
interface SVGFEDropShadowElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20767
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dx) */
|
|
20638
20768
|
readonly dx: SVGAnimatedNumber;
|
|
20769
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dy) */
|
|
20639
20770
|
readonly dy: SVGAnimatedNumber;
|
|
20771
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/in1) */
|
|
20640
20772
|
readonly in1: SVGAnimatedString;
|
|
20773
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationX) */
|
|
20641
20774
|
readonly stdDeviationX: SVGAnimatedNumber;
|
|
20775
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationY) */
|
|
20642
20776
|
readonly stdDeviationY: SVGAnimatedNumber;
|
|
20777
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/setStdDeviation) */
|
|
20643
20778
|
setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
|
|
20644
20779
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20645
20780
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20768,6 +20903,7 @@ declare var SVGFEGaussianBlurElement: {
|
|
|
20768
20903
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement)
|
|
20769
20904
|
*/
|
|
20770
20905
|
interface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {
|
|
20906
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement/preserveAspectRatio) */
|
|
20771
20907
|
readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
|
|
20772
20908
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20773
20909
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20853,8 +20989,11 @@ declare var SVGFEMorphologyElement: {
|
|
|
20853
20989
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)
|
|
20854
20990
|
*/
|
|
20855
20991
|
interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
20992
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx) */
|
|
20856
20993
|
readonly dx: SVGAnimatedNumber;
|
|
20994
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy) */
|
|
20857
20995
|
readonly dy: SVGAnimatedNumber;
|
|
20996
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1) */
|
|
20858
20997
|
readonly in1: SVGAnimatedString;
|
|
20859
20998
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20860
20999
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20923,10 +21062,15 @@ declare var SVGFESpecularLightingElement: {
|
|
|
20923
21062
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)
|
|
20924
21063
|
*/
|
|
20925
21064
|
interface SVGFESpotLightElement extends SVGElement {
|
|
21065
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle) */
|
|
20926
21066
|
readonly limitingConeAngle: SVGAnimatedNumber;
|
|
21067
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX) */
|
|
20927
21068
|
readonly pointsAtX: SVGAnimatedNumber;
|
|
21069
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY) */
|
|
20928
21070
|
readonly pointsAtY: SVGAnimatedNumber;
|
|
21071
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ) */
|
|
20929
21072
|
readonly pointsAtZ: SVGAnimatedNumber;
|
|
21073
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent) */
|
|
20930
21074
|
readonly specularExponent: SVGAnimatedNumber;
|
|
20931
21075
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
|
|
20932
21076
|
readonly x: SVGAnimatedNumber;
|
|
@@ -20951,6 +21095,7 @@ declare var SVGFESpotLightElement: {
|
|
|
20951
21095
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
|
|
20952
21096
|
*/
|
|
20953
21097
|
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
21098
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
|
|
20954
21099
|
readonly in1: SVGAnimatedString;
|
|
20955
21100
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
20956
21101
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -20969,11 +21114,17 @@ declare var SVGFETileElement: {
|
|
|
20969
21114
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement)
|
|
20970
21115
|
*/
|
|
20971
21116
|
interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
21117
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyX) */
|
|
20972
21118
|
readonly baseFrequencyX: SVGAnimatedNumber;
|
|
21119
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyY) */
|
|
20973
21120
|
readonly baseFrequencyY: SVGAnimatedNumber;
|
|
21121
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/numOctaves) */
|
|
20974
21122
|
readonly numOctaves: SVGAnimatedInteger;
|
|
21123
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/seed) */
|
|
20975
21124
|
readonly seed: SVGAnimatedNumber;
|
|
21125
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/stitchTiles) */
|
|
20976
21126
|
readonly stitchTiles: SVGAnimatedEnumeration;
|
|
21127
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/type) */
|
|
20977
21128
|
readonly type: SVGAnimatedEnumeration;
|
|
20978
21129
|
readonly SVG_TURBULENCE_TYPE_UNKNOWN: 0;
|
|
20979
21130
|
readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: 1;
|
|
@@ -21028,10 +21179,15 @@ declare var SVGFilterElement: {
|
|
|
21028
21179
|
};
|
|
21029
21180
|
|
|
21030
21181
|
interface SVGFilterPrimitiveStandardAttributes {
|
|
21182
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */
|
|
21031
21183
|
readonly height: SVGAnimatedLength;
|
|
21184
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */
|
|
21032
21185
|
readonly result: SVGAnimatedString;
|
|
21186
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */
|
|
21033
21187
|
readonly width: SVGAnimatedLength;
|
|
21188
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */
|
|
21034
21189
|
readonly x: SVGAnimatedLength;
|
|
21190
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */
|
|
21035
21191
|
readonly y: SVGAnimatedLength;
|
|
21036
21192
|
}
|
|
21037
21193
|
|
|
@@ -21048,9 +21204,13 @@ interface SVGFitToViewBox {
|
|
|
21048
21204
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement)
|
|
21049
21205
|
*/
|
|
21050
21206
|
interface SVGForeignObjectElement extends SVGGraphicsElement {
|
|
21207
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/height) */
|
|
21051
21208
|
readonly height: SVGAnimatedLength;
|
|
21209
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/width) */
|
|
21052
21210
|
readonly width: SVGAnimatedLength;
|
|
21211
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/x) */
|
|
21053
21212
|
readonly x: SVGAnimatedLength;
|
|
21213
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/y) */
|
|
21054
21214
|
readonly y: SVGAnimatedLength;
|
|
21055
21215
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21056
21216
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21140,10 +21300,13 @@ declare var SVGGradientElement: {
|
|
|
21140
21300
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement)
|
|
21141
21301
|
*/
|
|
21142
21302
|
interface SVGGraphicsElement extends SVGElement, SVGTests {
|
|
21303
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/transform) */
|
|
21143
21304
|
readonly transform: SVGAnimatedTransformList;
|
|
21144
21305
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getBBox) */
|
|
21145
21306
|
getBBox(options?: SVGBoundingBoxOptions): DOMRect;
|
|
21307
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getCTM) */
|
|
21146
21308
|
getCTM(): DOMMatrix | null;
|
|
21309
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getScreenCTM) */
|
|
21147
21310
|
getScreenCTM(): DOMMatrix | null;
|
|
21148
21311
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21149
21312
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21190,11 +21353,17 @@ declare var SVGImageElement: {
|
|
|
21190
21353
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength)
|
|
21191
21354
|
*/
|
|
21192
21355
|
interface SVGLength {
|
|
21356
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/unitType) */
|
|
21193
21357
|
readonly unitType: number;
|
|
21358
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/value) */
|
|
21194
21359
|
value: number;
|
|
21360
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueAsString) */
|
|
21195
21361
|
valueAsString: string;
|
|
21362
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueInSpecifiedUnits) */
|
|
21196
21363
|
valueInSpecifiedUnits: number;
|
|
21364
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/convertToSpecifiedUnits) */
|
|
21197
21365
|
convertToSpecifiedUnits(unitType: number): void;
|
|
21366
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/newValueSpecifiedUnits) */
|
|
21198
21367
|
newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;
|
|
21199
21368
|
readonly SVG_LENGTHTYPE_UNKNOWN: 0;
|
|
21200
21369
|
readonly SVG_LENGTHTYPE_NUMBER: 1;
|
|
@@ -21415,6 +21584,7 @@ declare var SVGMetadataElement: {
|
|
|
21415
21584
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber)
|
|
21416
21585
|
*/
|
|
21417
21586
|
interface SVGNumber {
|
|
21587
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber/value) */
|
|
21418
21588
|
value: number;
|
|
21419
21589
|
}
|
|
21420
21590
|
|
|
@@ -21478,6 +21648,7 @@ declare var SVGPathElement: {
|
|
|
21478
21648
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement)
|
|
21479
21649
|
*/
|
|
21480
21650
|
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
|
|
21651
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/height) */
|
|
21481
21652
|
readonly height: SVGAnimatedLength;
|
|
21482
21653
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
|
|
21483
21654
|
readonly patternContentUnits: SVGAnimatedEnumeration;
|
|
@@ -21485,8 +21656,11 @@ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference
|
|
|
21485
21656
|
readonly patternTransform: SVGAnimatedTransformList;
|
|
21486
21657
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
|
|
21487
21658
|
readonly patternUnits: SVGAnimatedEnumeration;
|
|
21659
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/width) */
|
|
21488
21660
|
readonly width: SVGAnimatedLength;
|
|
21661
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/x) */
|
|
21489
21662
|
readonly x: SVGAnimatedLength;
|
|
21663
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/y) */
|
|
21490
21664
|
readonly y: SVGAnimatedLength;
|
|
21491
21665
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21492
21666
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21567,7 +21741,9 @@ declare var SVGPolylineElement: {
|
|
|
21567
21741
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)
|
|
21568
21742
|
*/
|
|
21569
21743
|
interface SVGPreserveAspectRatio {
|
|
21744
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/align) */
|
|
21570
21745
|
align: number;
|
|
21746
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/meetOrSlice) */
|
|
21571
21747
|
meetOrSlice: number;
|
|
21572
21748
|
readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: 0;
|
|
21573
21749
|
readonly SVG_PRESERVEASPECTRATIO_NONE: 1;
|
|
@@ -21670,34 +21846,53 @@ interface SVGSVGElementEventMap extends SVGElementEventMap, WindowEventHandlersE
|
|
|
21670
21846
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement)
|
|
21671
21847
|
*/
|
|
21672
21848
|
interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEventHandlers {
|
|
21849
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentScale) */
|
|
21673
21850
|
currentScale: number;
|
|
21851
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentTranslate) */
|
|
21674
21852
|
readonly currentTranslate: DOMPointReadOnly;
|
|
21675
21853
|
readonly height: SVGAnimatedLength;
|
|
21676
21854
|
readonly width: SVGAnimatedLength;
|
|
21677
21855
|
readonly x: SVGAnimatedLength;
|
|
21678
21856
|
readonly y: SVGAnimatedLength;
|
|
21857
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/animationsPaused) */
|
|
21679
21858
|
animationsPaused(): boolean;
|
|
21859
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkEnclosure) */
|
|
21680
21860
|
checkEnclosure(element: SVGElement, rect: DOMRectReadOnly): boolean;
|
|
21861
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkIntersection) */
|
|
21681
21862
|
checkIntersection(element: SVGElement, rect: DOMRectReadOnly): boolean;
|
|
21863
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGAngle) */
|
|
21682
21864
|
createSVGAngle(): SVGAngle;
|
|
21865
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGLength) */
|
|
21683
21866
|
createSVGLength(): SVGLength;
|
|
21867
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGMatrix) */
|
|
21684
21868
|
createSVGMatrix(): DOMMatrix;
|
|
21869
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGNumber) */
|
|
21685
21870
|
createSVGNumber(): SVGNumber;
|
|
21871
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint) */
|
|
21686
21872
|
createSVGPoint(): DOMPoint;
|
|
21873
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGRect) */
|
|
21687
21874
|
createSVGRect(): DOMRect;
|
|
21875
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransform) */
|
|
21688
21876
|
createSVGTransform(): SVGTransform;
|
|
21877
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransformFromMatrix) */
|
|
21689
21878
|
createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;
|
|
21879
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/deselectAll) */
|
|
21690
21880
|
deselectAll(): void;
|
|
21691
21881
|
/** @deprecated */
|
|
21692
21882
|
forceRedraw(): void;
|
|
21883
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getCurrentTime) */
|
|
21693
21884
|
getCurrentTime(): number;
|
|
21885
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getElementById) */
|
|
21694
21886
|
getElementById(elementId: string): Element;
|
|
21695
21887
|
getEnclosureList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;
|
|
21696
21888
|
getIntersectionList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;
|
|
21889
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/pauseAnimations) */
|
|
21697
21890
|
pauseAnimations(): void;
|
|
21891
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/setCurrentTime) */
|
|
21698
21892
|
setCurrentTime(seconds: number): void;
|
|
21699
21893
|
/** @deprecated */
|
|
21700
21894
|
suspendRedraw(maxWaitMilliseconds: number): number;
|
|
21895
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/unpauseAnimations) */
|
|
21701
21896
|
unpauseAnimations(): void;
|
|
21702
21897
|
/** @deprecated */
|
|
21703
21898
|
unsuspendRedraw(suspendHandleID: number): void;
|
|
@@ -21720,6 +21915,7 @@ declare var SVGSVGElement: {
|
|
|
21720
21915
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement)
|
|
21721
21916
|
*/
|
|
21722
21917
|
interface SVGScriptElement extends SVGElement, SVGURIReference {
|
|
21918
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement/type) */
|
|
21723
21919
|
type: string;
|
|
21724
21920
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21725
21921
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21770,14 +21966,23 @@ declare var SVGStopElement: {
|
|
|
21770
21966
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList)
|
|
21771
21967
|
*/
|
|
21772
21968
|
interface SVGStringList {
|
|
21969
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/length) */
|
|
21773
21970
|
readonly length: number;
|
|
21971
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/numberOfItems) */
|
|
21774
21972
|
readonly numberOfItems: number;
|
|
21973
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/appendItem) */
|
|
21775
21974
|
appendItem(newItem: string): string;
|
|
21975
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/clear) */
|
|
21776
21976
|
clear(): void;
|
|
21977
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/getItem) */
|
|
21777
21978
|
getItem(index: number): string;
|
|
21979
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/initialize) */
|
|
21778
21980
|
initialize(newItem: string): string;
|
|
21981
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/insertItemBefore) */
|
|
21779
21982
|
insertItemBefore(newItem: string, index: number): string;
|
|
21983
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/removeItem) */
|
|
21780
21984
|
removeItem(index: number): string;
|
|
21985
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/replaceItem) */
|
|
21781
21986
|
replaceItem(newItem: string, index: number): string;
|
|
21782
21987
|
[index: number]: string;
|
|
21783
21988
|
}
|
|
@@ -21976,10 +22181,14 @@ declare var SVGTextPathElement: {
|
|
|
21976
22181
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement)
|
|
21977
22182
|
*/
|
|
21978
22183
|
interface SVGTextPositioningElement extends SVGTextContentElement {
|
|
22184
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dx) */
|
|
21979
22185
|
readonly dx: SVGAnimatedLengthList;
|
|
22186
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dy) */
|
|
21980
22187
|
readonly dy: SVGAnimatedLengthList;
|
|
21981
22188
|
readonly rotate: SVGAnimatedNumberList;
|
|
22189
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/x) */
|
|
21982
22190
|
readonly x: SVGAnimatedLengthList;
|
|
22191
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/y) */
|
|
21983
22192
|
readonly y: SVGAnimatedLengthList;
|
|
21984
22193
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21985
22194
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -22120,9 +22329,13 @@ declare var SVGUnitTypes: {
|
|
|
22120
22329
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
|
|
22121
22330
|
*/
|
|
22122
22331
|
interface SVGUseElement extends SVGGraphicsElement, SVGURIReference {
|
|
22332
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height) */
|
|
22123
22333
|
readonly height: SVGAnimatedLength;
|
|
22334
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width) */
|
|
22124
22335
|
readonly width: SVGAnimatedLength;
|
|
22336
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x) */
|
|
22125
22337
|
readonly x: SVGAnimatedLength;
|
|
22338
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y) */
|
|
22126
22339
|
readonly y: SVGAnimatedLength;
|
|
22127
22340
|
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
22128
22341
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -26885,6 +27098,8 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
26885
27098
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)
|
|
26886
27099
|
*/
|
|
26887
27100
|
readonly closed: boolean;
|
|
27101
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore) */
|
|
27102
|
+
readonly cookieStore: CookieStore;
|
|
26888
27103
|
/**
|
|
26889
27104
|
* Defines a new custom element, mapping the given name to the given constructor as an autonomous custom element.
|
|
26890
27105
|
*
|
|
@@ -27737,51 +27952,6 @@ declare var XSLTProcessor: {
|
|
|
27737
27952
|
new(): XSLTProcessor;
|
|
27738
27953
|
};
|
|
27739
27954
|
|
|
27740
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
27741
|
-
interface Console {
|
|
27742
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
27743
|
-
assert(condition?: boolean, ...data: any[]): void;
|
|
27744
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
27745
|
-
clear(): void;
|
|
27746
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
27747
|
-
count(label?: string): void;
|
|
27748
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
27749
|
-
countReset(label?: string): void;
|
|
27750
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
27751
|
-
debug(...data: any[]): void;
|
|
27752
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
27753
|
-
dir(item?: any, options?: any): void;
|
|
27754
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
27755
|
-
dirxml(...data: any[]): void;
|
|
27756
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
27757
|
-
error(...data: any[]): void;
|
|
27758
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
27759
|
-
group(...data: any[]): void;
|
|
27760
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
27761
|
-
groupCollapsed(...data: any[]): void;
|
|
27762
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
27763
|
-
groupEnd(): void;
|
|
27764
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
27765
|
-
info(...data: any[]): void;
|
|
27766
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
27767
|
-
log(...data: any[]): void;
|
|
27768
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
27769
|
-
table(tabularData?: any, properties?: string[]): void;
|
|
27770
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
27771
|
-
time(label?: string): void;
|
|
27772
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
27773
|
-
timeEnd(label?: string): void;
|
|
27774
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
27775
|
-
timeLog(label?: string, ...data: any[]): void;
|
|
27776
|
-
timeStamp(label?: string): void;
|
|
27777
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
27778
|
-
trace(...data: any[]): void;
|
|
27779
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
27780
|
-
warn(...data: any[]): void;
|
|
27781
|
-
}
|
|
27782
|
-
|
|
27783
|
-
declare var console: Console;
|
|
27784
|
-
|
|
27785
27955
|
/** Holds useful CSS-related methods. No object with this interface are implemented: it contains only static methods and therefore is a utilitarian interface. */
|
|
27786
27956
|
declare namespace CSS {
|
|
27787
27957
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static) */
|
|
@@ -27921,7 +28091,7 @@ declare namespace WebAssembly {
|
|
|
27921
28091
|
(message?: string): CompileError;
|
|
27922
28092
|
};
|
|
27923
28093
|
|
|
27924
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
|
|
28094
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global) */
|
|
27925
28095
|
interface Global<T extends ValueType = ValueType> {
|
|
27926
28096
|
value: ValueTypeMap[T];
|
|
27927
28097
|
valueOf(): ValueTypeMap[T];
|
|
@@ -27932,9 +28102,9 @@ declare namespace WebAssembly {
|
|
|
27932
28102
|
new<T extends ValueType = ValueType>(descriptor: GlobalDescriptor<T>, v?: ValueTypeMap[T]): Global<T>;
|
|
27933
28103
|
};
|
|
27934
28104
|
|
|
27935
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Instance) */
|
|
28105
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance) */
|
|
27936
28106
|
interface Instance {
|
|
27937
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Instance/exports) */
|
|
28107
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance/exports) */
|
|
27938
28108
|
readonly exports: Exports;
|
|
27939
28109
|
}
|
|
27940
28110
|
|
|
@@ -27952,11 +28122,11 @@ declare namespace WebAssembly {
|
|
|
27952
28122
|
(message?: string): LinkError;
|
|
27953
28123
|
};
|
|
27954
28124
|
|
|
27955
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory) */
|
|
28125
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory) */
|
|
27956
28126
|
interface Memory {
|
|
27957
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory/buffer) */
|
|
28127
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/buffer) */
|
|
27958
28128
|
readonly buffer: ArrayBuffer;
|
|
27959
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Memory/grow) */
|
|
28129
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow) */
|
|
27960
28130
|
grow(delta: number): number;
|
|
27961
28131
|
}
|
|
27962
28132
|
|
|
@@ -27965,18 +28135,18 @@ declare namespace WebAssembly {
|
|
|
27965
28135
|
new(descriptor: MemoryDescriptor): Memory;
|
|
27966
28136
|
};
|
|
27967
28137
|
|
|
27968
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module) */
|
|
28138
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module) */
|
|
27969
28139
|
interface Module {
|
|
27970
28140
|
}
|
|
27971
28141
|
|
|
27972
28142
|
var Module: {
|
|
27973
28143
|
prototype: Module;
|
|
27974
28144
|
new(bytes: BufferSource): Module;
|
|
27975
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/customSections_static) */
|
|
28145
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/customSections_static) */
|
|
27976
28146
|
customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];
|
|
27977
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/exports_static) */
|
|
28147
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/exports_static) */
|
|
27978
28148
|
exports(moduleObject: Module): ModuleExportDescriptor[];
|
|
27979
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/imports_static) */
|
|
28149
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/imports_static) */
|
|
27980
28150
|
imports(moduleObject: Module): ModuleImportDescriptor[];
|
|
27981
28151
|
};
|
|
27982
28152
|
|
|
@@ -27989,15 +28159,15 @@ declare namespace WebAssembly {
|
|
|
27989
28159
|
(message?: string): RuntimeError;
|
|
27990
28160
|
};
|
|
27991
28161
|
|
|
27992
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table) */
|
|
28162
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table) */
|
|
27993
28163
|
interface Table {
|
|
27994
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/length) */
|
|
28164
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/length) */
|
|
27995
28165
|
readonly length: number;
|
|
27996
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/get) */
|
|
28166
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/get) */
|
|
27997
28167
|
get(index: number): any;
|
|
27998
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/grow) */
|
|
28168
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/grow) */
|
|
27999
28169
|
grow(delta: number, value?: any): number;
|
|
28000
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Table/set) */
|
|
28170
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/set) */
|
|
28001
28171
|
set(index: number, value?: any): void;
|
|
28002
28172
|
}
|
|
28003
28173
|
|
|
@@ -28057,19 +28227,64 @@ declare namespace WebAssembly {
|
|
|
28057
28227
|
type Imports = Record<string, ModuleImports>;
|
|
28058
28228
|
type ModuleImports = Record<string, ImportValue>;
|
|
28059
28229
|
type ValueType = keyof ValueTypeMap;
|
|
28060
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compile_static) */
|
|
28230
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */
|
|
28061
28231
|
function compile(bytes: BufferSource): Promise<Module>;
|
|
28062
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compileStreaming_static) */
|
|
28232
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */
|
|
28063
28233
|
function compileStreaming(source: Response | PromiseLike<Response>): Promise<Module>;
|
|
28064
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiate_static) */
|
|
28234
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static) */
|
|
28065
28235
|
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
28066
28236
|
function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
|
|
28067
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiateStreaming_static) */
|
|
28237
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static) */
|
|
28068
28238
|
function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
28069
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/validate_static) */
|
|
28239
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static) */
|
|
28070
28240
|
function validate(bytes: BufferSource): boolean;
|
|
28071
28241
|
}
|
|
28072
28242
|
|
|
28243
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
28244
|
+
interface Console {
|
|
28245
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
28246
|
+
assert(condition?: boolean, ...data: any[]): void;
|
|
28247
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
28248
|
+
clear(): void;
|
|
28249
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
28250
|
+
count(label?: string): void;
|
|
28251
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
28252
|
+
countReset(label?: string): void;
|
|
28253
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
28254
|
+
debug(...data: any[]): void;
|
|
28255
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
28256
|
+
dir(item?: any, options?: any): void;
|
|
28257
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
28258
|
+
dirxml(...data: any[]): void;
|
|
28259
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
28260
|
+
error(...data: any[]): void;
|
|
28261
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
28262
|
+
group(...data: any[]): void;
|
|
28263
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
28264
|
+
groupCollapsed(...data: any[]): void;
|
|
28265
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
28266
|
+
groupEnd(): void;
|
|
28267
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
28268
|
+
info(...data: any[]): void;
|
|
28269
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
28270
|
+
log(...data: any[]): void;
|
|
28271
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
28272
|
+
table(tabularData?: any, properties?: string[]): void;
|
|
28273
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
28274
|
+
time(label?: string): void;
|
|
28275
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
28276
|
+
timeEnd(label?: string): void;
|
|
28277
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
28278
|
+
timeLog(label?: string, ...data: any[]): void;
|
|
28279
|
+
timeStamp(label?: string): void;
|
|
28280
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
28281
|
+
trace(...data: any[]): void;
|
|
28282
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
28283
|
+
warn(...data: any[]): void;
|
|
28284
|
+
}
|
|
28285
|
+
|
|
28286
|
+
declare var console: Console;
|
|
28287
|
+
|
|
28073
28288
|
interface AudioDataOutputCallback {
|
|
28074
28289
|
(output: AudioData): void;
|
|
28075
28290
|
}
|
|
@@ -28520,6 +28735,8 @@ declare var clientInformation: Navigator;
|
|
|
28520
28735
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)
|
|
28521
28736
|
*/
|
|
28522
28737
|
declare var closed: boolean;
|
|
28738
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore) */
|
|
28739
|
+
declare var cookieStore: CookieStore;
|
|
28523
28740
|
/**
|
|
28524
28741
|
* Defines a new custom element, mapping the given name to the given constructor as an autonomous custom element.
|
|
28525
28742
|
*
|
|
@@ -29327,6 +29544,7 @@ type ConstrainBoolean = boolean | ConstrainBooleanParameters;
|
|
|
29327
29544
|
type ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;
|
|
29328
29545
|
type ConstrainDouble = number | ConstrainDoubleRange;
|
|
29329
29546
|
type ConstrainULong = number | ConstrainULongRange;
|
|
29547
|
+
type CookieList = CookieListItem[];
|
|
29330
29548
|
type DOMHighResTimeStamp = number;
|
|
29331
29549
|
type EpochTimeStamp = number;
|
|
29332
29550
|
type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
|
|
@@ -29425,6 +29643,7 @@ type ColorSpaceConversion = "default" | "none";
|
|
|
29425
29643
|
type CompositeOperation = "accumulate" | "add" | "replace";
|
|
29426
29644
|
type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
|
|
29427
29645
|
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
|
|
29646
|
+
type CookieSameSite = "lax" | "none" | "strict";
|
|
29428
29647
|
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
|
|
29429
29648
|
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
|
|
29430
29649
|
type DirectionSetting = "" | "lr" | "rl";
|