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