typescript 5.5.4 → 5.6.2
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/lib/cs/diagnosticMessages.generated.json +292 -85
- package/lib/de/diagnosticMessages.generated.json +292 -85
- package/lib/es/diagnosticMessages.generated.json +290 -83
- package/lib/fr/diagnosticMessages.generated.json +292 -85
- package/lib/it/diagnosticMessages.generated.json +291 -84
- package/lib/ja/diagnosticMessages.generated.json +291 -84
- package/lib/ko/diagnosticMessages.generated.json +291 -84
- package/lib/lib.dom.asynciterable.d.ts +14 -6
- package/lib/lib.dom.d.ts +349 -858
- package/lib/lib.dom.iterable.d.ts +95 -79
- package/lib/lib.es2015.generator.d.ts +2 -2
- package/lib/lib.es2015.iterable.d.ts +100 -68
- package/lib/lib.es2017.object.d.ts +4 -4
- package/lib/lib.es2018.asyncgenerator.d.ts +2 -2
- package/lib/lib.es2018.asynciterable.d.ts +16 -6
- package/lib/lib.es2020.bigint.d.ts +8 -8
- package/lib/lib.es2020.string.d.ts +2 -2
- package/lib/lib.es2020.symbol.wellknown.d.ts +5 -1
- package/lib/lib.es2022.intl.d.ts +5 -1
- package/lib/lib.esnext.d.ts +1 -0
- package/lib/lib.esnext.disposable.d.ts +8 -0
- package/lib/lib.esnext.iterator.d.ts +148 -0
- package/lib/lib.webworker.asynciterable.d.ts +14 -6
- package/lib/lib.webworker.d.ts +79 -100
- package/lib/lib.webworker.iterable.d.ts +47 -35
- package/lib/pl/diagnosticMessages.generated.json +290 -83
- package/lib/pt-br/diagnosticMessages.generated.json +292 -85
- package/lib/ru/diagnosticMessages.generated.json +292 -85
- package/lib/tr/diagnosticMessages.generated.json +292 -85
- package/lib/tsc.js +2744 -1783
- package/lib/tsserver.js +33 -31
- package/lib/typescript.d.ts +244 -156
- package/lib/typescript.js +4460 -3392
- package/lib/typingsInstaller.js +3 -3
- package/lib/zh-cn/diagnosticMessages.generated.json +291 -84
- package/lib/zh-tw/diagnosticMessages.generated.json +290 -83
- package/package.json +36 -31
package/lib/lib.dom.d.ts
CHANGED
|
@@ -596,6 +596,11 @@ interface GetAnimationsOptions {
|
|
|
596
596
|
subtree?: boolean;
|
|
597
597
|
}
|
|
598
598
|
|
|
599
|
+
interface GetHTMLOptions {
|
|
600
|
+
serializableShadowRoots?: boolean;
|
|
601
|
+
shadowRoots?: ShadowRoot[];
|
|
602
|
+
}
|
|
603
|
+
|
|
599
604
|
interface GetNotificationOptions {
|
|
600
605
|
tag?: string;
|
|
601
606
|
}
|
|
@@ -685,10 +690,6 @@ interface ImageEncodeOptions {
|
|
|
685
690
|
type?: string;
|
|
686
691
|
}
|
|
687
692
|
|
|
688
|
-
interface ImportMeta {
|
|
689
|
-
url: string;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
693
|
interface InputEventInit extends UIEventInit {
|
|
693
694
|
data?: string | null;
|
|
694
695
|
dataTransfer?: DataTransfer | null;
|
|
@@ -862,6 +863,10 @@ interface MediaKeySystemMediaCapability {
|
|
|
862
863
|
robustness?: string;
|
|
863
864
|
}
|
|
864
865
|
|
|
866
|
+
interface MediaKeysPolicy {
|
|
867
|
+
minHdcpVersion?: string;
|
|
868
|
+
}
|
|
869
|
+
|
|
865
870
|
interface MediaMetadataInit {
|
|
866
871
|
album?: string;
|
|
867
872
|
artist?: string;
|
|
@@ -1201,6 +1206,10 @@ interface PointerEventInit extends MouseEventInit {
|
|
|
1201
1206
|
width?: number;
|
|
1202
1207
|
}
|
|
1203
1208
|
|
|
1209
|
+
interface PointerLockOptions {
|
|
1210
|
+
unadjustedMovement?: boolean;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1204
1213
|
interface PopStateEventInit extends EventInit {
|
|
1205
1214
|
state?: any;
|
|
1206
1215
|
}
|
|
@@ -1384,11 +1393,6 @@ interface RTCIceCandidateInit {
|
|
|
1384
1393
|
usernameFragment?: string | null;
|
|
1385
1394
|
}
|
|
1386
1395
|
|
|
1387
|
-
interface RTCIceCandidatePair {
|
|
1388
|
-
local: RTCIceCandidate;
|
|
1389
|
-
remote: RTCIceCandidate;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
1396
|
interface RTCIceCandidatePairStats extends RTCStats {
|
|
1393
1397
|
availableIncomingBitrate?: number;
|
|
1394
1398
|
availableOutgoingBitrate?: number;
|
|
@@ -1520,7 +1524,7 @@ interface RTCRtcpParameters {
|
|
|
1520
1524
|
}
|
|
1521
1525
|
|
|
1522
1526
|
interface RTCRtpCapabilities {
|
|
1523
|
-
codecs:
|
|
1527
|
+
codecs: RTCRtpCodec[];
|
|
1524
1528
|
headerExtensions: RTCRtpHeaderExtensionCapability[];
|
|
1525
1529
|
}
|
|
1526
1530
|
|
|
@@ -1531,9 +1535,6 @@ interface RTCRtpCodec {
|
|
|
1531
1535
|
sdpFmtpLine?: string;
|
|
1532
1536
|
}
|
|
1533
1537
|
|
|
1534
|
-
interface RTCRtpCodecCapability extends RTCRtpCodec {
|
|
1535
|
-
}
|
|
1536
|
-
|
|
1537
1538
|
interface RTCRtpCodecParameters extends RTCRtpCodec {
|
|
1538
1539
|
payloadType: number;
|
|
1539
1540
|
}
|
|
@@ -2228,7 +2229,9 @@ interface ARIAMixin {
|
|
|
2228
2229
|
ariaAtomic: string | null;
|
|
2229
2230
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
|
|
2230
2231
|
ariaAutoComplete: string | null;
|
|
2232
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) */
|
|
2231
2233
|
ariaBrailleLabel: string | null;
|
|
2234
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) */
|
|
2232
2235
|
ariaBrailleRoleDescription: string | null;
|
|
2233
2236
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
|
|
2234
2237
|
ariaBusy: string | null;
|
|
@@ -2811,7 +2814,6 @@ declare var AudioNode: {
|
|
|
2811
2814
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam)
|
|
2812
2815
|
*/
|
|
2813
2816
|
interface AudioParam {
|
|
2814
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/automationRate) */
|
|
2815
2817
|
automationRate: AutomationRate;
|
|
2816
2818
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/defaultValue) */
|
|
2817
2819
|
readonly defaultValue: number;
|
|
@@ -3099,7 +3101,11 @@ declare var BaseAudioContext: {
|
|
|
3099
3101
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
|
|
3100
3102
|
*/
|
|
3101
3103
|
interface BeforeUnloadEvent extends Event {
|
|
3102
|
-
/**
|
|
3104
|
+
/**
|
|
3105
|
+
* @deprecated
|
|
3106
|
+
*
|
|
3107
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
|
|
3108
|
+
*/
|
|
3103
3109
|
returnValue: any;
|
|
3104
3110
|
}
|
|
3105
3111
|
|
|
@@ -3407,7 +3413,7 @@ interface CSSImportRule extends CSSRule {
|
|
|
3407
3413
|
readonly layerName: string | null;
|
|
3408
3414
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media) */
|
|
3409
3415
|
readonly media: MediaList;
|
|
3410
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/
|
|
3416
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/stylesheet) */
|
|
3411
3417
|
readonly styleSheet: CSSStyleSheet | null;
|
|
3412
3418
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText) */
|
|
3413
3419
|
readonly supportsText: string | null;
|
|
@@ -3700,7 +3706,7 @@ declare var CSSPerspective: {
|
|
|
3700
3706
|
interface CSSPropertyRule extends CSSRule {
|
|
3701
3707
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/inherits) */
|
|
3702
3708
|
readonly inherits: boolean;
|
|
3703
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/
|
|
3709
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialvalue) */
|
|
3704
3710
|
readonly initialValue: string | null;
|
|
3705
3711
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/name) */
|
|
3706
3712
|
readonly name: string;
|
|
@@ -3813,8 +3819,11 @@ declare var CSSScale: {
|
|
|
3813
3819
|
new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
|
|
3814
3820
|
};
|
|
3815
3821
|
|
|
3822
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule) */
|
|
3816
3823
|
interface CSSScopeRule extends CSSGroupingRule {
|
|
3824
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/end) */
|
|
3817
3825
|
readonly end: string | null;
|
|
3826
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/start) */
|
|
3818
3827
|
readonly start: string | null;
|
|
3819
3828
|
}
|
|
3820
3829
|
|
|
@@ -3937,7 +3946,6 @@ interface CSSStyleDeclaration {
|
|
|
3937
3946
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
|
|
3938
3947
|
backgroundSize: string;
|
|
3939
3948
|
baselineShift: string;
|
|
3940
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/baseline-source) */
|
|
3941
3949
|
baselineSource: string;
|
|
3942
3950
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
|
|
3943
3951
|
blockSize: string;
|
|
@@ -4119,11 +4127,9 @@ interface CSSStyleDeclaration {
|
|
|
4119
4127
|
columns: string;
|
|
4120
4128
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
|
|
4121
4129
|
contain: string;
|
|
4122
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size) */
|
|
4123
4130
|
containIntrinsicBlockSize: string;
|
|
4124
4131
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
|
|
4125
4132
|
containIntrinsicHeight: string;
|
|
4126
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size) */
|
|
4127
4133
|
containIntrinsicInlineSize: string;
|
|
4128
4134
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
|
|
4129
4135
|
containIntrinsicSize: string;
|
|
@@ -4640,7 +4646,9 @@ interface CSSStyleDeclaration {
|
|
|
4640
4646
|
textUnderlinePosition: string;
|
|
4641
4647
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
|
|
4642
4648
|
textWrap: string;
|
|
4649
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-mode) */
|
|
4643
4650
|
textWrapMode: string;
|
|
4651
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-style) */
|
|
4644
4652
|
textWrapStyle: string;
|
|
4645
4653
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
|
|
4646
4654
|
top: string;
|
|
@@ -4675,6 +4683,8 @@ interface CSSStyleDeclaration {
|
|
|
4675
4683
|
vectorEffect: string;
|
|
4676
4684
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
|
|
4677
4685
|
verticalAlign: string;
|
|
4686
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
|
|
4687
|
+
viewTransitionName: string;
|
|
4678
4688
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
|
|
4679
4689
|
visibility: string;
|
|
4680
4690
|
/**
|
|
@@ -4905,7 +4915,11 @@ interface CSSStyleDeclaration {
|
|
|
4905
4915
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)
|
|
4906
4916
|
*/
|
|
4907
4917
|
webkitJustifyContent: string;
|
|
4908
|
-
/**
|
|
4918
|
+
/**
|
|
4919
|
+
* @deprecated This is a legacy alias of `lineClamp`.
|
|
4920
|
+
*
|
|
4921
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp)
|
|
4922
|
+
*/
|
|
4909
4923
|
webkitLineClamp: string;
|
|
4910
4924
|
/**
|
|
4911
4925
|
* @deprecated This is a legacy alias of `mask`.
|
|
@@ -5567,6 +5581,8 @@ interface CanvasShadowStyles {
|
|
|
5567
5581
|
}
|
|
5568
5582
|
|
|
5569
5583
|
interface CanvasState {
|
|
5584
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isContextLost) */
|
|
5585
|
+
isContextLost(): boolean;
|
|
5570
5586
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/reset) */
|
|
5571
5587
|
reset(): void;
|
|
5572
5588
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/restore) */
|
|
@@ -5764,6 +5780,8 @@ declare var ClipboardEvent: {
|
|
|
5764
5780
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem)
|
|
5765
5781
|
*/
|
|
5766
5782
|
interface ClipboardItem {
|
|
5783
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/presentationStyle) */
|
|
5784
|
+
readonly presentationStyle: PresentationStyle;
|
|
5767
5785
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/types) */
|
|
5768
5786
|
readonly types: ReadonlyArray<string>;
|
|
5769
5787
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/getType) */
|
|
@@ -5773,6 +5791,8 @@ interface ClipboardItem {
|
|
|
5773
5791
|
declare var ClipboardItem: {
|
|
5774
5792
|
prototype: ClipboardItem;
|
|
5775
5793
|
new(items: Record<string, string | Blob | PromiseLike<string | Blob>>, options?: ClipboardItemOptions): ClipboardItem;
|
|
5794
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/supports_static) */
|
|
5795
|
+
supports(type: string): boolean;
|
|
5776
5796
|
};
|
|
5777
5797
|
|
|
5778
5798
|
/**
|
|
@@ -6174,9 +6194,7 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
6174
6194
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6175
6195
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
6176
6196
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6177
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
|
|
6178
6197
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6179
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scaleSelf) */
|
|
6180
6198
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6181
6199
|
setMatrixValue(transformList: string): DOMMatrix;
|
|
6182
6200
|
skewXSelf(sx?: number): DOMMatrix;
|
|
@@ -6200,88 +6218,48 @@ declare var WebKitCSSMatrix: typeof DOMMatrix;
|
|
|
6200
6218
|
|
|
6201
6219
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly) */
|
|
6202
6220
|
interface DOMMatrixReadOnly {
|
|
6203
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/a) */
|
|
6204
6221
|
readonly a: number;
|
|
6205
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/b) */
|
|
6206
6222
|
readonly b: number;
|
|
6207
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/c) */
|
|
6208
6223
|
readonly c: number;
|
|
6209
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/d) */
|
|
6210
6224
|
readonly d: number;
|
|
6211
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/e) */
|
|
6212
6225
|
readonly e: number;
|
|
6213
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/f) */
|
|
6214
6226
|
readonly f: number;
|
|
6215
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
|
|
6216
6227
|
readonly is2D: boolean;
|
|
6217
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
|
|
6218
6228
|
readonly isIdentity: boolean;
|
|
6219
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m11) */
|
|
6220
6229
|
readonly m11: number;
|
|
6221
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m12) */
|
|
6222
6230
|
readonly m12: number;
|
|
6223
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m13) */
|
|
6224
6231
|
readonly m13: number;
|
|
6225
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m14) */
|
|
6226
6232
|
readonly m14: number;
|
|
6227
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m21) */
|
|
6228
6233
|
readonly m21: number;
|
|
6229
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m22) */
|
|
6230
6234
|
readonly m22: number;
|
|
6231
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m23) */
|
|
6232
6235
|
readonly m23: number;
|
|
6233
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m24) */
|
|
6234
6236
|
readonly m24: number;
|
|
6235
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m31) */
|
|
6236
6237
|
readonly m31: number;
|
|
6237
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m32) */
|
|
6238
6238
|
readonly m32: number;
|
|
6239
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m33) */
|
|
6240
6239
|
readonly m33: number;
|
|
6241
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m34) */
|
|
6242
6240
|
readonly m34: number;
|
|
6243
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m41) */
|
|
6244
6241
|
readonly m41: number;
|
|
6245
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m42) */
|
|
6246
6242
|
readonly m42: number;
|
|
6247
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m43) */
|
|
6248
6243
|
readonly m43: number;
|
|
6249
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m44) */
|
|
6250
6244
|
readonly m44: number;
|
|
6251
6245
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
|
|
6252
6246
|
flipX(): DOMMatrix;
|
|
6253
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY) */
|
|
6254
6247
|
flipY(): DOMMatrix;
|
|
6255
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
6256
6248
|
inverse(): DOMMatrix;
|
|
6257
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
6258
6249
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
6259
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
|
|
6260
6250
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
6261
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
|
|
6262
6251
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
6263
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
|
|
6264
6252
|
rotateFromVector(x?: number, y?: number): DOMMatrix;
|
|
6265
6253
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
|
|
6266
6254
|
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6267
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
|
|
6268
6255
|
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
6269
|
-
/**
|
|
6270
|
-
* @deprecated
|
|
6271
|
-
*
|
|
6272
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scaleNonUniform)
|
|
6273
|
-
*/
|
|
6256
|
+
/** @deprecated */
|
|
6274
6257
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
6275
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
|
|
6276
6258
|
skewX(sx?: number): DOMMatrix;
|
|
6277
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
|
|
6278
6259
|
skewY(sy?: number): DOMMatrix;
|
|
6279
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
6280
6260
|
toFloat32Array(): Float32Array;
|
|
6281
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
|
|
6282
6261
|
toFloat64Array(): Float64Array;
|
|
6283
6262
|
toJSON(): any;
|
|
6284
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
|
|
6285
6263
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
6286
6264
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
6287
6265
|
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
@@ -6353,7 +6331,6 @@ interface DOMPointReadOnly {
|
|
|
6353
6331
|
readonly y: number;
|
|
6354
6332
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
|
|
6355
6333
|
readonly z: number;
|
|
6356
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
|
|
6357
6334
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
6358
6335
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
|
|
6359
6336
|
toJSON(): any;
|
|
@@ -6368,15 +6345,10 @@ declare var DOMPointReadOnly: {
|
|
|
6368
6345
|
|
|
6369
6346
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad) */
|
|
6370
6347
|
interface DOMQuad {
|
|
6371
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1) */
|
|
6372
6348
|
readonly p1: DOMPoint;
|
|
6373
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2) */
|
|
6374
6349
|
readonly p2: DOMPoint;
|
|
6375
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3) */
|
|
6376
6350
|
readonly p3: DOMPoint;
|
|
6377
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4) */
|
|
6378
6351
|
readonly p4: DOMPoint;
|
|
6379
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds) */
|
|
6380
6352
|
getBounds(): DOMRect;
|
|
6381
6353
|
toJSON(): any;
|
|
6382
6354
|
}
|
|
@@ -6399,6 +6371,7 @@ interface DOMRect extends DOMRectReadOnly {
|
|
|
6399
6371
|
declare var DOMRect: {
|
|
6400
6372
|
prototype: DOMRect;
|
|
6401
6373
|
new(x?: number, y?: number, width?: number, height?: number): DOMRect;
|
|
6374
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static) */
|
|
6402
6375
|
fromRect(other?: DOMRectInit): DOMRect;
|
|
6403
6376
|
};
|
|
6404
6377
|
|
|
@@ -7143,11 +7116,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7143
7116
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptNode)
|
|
7144
7117
|
*/
|
|
7145
7118
|
adoptNode<T extends Node>(node: T): T;
|
|
7146
|
-
/**
|
|
7147
|
-
* @deprecated
|
|
7148
|
-
*
|
|
7149
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/captureEvents)
|
|
7150
|
-
*/
|
|
7119
|
+
/** @deprecated */
|
|
7151
7120
|
captureEvents(): void;
|
|
7152
7121
|
/** @deprecated */
|
|
7153
7122
|
caretRangeFromPoint(x: number, y: number): Range | null;
|
|
@@ -7281,6 +7250,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7281
7250
|
createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent;
|
|
7282
7251
|
createEvent(eventInterface: "StorageEvent"): StorageEvent;
|
|
7283
7252
|
createEvent(eventInterface: "SubmitEvent"): SubmitEvent;
|
|
7253
|
+
createEvent(eventInterface: "TextEvent"): TextEvent;
|
|
7284
7254
|
createEvent(eventInterface: "ToggleEvent"): ToggleEvent;
|
|
7285
7255
|
createEvent(eventInterface: "TouchEvent"): TouchEvent;
|
|
7286
7256
|
createEvent(eventInterface: "TrackEvent"): TrackEvent;
|
|
@@ -7437,8 +7407,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7437
7407
|
* Returns a Boolean value that indicates whether the specified command is in the indeterminate state.
|
|
7438
7408
|
* @param commandId String that specifies a command identifier.
|
|
7439
7409
|
* @deprecated
|
|
7440
|
-
*
|
|
7441
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandIndeterm)
|
|
7442
7410
|
*/
|
|
7443
7411
|
queryCommandIndeterm(commandId: string): boolean;
|
|
7444
7412
|
/**
|
|
@@ -7461,18 +7429,14 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7461
7429
|
* Returns the current value of the document, range, or current selection for the given command.
|
|
7462
7430
|
* @param commandId String that specifies a command identifier.
|
|
7463
7431
|
* @deprecated
|
|
7464
|
-
*
|
|
7465
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandValue)
|
|
7466
7432
|
*/
|
|
7467
7433
|
queryCommandValue(commandId: string): string;
|
|
7468
|
-
/**
|
|
7469
|
-
* @deprecated
|
|
7470
|
-
*
|
|
7471
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/releaseEvents)
|
|
7472
|
-
*/
|
|
7434
|
+
/** @deprecated */
|
|
7473
7435
|
releaseEvents(): void;
|
|
7474
7436
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess) */
|
|
7475
7437
|
requestStorageAccess(): Promise<void>;
|
|
7438
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/startViewTransition) */
|
|
7439
|
+
startViewTransition(callbackOptions?: UpdateCallback): ViewTransition;
|
|
7476
7440
|
/**
|
|
7477
7441
|
* Writes one or more HTML expressions to a document in the specified window.
|
|
7478
7442
|
* @param content Specifies the text and HTML tags to write.
|
|
@@ -7496,6 +7460,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7496
7460
|
declare var Document: {
|
|
7497
7461
|
prototype: Document;
|
|
7498
7462
|
new(): Document;
|
|
7463
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static) */
|
|
7499
7464
|
parseHTMLUnsafe(html: string): Document;
|
|
7500
7465
|
};
|
|
7501
7466
|
|
|
@@ -7717,7 +7682,7 @@ interface ElementEventMap {
|
|
|
7717
7682
|
*
|
|
7718
7683
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element)
|
|
7719
7684
|
*/
|
|
7720
|
-
interface Element extends Node, ARIAMixin, Animatable, ChildNode,
|
|
7685
|
+
interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTypeChildNode, ParentNode, Slottable {
|
|
7721
7686
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attributes) */
|
|
7722
7687
|
readonly attributes: NamedNodeMap;
|
|
7723
7688
|
/**
|
|
@@ -7746,6 +7711,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7746
7711
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/id)
|
|
7747
7712
|
*/
|
|
7748
7713
|
id: string;
|
|
7714
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/innerHTML) */
|
|
7715
|
+
innerHTML: string;
|
|
7749
7716
|
/**
|
|
7750
7717
|
* Returns the local name.
|
|
7751
7718
|
*
|
|
@@ -7862,6 +7829,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7862
7829
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
7863
7830
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
7864
7831
|
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
7832
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML) */
|
|
7833
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
7865
7834
|
/**
|
|
7866
7835
|
* Returns true if element has an attribute whose qualified name is qualifiedName, and false otherwise.
|
|
7867
7836
|
*
|
|
@@ -7885,7 +7854,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7885
7854
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement) */
|
|
7886
7855
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
7887
7856
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML) */
|
|
7888
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
7857
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
7889
7858
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentText) */
|
|
7890
7859
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
7891
7860
|
/**
|
|
@@ -7919,7 +7888,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7919
7888
|
*/
|
|
7920
7889
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
7921
7890
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock) */
|
|
7922
|
-
requestPointerLock(): void
|
|
7891
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
7923
7892
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll) */
|
|
7924
7893
|
scroll(options?: ScrollToOptions): void;
|
|
7925
7894
|
scroll(x: number, y: number): void;
|
|
@@ -7947,6 +7916,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7947
7916
|
setAttributeNode(attr: Attr): Attr | null;
|
|
7948
7917
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
|
|
7949
7918
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
7919
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe) */
|
|
7950
7920
|
setHTMLUnsafe(html: string): void;
|
|
7951
7921
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
|
|
7952
7922
|
setPointerCapture(pointerId: number): void;
|
|
@@ -7976,6 +7946,7 @@ declare var Element: {
|
|
|
7976
7946
|
};
|
|
7977
7947
|
|
|
7978
7948
|
interface ElementCSSInlineStyle {
|
|
7949
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
|
|
7979
7950
|
readonly attributeStyleMap: StylePropertyMap;
|
|
7980
7951
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
|
|
7981
7952
|
readonly style: CSSStyleDeclaration;
|
|
@@ -8090,15 +8061,10 @@ declare var EncodedVideoChunk: {
|
|
|
8090
8061
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
|
|
8091
8062
|
*/
|
|
8092
8063
|
interface ErrorEvent extends Event {
|
|
8093
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
|
|
8094
8064
|
readonly colno: number;
|
|
8095
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
8096
8065
|
readonly error: any;
|
|
8097
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
8098
8066
|
readonly filename: string;
|
|
8099
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
|
|
8100
8067
|
readonly lineno: number;
|
|
8101
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
8102
8068
|
readonly message: string;
|
|
8103
8069
|
}
|
|
8104
8070
|
|
|
@@ -8354,23 +8320,11 @@ declare var EventTarget: {
|
|
|
8354
8320
|
new(): EventTarget;
|
|
8355
8321
|
};
|
|
8356
8322
|
|
|
8357
|
-
/**
|
|
8358
|
-
* @deprecated
|
|
8359
|
-
*
|
|
8360
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/External)
|
|
8361
|
-
*/
|
|
8323
|
+
/** @deprecated */
|
|
8362
8324
|
interface External {
|
|
8363
|
-
/**
|
|
8364
|
-
* @deprecated
|
|
8365
|
-
*
|
|
8366
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/AddSearchProvider)
|
|
8367
|
-
*/
|
|
8325
|
+
/** @deprecated */
|
|
8368
8326
|
AddSearchProvider(): void;
|
|
8369
|
-
/**
|
|
8370
|
-
* @deprecated
|
|
8371
|
-
*
|
|
8372
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/IsSearchProviderInstalled)
|
|
8373
|
-
*/
|
|
8327
|
+
/** @deprecated */
|
|
8374
8328
|
IsSearchProviderInstalled(): void;
|
|
8375
8329
|
}
|
|
8376
8330
|
|
|
@@ -8810,6 +8764,7 @@ interface Gamepad {
|
|
|
8810
8764
|
readonly mapping: GamepadMappingType;
|
|
8811
8765
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
|
|
8812
8766
|
readonly timestamp: DOMHighResTimeStamp;
|
|
8767
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/vibrationActuator) */
|
|
8813
8768
|
readonly vibrationActuator: GamepadHapticActuator;
|
|
8814
8769
|
}
|
|
8815
8770
|
|
|
@@ -8858,6 +8813,7 @@ declare var GamepadEvent: {
|
|
|
8858
8813
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
|
|
8859
8814
|
*/
|
|
8860
8815
|
interface GamepadHapticActuator {
|
|
8816
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/playEffect) */
|
|
8861
8817
|
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
|
|
8862
8818
|
reset(): Promise<GamepadHapticsResult>;
|
|
8863
8819
|
}
|
|
@@ -8913,6 +8869,8 @@ interface GeolocationCoordinates {
|
|
|
8913
8869
|
readonly longitude: number;
|
|
8914
8870
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/speed) */
|
|
8915
8871
|
readonly speed: number | null;
|
|
8872
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/toJSON) */
|
|
8873
|
+
toJSON(): any;
|
|
8916
8874
|
}
|
|
8917
8875
|
|
|
8918
8876
|
declare var GeolocationCoordinates: {
|
|
@@ -8930,6 +8888,8 @@ interface GeolocationPosition {
|
|
|
8930
8888
|
readonly coords: GeolocationCoordinates;
|
|
8931
8889
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/timestamp) */
|
|
8932
8890
|
readonly timestamp: EpochTimeStamp;
|
|
8891
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/toJSON) */
|
|
8892
|
+
toJSON(): any;
|
|
8933
8893
|
}
|
|
8934
8894
|
|
|
8935
8895
|
declare var GeolocationPosition: {
|
|
@@ -8975,7 +8935,9 @@ interface GlobalEventHandlersEventMap {
|
|
|
8975
8935
|
"compositionend": CompositionEvent;
|
|
8976
8936
|
"compositionstart": CompositionEvent;
|
|
8977
8937
|
"compositionupdate": CompositionEvent;
|
|
8938
|
+
"contextlost": Event;
|
|
8978
8939
|
"contextmenu": MouseEvent;
|
|
8940
|
+
"contextrestored": Event;
|
|
8979
8941
|
"copy": ClipboardEvent;
|
|
8980
8942
|
"cuechange": Event;
|
|
8981
8943
|
"cut": ClipboardEvent;
|
|
@@ -9089,7 +9051,7 @@ interface GlobalEventHandlers {
|
|
|
9089
9051
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
|
|
9090
9052
|
*/
|
|
9091
9053
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
9092
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9054
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
|
|
9093
9055
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9094
9056
|
/**
|
|
9095
9057
|
* Occurs when playback is possible, but would require further buffering.
|
|
@@ -9116,6 +9078,8 @@ interface GlobalEventHandlers {
|
|
|
9116
9078
|
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
9117
9079
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */
|
|
9118
9080
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9081
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/webglcontextlost_event) */
|
|
9082
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9119
9083
|
/**
|
|
9120
9084
|
* Fires when the user clicks the right mouse button in the client area, opening the context menu.
|
|
9121
9085
|
* @param ev The mouse event.
|
|
@@ -9123,6 +9087,8 @@ interface GlobalEventHandlers {
|
|
|
9123
9087
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event)
|
|
9124
9088
|
*/
|
|
9125
9089
|
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
9090
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) */
|
|
9091
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9126
9092
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) */
|
|
9127
9093
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
9128
9094
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) */
|
|
@@ -9273,7 +9239,7 @@ interface GlobalEventHandlers {
|
|
|
9273
9239
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
|
|
9274
9240
|
*/
|
|
9275
9241
|
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9276
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9242
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
|
|
9277
9243
|
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
9278
9244
|
/**
|
|
9279
9245
|
* Fires when the user clicks the object with either mouse button.
|
|
@@ -9542,15 +9508,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9542
9508
|
/**
|
|
9543
9509
|
* Sets or retrieves the character set used to encode the object.
|
|
9544
9510
|
* @deprecated
|
|
9545
|
-
*
|
|
9546
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/charset)
|
|
9547
9511
|
*/
|
|
9548
9512
|
charset: string;
|
|
9549
9513
|
/**
|
|
9550
9514
|
* Sets or retrieves the coordinates of the object.
|
|
9551
9515
|
* @deprecated
|
|
9552
|
-
*
|
|
9553
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/coords)
|
|
9554
9516
|
*/
|
|
9555
9517
|
coords: string;
|
|
9556
9518
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/download) */
|
|
@@ -9564,8 +9526,6 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9564
9526
|
/**
|
|
9565
9527
|
* Sets or retrieves the shape of the object.
|
|
9566
9528
|
* @deprecated
|
|
9567
|
-
*
|
|
9568
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
|
|
9569
9529
|
*/
|
|
9570
9530
|
name: string;
|
|
9571
9531
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
|
|
@@ -9583,15 +9543,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9583
9543
|
/**
|
|
9584
9544
|
* Sets or retrieves the relationship between the object and the destination of the link.
|
|
9585
9545
|
* @deprecated
|
|
9586
|
-
*
|
|
9587
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/rev)
|
|
9588
9546
|
*/
|
|
9589
9547
|
rev: string;
|
|
9590
9548
|
/**
|
|
9591
9549
|
* Sets or retrieves the shape of the object.
|
|
9592
9550
|
* @deprecated
|
|
9593
|
-
*
|
|
9594
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/shape)
|
|
9595
9551
|
*/
|
|
9596
9552
|
shape: string;
|
|
9597
9553
|
/**
|
|
@@ -9625,25 +9581,14 @@ declare var HTMLAnchorElement: {
|
|
|
9625
9581
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)
|
|
9626
9582
|
*/
|
|
9627
9583
|
interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
9628
|
-
/**
|
|
9629
|
-
* Sets or retrieves a text alternative to the graphic.
|
|
9630
|
-
*
|
|
9631
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
|
|
9632
|
-
*/
|
|
9584
|
+
/** Sets or retrieves a text alternative to the graphic. */
|
|
9633
9585
|
alt: string;
|
|
9634
|
-
/**
|
|
9635
|
-
* Sets or retrieves the coordinates of the object.
|
|
9636
|
-
*
|
|
9637
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
|
|
9638
|
-
*/
|
|
9586
|
+
/** Sets or retrieves the coordinates of the object. */
|
|
9639
9587
|
coords: string;
|
|
9640
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
|
|
9641
9588
|
download: string;
|
|
9642
9589
|
/**
|
|
9643
9590
|
* Sets or gets whether clicks in this region cause action.
|
|
9644
9591
|
* @deprecated
|
|
9645
|
-
*
|
|
9646
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
|
|
9647
9592
|
*/
|
|
9648
9593
|
noHref: boolean;
|
|
9649
9594
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
|
|
@@ -9654,11 +9599,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9654
9599
|
rel: string;
|
|
9655
9600
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
|
|
9656
9601
|
readonly relList: DOMTokenList;
|
|
9657
|
-
/**
|
|
9658
|
-
* Sets or retrieves the shape of the object.
|
|
9659
|
-
*
|
|
9660
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
|
|
9661
|
-
*/
|
|
9602
|
+
/** Sets or retrieves the shape of the object. */
|
|
9662
9603
|
shape: string;
|
|
9663
9604
|
/**
|
|
9664
9605
|
* Sets or retrieves the window or frame at which to target content.
|
|
@@ -9703,8 +9644,6 @@ interface HTMLBRElement extends HTMLElement {
|
|
|
9703
9644
|
/**
|
|
9704
9645
|
* Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.
|
|
9705
9646
|
* @deprecated
|
|
9706
|
-
*
|
|
9707
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBRElement/clear)
|
|
9708
9647
|
*/
|
|
9709
9648
|
clear: string;
|
|
9710
9649
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -9724,11 +9663,7 @@ declare var HTMLBRElement: {
|
|
|
9724
9663
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement)
|
|
9725
9664
|
*/
|
|
9726
9665
|
interface HTMLBaseElement extends HTMLElement {
|
|
9727
|
-
/**
|
|
9728
|
-
* Gets or sets the baseline URL on which relative links are based.
|
|
9729
|
-
*
|
|
9730
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement/href)
|
|
9731
|
-
*/
|
|
9666
|
+
/** Gets or sets the baseline URL on which relative links are based. */
|
|
9732
9667
|
href: string;
|
|
9733
9668
|
/**
|
|
9734
9669
|
* Sets or retrieves the window or frame at which to target content.
|
|
@@ -9756,41 +9691,17 @@ interface HTMLBodyElementEventMap extends HTMLElementEventMap, WindowEventHandle
|
|
|
9756
9691
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement)
|
|
9757
9692
|
*/
|
|
9758
9693
|
interface HTMLBodyElement extends HTMLElement, WindowEventHandlers {
|
|
9759
|
-
/**
|
|
9760
|
-
* @deprecated
|
|
9761
|
-
*
|
|
9762
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/aLink)
|
|
9763
|
-
*/
|
|
9694
|
+
/** @deprecated */
|
|
9764
9695
|
aLink: string;
|
|
9765
|
-
/**
|
|
9766
|
-
* @deprecated
|
|
9767
|
-
*
|
|
9768
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/background)
|
|
9769
|
-
*/
|
|
9696
|
+
/** @deprecated */
|
|
9770
9697
|
background: string;
|
|
9771
|
-
/**
|
|
9772
|
-
* @deprecated
|
|
9773
|
-
*
|
|
9774
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/bgColor)
|
|
9775
|
-
*/
|
|
9698
|
+
/** @deprecated */
|
|
9776
9699
|
bgColor: string;
|
|
9777
|
-
/**
|
|
9778
|
-
* @deprecated
|
|
9779
|
-
*
|
|
9780
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/link)
|
|
9781
|
-
*/
|
|
9700
|
+
/** @deprecated */
|
|
9782
9701
|
link: string;
|
|
9783
|
-
/**
|
|
9784
|
-
* @deprecated
|
|
9785
|
-
*
|
|
9786
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/text)
|
|
9787
|
-
*/
|
|
9702
|
+
/** @deprecated */
|
|
9788
9703
|
text: string;
|
|
9789
|
-
/**
|
|
9790
|
-
* @deprecated
|
|
9791
|
-
*
|
|
9792
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/vLink)
|
|
9793
|
-
*/
|
|
9704
|
+
/** @deprecated */
|
|
9794
9705
|
vLink: string;
|
|
9795
9706
|
addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
9796
9707
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -9811,49 +9722,21 @@ declare var HTMLBodyElement: {
|
|
|
9811
9722
|
interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
9812
9723
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/disabled) */
|
|
9813
9724
|
disabled: boolean;
|
|
9814
|
-
/**
|
|
9815
|
-
* Retrieves a reference to the form that the object is embedded in.
|
|
9816
|
-
*
|
|
9817
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
|
|
9818
|
-
*/
|
|
9725
|
+
/** Retrieves a reference to the form that the object is embedded in. */
|
|
9819
9726
|
readonly form: HTMLFormElement | null;
|
|
9820
|
-
/**
|
|
9821
|
-
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
9822
|
-
*
|
|
9823
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
|
|
9824
|
-
*/
|
|
9727
|
+
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
|
|
9825
9728
|
formAction: string;
|
|
9826
|
-
/**
|
|
9827
|
-
* Used to override the encoding (formEnctype attribute) specified on the form element.
|
|
9828
|
-
*
|
|
9829
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
|
|
9830
|
-
*/
|
|
9729
|
+
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
9831
9730
|
formEnctype: string;
|
|
9832
|
-
/**
|
|
9833
|
-
* Overrides the submit method attribute previously specified on a form element.
|
|
9834
|
-
*
|
|
9835
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
|
|
9836
|
-
*/
|
|
9731
|
+
/** Overrides the submit method attribute previously specified on a form element. */
|
|
9837
9732
|
formMethod: string;
|
|
9838
|
-
/**
|
|
9839
|
-
* Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
|
|
9840
|
-
*
|
|
9841
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formNoValidate)
|
|
9842
|
-
*/
|
|
9733
|
+
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
9843
9734
|
formNoValidate: boolean;
|
|
9844
|
-
/**
|
|
9845
|
-
* Overrides the target attribute on a form element.
|
|
9846
|
-
*
|
|
9847
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formTarget)
|
|
9848
|
-
*/
|
|
9735
|
+
/** Overrides the target attribute on a form element. */
|
|
9849
9736
|
formTarget: string;
|
|
9850
9737
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels) */
|
|
9851
9738
|
readonly labels: NodeListOf<HTMLLabelElement>;
|
|
9852
|
-
/**
|
|
9853
|
-
* Sets or retrieves the name of the object.
|
|
9854
|
-
*
|
|
9855
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/name)
|
|
9856
|
-
*/
|
|
9739
|
+
/** Sets or retrieves the name of the object. */
|
|
9857
9740
|
name: string;
|
|
9858
9741
|
/**
|
|
9859
9742
|
* Gets the classification and default behavior of the button.
|
|
@@ -9861,33 +9744,16 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
9861
9744
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/type)
|
|
9862
9745
|
*/
|
|
9863
9746
|
type: "submit" | "reset" | "button";
|
|
9864
|
-
/**
|
|
9865
|
-
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
|
9866
|
-
*
|
|
9867
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validationMessage)
|
|
9868
|
-
*/
|
|
9747
|
+
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
|
9869
9748
|
readonly validationMessage: string;
|
|
9870
|
-
/**
|
|
9871
|
-
* Returns a ValidityState object that represents the validity states of an element.
|
|
9872
|
-
*
|
|
9873
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validity)
|
|
9874
|
-
*/
|
|
9749
|
+
/** Returns a ValidityState object that represents the validity states of an element. */
|
|
9875
9750
|
readonly validity: ValidityState;
|
|
9876
|
-
/**
|
|
9877
|
-
* Sets or retrieves the default or selected value of the control.
|
|
9878
|
-
*
|
|
9879
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/value)
|
|
9880
|
-
*/
|
|
9751
|
+
/** Sets or retrieves the default or selected value of the control. */
|
|
9881
9752
|
value: string;
|
|
9882
|
-
/**
|
|
9883
|
-
* Returns whether an element will successfully validate based on forms validation rules and constraints.
|
|
9884
|
-
*
|
|
9885
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/willValidate)
|
|
9886
|
-
*/
|
|
9753
|
+
/** Returns whether an element will successfully validate based on forms validation rules and constraints. */
|
|
9887
9754
|
readonly willValidate: boolean;
|
|
9888
9755
|
/** Returns whether a form will validate when it is submitted, without having to submit it. */
|
|
9889
9756
|
checkValidity(): boolean;
|
|
9890
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/reportValidity) */
|
|
9891
9757
|
reportValidity(): boolean;
|
|
9892
9758
|
/**
|
|
9893
9759
|
* Sets a custom error message that is displayed when a form is submitted.
|
|
@@ -10005,11 +9871,7 @@ interface HTMLCollectionOf<T extends Element> extends HTMLCollectionBase {
|
|
|
10005
9871
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement)
|
|
10006
9872
|
*/
|
|
10007
9873
|
interface HTMLDListElement extends HTMLElement {
|
|
10008
|
-
/**
|
|
10009
|
-
* @deprecated
|
|
10010
|
-
*
|
|
10011
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement/compact)
|
|
10012
|
-
*/
|
|
9874
|
+
/** @deprecated */
|
|
10013
9875
|
compact: boolean;
|
|
10014
9876
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
10015
9877
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10047,11 +9909,7 @@ declare var HTMLDataElement: {
|
|
|
10047
9909
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement)
|
|
10048
9910
|
*/
|
|
10049
9911
|
interface HTMLDataListElement extends HTMLElement {
|
|
10050
|
-
/**
|
|
10051
|
-
* Returns an HTMLCollection of the option elements of the datalist element.
|
|
10052
|
-
*
|
|
10053
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement/options)
|
|
10054
|
-
*/
|
|
9912
|
+
/** Returns an HTMLCollection of the option elements of the datalist element. */
|
|
10055
9913
|
readonly options: HTMLCollectionOf<HTMLOptionElement>;
|
|
10056
9914
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
10057
9915
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10138,8 +9996,6 @@ interface HTMLDivElement extends HTMLElement {
|
|
|
10138
9996
|
/**
|
|
10139
9997
|
* Sets or retrieves how the object is aligned with adjacent text.
|
|
10140
9998
|
* @deprecated
|
|
10141
|
-
*
|
|
10142
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDivElement/align)
|
|
10143
9999
|
*/
|
|
10144
10000
|
align: string;
|
|
10145
10001
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10180,6 +10036,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10180
10036
|
accessKey: string;
|
|
10181
10037
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKeyLabel) */
|
|
10182
10038
|
readonly accessKeyLabel: string;
|
|
10039
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) */
|
|
10183
10040
|
autocapitalize: string;
|
|
10184
10041
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) */
|
|
10185
10042
|
dir: string;
|
|
@@ -10253,7 +10110,11 @@ interface HTMLEmbedElement extends HTMLElement {
|
|
|
10253
10110
|
* @deprecated
|
|
10254
10111
|
*/
|
|
10255
10112
|
name: string;
|
|
10256
|
-
/**
|
|
10113
|
+
/**
|
|
10114
|
+
* Sets or retrieves a URL to be loaded by the object.
|
|
10115
|
+
*
|
|
10116
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)
|
|
10117
|
+
*/
|
|
10257
10118
|
src: string;
|
|
10258
10119
|
type: string;
|
|
10259
10120
|
/**
|
|
@@ -10280,49 +10141,22 @@ declare var HTMLEmbedElement: {
|
|
|
10280
10141
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement)
|
|
10281
10142
|
*/
|
|
10282
10143
|
interface HTMLFieldSetElement extends HTMLElement {
|
|
10283
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/disabled) */
|
|
10284
10144
|
disabled: boolean;
|
|
10285
|
-
/**
|
|
10286
|
-
* Returns an HTMLCollection of the form controls in the element.
|
|
10287
|
-
*
|
|
10288
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/elements)
|
|
10289
|
-
*/
|
|
10145
|
+
/** Returns an HTMLCollection of the form controls in the element. */
|
|
10290
10146
|
readonly elements: HTMLCollection;
|
|
10291
|
-
/**
|
|
10292
|
-
* Retrieves a reference to the form that the object is embedded in.
|
|
10293
|
-
*
|
|
10294
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/form)
|
|
10295
|
-
*/
|
|
10147
|
+
/** Retrieves a reference to the form that the object is embedded in. */
|
|
10296
10148
|
readonly form: HTMLFormElement | null;
|
|
10297
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/name) */
|
|
10298
10149
|
name: string;
|
|
10299
|
-
/**
|
|
10300
|
-
* Returns the string "fieldset".
|
|
10301
|
-
*
|
|
10302
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/type)
|
|
10303
|
-
*/
|
|
10150
|
+
/** Returns the string "fieldset". */
|
|
10304
10151
|
readonly type: string;
|
|
10305
|
-
/**
|
|
10306
|
-
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
|
10307
|
-
*
|
|
10308
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validationMessage)
|
|
10309
|
-
*/
|
|
10152
|
+
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
|
10310
10153
|
readonly validationMessage: string;
|
|
10311
|
-
/**
|
|
10312
|
-
* Returns a ValidityState object that represents the validity states of an element.
|
|
10313
|
-
*
|
|
10314
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validity)
|
|
10315
|
-
*/
|
|
10154
|
+
/** Returns a ValidityState object that represents the validity states of an element. */
|
|
10316
10155
|
readonly validity: ValidityState;
|
|
10317
|
-
/**
|
|
10318
|
-
* Returns whether an element will successfully validate based on forms validation rules and constraints.
|
|
10319
|
-
*
|
|
10320
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/willValidate)
|
|
10321
|
-
*/
|
|
10156
|
+
/** Returns whether an element will successfully validate based on forms validation rules and constraints. */
|
|
10322
10157
|
readonly willValidate: boolean;
|
|
10323
10158
|
/** Returns whether a form will validate when it is submitted, without having to submit it. */
|
|
10324
10159
|
checkValidity(): boolean;
|
|
10325
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/reportValidity) */
|
|
10326
10160
|
reportValidity(): boolean;
|
|
10327
10161
|
/**
|
|
10328
10162
|
* Sets a custom error message that is displayed when a form is submitted.
|
|
@@ -10417,11 +10251,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
10417
10251
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
|
|
10418
10252
|
*/
|
|
10419
10253
|
action: string;
|
|
10420
|
-
/**
|
|
10421
|
-
* Specifies whether autocomplete is applied to an editable text field.
|
|
10422
|
-
*
|
|
10423
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
|
|
10424
|
-
*/
|
|
10254
|
+
/** Specifies whether autocomplete is applied to an editable text field. */
|
|
10425
10255
|
autocomplete: AutoFillBase;
|
|
10426
10256
|
/**
|
|
10427
10257
|
* Retrieves a collection, in source order, of all controls in a given form.
|
|
@@ -10459,11 +10289,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
10459
10289
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/name)
|
|
10460
10290
|
*/
|
|
10461
10291
|
name: string;
|
|
10462
|
-
/**
|
|
10463
|
-
* Designates a form that is not validated when submitted.
|
|
10464
|
-
*
|
|
10465
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/noValidate)
|
|
10466
|
-
*/
|
|
10292
|
+
/** Designates a form that is not validated when submitted. */
|
|
10467
10293
|
noValidate: boolean;
|
|
10468
10294
|
rel: string;
|
|
10469
10295
|
readonly relList: DOMTokenList;
|
|
@@ -10473,11 +10299,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
10473
10299
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/target)
|
|
10474
10300
|
*/
|
|
10475
10301
|
target: string;
|
|
10476
|
-
/**
|
|
10477
|
-
* Returns whether a form will validate when it is submitted, without having to submit it.
|
|
10478
|
-
*
|
|
10479
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/checkValidity)
|
|
10480
|
-
*/
|
|
10302
|
+
/** Returns whether a form will validate when it is submitted, without having to submit it. */
|
|
10481
10303
|
checkValidity(): boolean;
|
|
10482
10304
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reportValidity) */
|
|
10483
10305
|
reportValidity(): boolean;
|
|
@@ -10508,80 +10330,56 @@ declare var HTMLFormElement: {
|
|
|
10508
10330
|
new(): HTMLFormElement;
|
|
10509
10331
|
};
|
|
10510
10332
|
|
|
10511
|
-
/**
|
|
10512
|
-
* @deprecated
|
|
10513
|
-
*
|
|
10514
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement)
|
|
10515
|
-
*/
|
|
10333
|
+
/** @deprecated */
|
|
10516
10334
|
interface HTMLFrameElement extends HTMLElement {
|
|
10517
10335
|
/**
|
|
10518
10336
|
* Retrieves the document object of the page or frame.
|
|
10519
10337
|
* @deprecated
|
|
10520
|
-
*
|
|
10521
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentDocument)
|
|
10522
10338
|
*/
|
|
10523
10339
|
readonly contentDocument: Document | null;
|
|
10524
10340
|
/**
|
|
10525
10341
|
* Retrieves the object of the specified.
|
|
10526
10342
|
* @deprecated
|
|
10527
|
-
*
|
|
10528
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentWindow)
|
|
10529
10343
|
*/
|
|
10530
10344
|
readonly contentWindow: WindowProxy | null;
|
|
10531
10345
|
/**
|
|
10532
10346
|
* Sets or retrieves whether to display a border for the frame.
|
|
10533
10347
|
* @deprecated
|
|
10534
|
-
*
|
|
10535
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/frameBorder)
|
|
10536
10348
|
*/
|
|
10537
10349
|
frameBorder: string;
|
|
10538
10350
|
/**
|
|
10539
10351
|
* Sets or retrieves a URI to a long description of the object.
|
|
10540
10352
|
* @deprecated
|
|
10541
|
-
*
|
|
10542
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/longDesc)
|
|
10543
10353
|
*/
|
|
10544
10354
|
longDesc: string;
|
|
10545
10355
|
/**
|
|
10546
10356
|
* Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
|
|
10547
10357
|
* @deprecated
|
|
10548
|
-
*
|
|
10549
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginHeight)
|
|
10550
10358
|
*/
|
|
10551
10359
|
marginHeight: string;
|
|
10552
10360
|
/**
|
|
10553
10361
|
* Sets or retrieves the left and right margin widths before displaying the text in a frame.
|
|
10554
10362
|
* @deprecated
|
|
10555
|
-
*
|
|
10556
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginWidth)
|
|
10557
10363
|
*/
|
|
10558
10364
|
marginWidth: string;
|
|
10559
10365
|
/**
|
|
10560
10366
|
* Sets or retrieves the frame name.
|
|
10561
10367
|
* @deprecated
|
|
10562
|
-
*
|
|
10563
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/name)
|
|
10564
10368
|
*/
|
|
10565
10369
|
name: string;
|
|
10566
10370
|
/**
|
|
10567
10371
|
* Sets or retrieves whether the user can resize the frame.
|
|
10568
10372
|
* @deprecated
|
|
10569
|
-
*
|
|
10570
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/noResize)
|
|
10571
10373
|
*/
|
|
10572
10374
|
noResize: boolean;
|
|
10573
10375
|
/**
|
|
10574
10376
|
* Sets or retrieves whether the frame can be scrolled.
|
|
10575
10377
|
* @deprecated
|
|
10576
|
-
*
|
|
10577
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/scrolling)
|
|
10578
10378
|
*/
|
|
10579
10379
|
scrolling: string;
|
|
10580
10380
|
/**
|
|
10581
10381
|
* Sets or retrieves a URL to be loaded by the object.
|
|
10582
10382
|
* @deprecated
|
|
10583
|
-
*
|
|
10584
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/src)
|
|
10585
10383
|
*/
|
|
10586
10384
|
src: string;
|
|
10587
10385
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10690,8 +10488,6 @@ interface HTMLHeadingElement extends HTMLElement {
|
|
|
10690
10488
|
/**
|
|
10691
10489
|
* Sets or retrieves a value that indicates the table alignment.
|
|
10692
10490
|
* @deprecated
|
|
10693
|
-
*
|
|
10694
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHeadingElement/align)
|
|
10695
10491
|
*/
|
|
10696
10492
|
align: string;
|
|
10697
10493
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10828,10 +10624,9 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10828
10624
|
/**
|
|
10829
10625
|
* Sets or retrieves how the object is aligned with adjacent text.
|
|
10830
10626
|
* @deprecated
|
|
10831
|
-
*
|
|
10832
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/align)
|
|
10833
10627
|
*/
|
|
10834
10628
|
align: string;
|
|
10629
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allow) */
|
|
10835
10630
|
allow: string;
|
|
10836
10631
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
|
|
10837
10632
|
allowFullscreen: boolean;
|
|
@@ -10850,8 +10645,6 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10850
10645
|
/**
|
|
10851
10646
|
* Sets or retrieves whether to display a border for the frame.
|
|
10852
10647
|
* @deprecated
|
|
10853
|
-
*
|
|
10854
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/frameBorder)
|
|
10855
10648
|
*/
|
|
10856
10649
|
frameBorder: string;
|
|
10857
10650
|
/**
|
|
@@ -10865,22 +10658,16 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10865
10658
|
/**
|
|
10866
10659
|
* Sets or retrieves a URI to a long description of the object.
|
|
10867
10660
|
* @deprecated
|
|
10868
|
-
*
|
|
10869
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/longDesc)
|
|
10870
10661
|
*/
|
|
10871
10662
|
longDesc: string;
|
|
10872
10663
|
/**
|
|
10873
10664
|
* Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
|
|
10874
10665
|
* @deprecated
|
|
10875
|
-
*
|
|
10876
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginHeight)
|
|
10877
10666
|
*/
|
|
10878
10667
|
marginHeight: string;
|
|
10879
10668
|
/**
|
|
10880
10669
|
* Sets or retrieves the left and right margin widths before displaying the text in a frame.
|
|
10881
10670
|
* @deprecated
|
|
10882
|
-
*
|
|
10883
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginWidth)
|
|
10884
10671
|
*/
|
|
10885
10672
|
marginWidth: string;
|
|
10886
10673
|
/**
|
|
@@ -10891,12 +10678,11 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10891
10678
|
name: string;
|
|
10892
10679
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy) */
|
|
10893
10680
|
referrerPolicy: ReferrerPolicy;
|
|
10681
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/sandbox) */
|
|
10894
10682
|
readonly sandbox: DOMTokenList;
|
|
10895
10683
|
/**
|
|
10896
10684
|
* Sets or retrieves whether the frame can be scrolled.
|
|
10897
10685
|
* @deprecated
|
|
10898
|
-
*
|
|
10899
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/scrolling)
|
|
10900
10686
|
*/
|
|
10901
10687
|
scrolling: string;
|
|
10902
10688
|
/**
|
|
@@ -11001,11 +10787,7 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
11001
10787
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/longDesc)
|
|
11002
10788
|
*/
|
|
11003
10789
|
longDesc: string;
|
|
11004
|
-
/**
|
|
11005
|
-
* @deprecated
|
|
11006
|
-
*
|
|
11007
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/lowsrc)
|
|
11008
|
-
*/
|
|
10790
|
+
/** @deprecated */
|
|
11009
10791
|
lowsrc: string;
|
|
11010
10792
|
/**
|
|
11011
10793
|
* Sets or retrieves the name of the object.
|
|
@@ -11089,22 +10871,14 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11089
10871
|
align: string;
|
|
11090
10872
|
/** Sets or retrieves a text alternative to the graphic. */
|
|
11091
10873
|
alt: string;
|
|
11092
|
-
/**
|
|
11093
|
-
* Specifies whether autocomplete is applied to an editable text field.
|
|
11094
|
-
*
|
|
11095
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/autocomplete)
|
|
11096
|
-
*/
|
|
10874
|
+
/** Specifies whether autocomplete is applied to an editable text field. */
|
|
11097
10875
|
autocomplete: AutoFill;
|
|
11098
10876
|
capture: string;
|
|
11099
10877
|
/** Sets or retrieves the state of the check box or radio button. */
|
|
11100
10878
|
checked: boolean;
|
|
11101
10879
|
/** Sets or retrieves the state of the check box or radio button. */
|
|
11102
10880
|
defaultChecked: boolean;
|
|
11103
|
-
/**
|
|
11104
|
-
* Sets or retrieves the initial contents of the object.
|
|
11105
|
-
*
|
|
11106
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
|
|
11107
|
-
*/
|
|
10881
|
+
/** Sets or retrieves the initial contents of the object. */
|
|
11108
10882
|
defaultValue: string;
|
|
11109
10883
|
dirName: string;
|
|
11110
10884
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
|
@@ -11117,71 +10891,30 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11117
10891
|
files: FileList | null;
|
|
11118
10892
|
/** Retrieves a reference to the form that the object is embedded in. */
|
|
11119
10893
|
readonly form: HTMLFormElement | null;
|
|
11120
|
-
/**
|
|
11121
|
-
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
11122
|
-
*
|
|
11123
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
|
|
11124
|
-
*/
|
|
10894
|
+
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
|
|
11125
10895
|
formAction: string;
|
|
11126
|
-
/**
|
|
11127
|
-
* Used to override the encoding (formEnctype attribute) specified on the form element.
|
|
11128
|
-
*
|
|
11129
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
|
|
11130
|
-
*/
|
|
10896
|
+
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
11131
10897
|
formEnctype: string;
|
|
11132
|
-
/**
|
|
11133
|
-
* Overrides the submit method attribute previously specified on a form element.
|
|
11134
|
-
*
|
|
11135
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
|
|
11136
|
-
*/
|
|
10898
|
+
/** Overrides the submit method attribute previously specified on a form element. */
|
|
11137
10899
|
formMethod: string;
|
|
11138
|
-
/**
|
|
11139
|
-
* Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
|
|
11140
|
-
*
|
|
11141
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formNoValidate)
|
|
11142
|
-
*/
|
|
10900
|
+
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
11143
10901
|
formNoValidate: boolean;
|
|
11144
|
-
/**
|
|
11145
|
-
* Overrides the target attribute on a form element.
|
|
11146
|
-
*
|
|
11147
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formTarget)
|
|
11148
|
-
*/
|
|
10902
|
+
/** Overrides the target attribute on a form element. */
|
|
11149
10903
|
formTarget: string;
|
|
11150
|
-
/**
|
|
11151
|
-
* Sets or retrieves the height of the object.
|
|
11152
|
-
*
|
|
11153
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
|
|
11154
|
-
*/
|
|
10904
|
+
/** Sets or retrieves the height of the object. */
|
|
11155
10905
|
height: number;
|
|
11156
10906
|
/** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
|
|
11157
10907
|
indeterminate: boolean;
|
|
11158
10908
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
|
|
11159
10909
|
readonly labels: NodeListOf<HTMLLabelElement> | null;
|
|
11160
|
-
/**
|
|
11161
|
-
* Specifies the ID of a pre-defined datalist of options for an input element.
|
|
11162
|
-
*
|
|
11163
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
|
|
11164
|
-
*/
|
|
10910
|
+
/** Specifies the ID of a pre-defined datalist of options for an input element. */
|
|
11165
10911
|
readonly list: HTMLDataListElement | null;
|
|
11166
|
-
/**
|
|
11167
|
-
* Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
|
|
11168
|
-
*
|
|
11169
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
|
|
11170
|
-
*/
|
|
10912
|
+
/** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
|
|
11171
10913
|
max: string;
|
|
11172
|
-
/**
|
|
11173
|
-
* Sets or retrieves the maximum number of characters that the user can enter in a text control.
|
|
11174
|
-
*
|
|
11175
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
|
|
11176
|
-
*/
|
|
10914
|
+
/** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
|
|
11177
10915
|
maxLength: number;
|
|
11178
|
-
/**
|
|
11179
|
-
* Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
|
|
11180
|
-
*
|
|
11181
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
|
|
11182
|
-
*/
|
|
10916
|
+
/** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
|
|
11183
10917
|
min: string;
|
|
11184
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
|
|
11185
10918
|
minLength: number;
|
|
11186
10919
|
/**
|
|
11187
10920
|
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
|
|
@@ -11191,24 +10924,12 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11191
10924
|
multiple: boolean;
|
|
11192
10925
|
/** Sets or retrieves the name of the object. */
|
|
11193
10926
|
name: string;
|
|
11194
|
-
/**
|
|
11195
|
-
* Gets or sets a string containing a regular expression that the user's input must match.
|
|
11196
|
-
*
|
|
11197
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/pattern)
|
|
11198
|
-
*/
|
|
10927
|
+
/** Gets or sets a string containing a regular expression that the user's input must match. */
|
|
11199
10928
|
pattern: string;
|
|
11200
|
-
/**
|
|
11201
|
-
* Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.
|
|
11202
|
-
*
|
|
11203
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/placeholder)
|
|
11204
|
-
*/
|
|
10929
|
+
/** Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field. */
|
|
11205
10930
|
placeholder: string;
|
|
11206
10931
|
readOnly: boolean;
|
|
11207
|
-
/**
|
|
11208
|
-
* When present, marks an element that can't be submitted without a value.
|
|
11209
|
-
*
|
|
11210
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/required)
|
|
11211
|
-
*/
|
|
10932
|
+
/** When present, marks an element that can't be submitted without a value. */
|
|
11212
10933
|
required: boolean;
|
|
11213
10934
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
|
|
11214
10935
|
selectionDirection: "forward" | "backward" | "none" | null;
|
|
@@ -11240,23 +10961,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11240
10961
|
* @deprecated
|
|
11241
10962
|
*/
|
|
11242
10963
|
useMap: string;
|
|
11243
|
-
/**
|
|
11244
|
-
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
|
11245
|
-
*
|
|
11246
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validationMessage)
|
|
11247
|
-
*/
|
|
10964
|
+
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
|
11248
10965
|
readonly validationMessage: string;
|
|
11249
|
-
/**
|
|
11250
|
-
* Returns a ValidityState object that represents the validity states of an element.
|
|
11251
|
-
*
|
|
11252
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
|
|
11253
|
-
*/
|
|
10966
|
+
/** Returns a ValidityState object that represents the validity states of an element. */
|
|
11254
10967
|
readonly validity: ValidityState;
|
|
11255
|
-
/**
|
|
11256
|
-
* Returns the value of the data at the cursor's current position.
|
|
11257
|
-
*
|
|
11258
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
|
|
11259
|
-
*/
|
|
10968
|
+
/** Returns the value of the data at the cursor's current position. */
|
|
11260
10969
|
value: string;
|
|
11261
10970
|
/** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
|
|
11262
10971
|
valueAsDate: Date | null;
|
|
@@ -11266,17 +10975,9 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11266
10975
|
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
|
|
11267
10976
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory) */
|
|
11268
10977
|
webkitdirectory: boolean;
|
|
11269
|
-
/**
|
|
11270
|
-
* Sets or retrieves the width of the object.
|
|
11271
|
-
*
|
|
11272
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/width)
|
|
11273
|
-
*/
|
|
10978
|
+
/** Sets or retrieves the width of the object. */
|
|
11274
10979
|
width: number;
|
|
11275
|
-
/**
|
|
11276
|
-
* Returns whether an element will successfully validate based on forms validation rules and constraints.
|
|
11277
|
-
*
|
|
11278
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/willValidate)
|
|
11279
|
-
*/
|
|
10980
|
+
/** Returns whether an element will successfully validate based on forms validation rules and constraints. */
|
|
11280
10981
|
readonly willValidate: boolean;
|
|
11281
10982
|
/**
|
|
11282
10983
|
* Returns whether a form will validate when it is submitted, without having to submit it.
|
|
@@ -11430,14 +11131,11 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
11430
11131
|
charset: string;
|
|
11431
11132
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/crossOrigin) */
|
|
11432
11133
|
crossOrigin: string | null;
|
|
11134
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/disabled) */
|
|
11433
11135
|
disabled: boolean;
|
|
11434
11136
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority) */
|
|
11435
11137
|
fetchPriority: string;
|
|
11436
|
-
/**
|
|
11437
|
-
* Sets or retrieves a destination URL or an anchor point.
|
|
11438
|
-
*
|
|
11439
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
|
|
11440
|
-
*/
|
|
11138
|
+
/** Sets or retrieves a destination URL or an anchor point. */
|
|
11441
11139
|
href: string;
|
|
11442
11140
|
/**
|
|
11443
11141
|
* Sets or retrieves the language code of the object.
|
|
@@ -11447,6 +11145,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
11447
11145
|
hreflang: string;
|
|
11448
11146
|
imageSizes: string;
|
|
11449
11147
|
imageSrcset: string;
|
|
11148
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
|
|
11450
11149
|
integrity: string;
|
|
11451
11150
|
/** Sets or retrieves the media type. */
|
|
11452
11151
|
media: string;
|
|
@@ -11465,14 +11164,17 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
11465
11164
|
* @deprecated
|
|
11466
11165
|
*/
|
|
11467
11166
|
rev: string;
|
|
11468
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
|
|
11469
11167
|
readonly sizes: DOMTokenList;
|
|
11470
11168
|
/**
|
|
11471
11169
|
* Sets or retrieves the window or frame at which to target content.
|
|
11472
11170
|
* @deprecated
|
|
11473
11171
|
*/
|
|
11474
11172
|
target: string;
|
|
11475
|
-
/**
|
|
11173
|
+
/**
|
|
11174
|
+
* Sets or retrieves the MIME type of the object.
|
|
11175
|
+
*
|
|
11176
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/type)
|
|
11177
|
+
*/
|
|
11476
11178
|
type: string;
|
|
11477
11179
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
11478
11180
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -11491,11 +11193,7 @@ declare var HTMLLinkElement: {
|
|
|
11491
11193
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement)
|
|
11492
11194
|
*/
|
|
11493
11195
|
interface HTMLMapElement extends HTMLElement {
|
|
11494
|
-
/**
|
|
11495
|
-
* Retrieves a collection of the area objects defined for the given map object.
|
|
11496
|
-
*
|
|
11497
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement/areas)
|
|
11498
|
-
*/
|
|
11196
|
+
/** Retrieves a collection of the area objects defined for the given map object. */
|
|
11499
11197
|
readonly areas: HTMLCollection;
|
|
11500
11198
|
/**
|
|
11501
11199
|
* Sets or retrieves the name of the object.
|
|
@@ -11656,7 +11354,6 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11656
11354
|
readonly networkState: number;
|
|
11657
11355
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/encrypted_event) */
|
|
11658
11356
|
onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null;
|
|
11659
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waitingforkey_event) */
|
|
11660
11357
|
onwaitingforkey: ((this: HTMLMediaElement, ev: Event) => any) | null;
|
|
11661
11358
|
/**
|
|
11662
11359
|
* Gets a flag that specifies whether playback is paused.
|
|
@@ -11670,11 +11367,7 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11670
11367
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playbackRate)
|
|
11671
11368
|
*/
|
|
11672
11369
|
playbackRate: number;
|
|
11673
|
-
/**
|
|
11674
|
-
* Gets TimeRanges for the current media resource that has been played.
|
|
11675
|
-
*
|
|
11676
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/played)
|
|
11677
|
-
*/
|
|
11370
|
+
/** Gets TimeRanges for the current media resource that has been played. */
|
|
11678
11371
|
readonly played: TimeRanges;
|
|
11679
11372
|
/**
|
|
11680
11373
|
* Gets or sets a value indicating what data should be preloaded, if any.
|
|
@@ -11694,11 +11387,7 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11694
11387
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seekable)
|
|
11695
11388
|
*/
|
|
11696
11389
|
readonly seekable: TimeRanges;
|
|
11697
|
-
/**
|
|
11698
|
-
* Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource.
|
|
11699
|
-
*
|
|
11700
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking)
|
|
11701
|
-
*/
|
|
11390
|
+
/** Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource. */
|
|
11702
11391
|
readonly seeking: boolean;
|
|
11703
11392
|
/**
|
|
11704
11393
|
* Available only in secure contexts.
|
|
@@ -11722,7 +11411,6 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11722
11411
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volume)
|
|
11723
11412
|
*/
|
|
11724
11413
|
volume: number;
|
|
11725
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/addTextTrack) */
|
|
11726
11414
|
addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack;
|
|
11727
11415
|
/**
|
|
11728
11416
|
* Returns a string that specifies whether the client can play a given media resource type.
|
|
@@ -11793,11 +11481,7 @@ declare var HTMLMediaElement: {
|
|
|
11793
11481
|
|
|
11794
11482
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement) */
|
|
11795
11483
|
interface HTMLMenuElement extends HTMLElement {
|
|
11796
|
-
/**
|
|
11797
|
-
* @deprecated
|
|
11798
|
-
*
|
|
11799
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement/compact)
|
|
11800
|
-
*/
|
|
11484
|
+
/** @deprecated */
|
|
11801
11485
|
compact: boolean;
|
|
11802
11486
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
11803
11487
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -11860,19 +11544,13 @@ declare var HTMLMetaElement: {
|
|
|
11860
11544
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement)
|
|
11861
11545
|
*/
|
|
11862
11546
|
interface HTMLMeterElement extends HTMLElement {
|
|
11863
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/high) */
|
|
11864
11547
|
high: number;
|
|
11865
11548
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels) */
|
|
11866
11549
|
readonly labels: NodeListOf<HTMLLabelElement>;
|
|
11867
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/low) */
|
|
11868
11550
|
low: number;
|
|
11869
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/max) */
|
|
11870
11551
|
max: number;
|
|
11871
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/min) */
|
|
11872
11552
|
min: number;
|
|
11873
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/optimum) */
|
|
11874
11553
|
optimum: number;
|
|
11875
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/value) */
|
|
11876
11554
|
value: number;
|
|
11877
11555
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
11878
11556
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -11891,17 +11569,9 @@ declare var HTMLMeterElement: {
|
|
|
11891
11569
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
|
|
11892
11570
|
*/
|
|
11893
11571
|
interface HTMLModElement extends HTMLElement {
|
|
11894
|
-
/**
|
|
11895
|
-
* Sets or retrieves reference information about the object.
|
|
11896
|
-
*
|
|
11897
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
|
|
11898
|
-
*/
|
|
11572
|
+
/** Sets or retrieves reference information about the object. */
|
|
11899
11573
|
cite: string;
|
|
11900
|
-
/**
|
|
11901
|
-
* Sets or retrieves the date and time of a modification to the object.
|
|
11902
|
-
*
|
|
11903
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)
|
|
11904
|
-
*/
|
|
11574
|
+
/** Sets or retrieves the date and time of a modification to the object. */
|
|
11905
11575
|
dateTime: string;
|
|
11906
11576
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
11907
11577
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -11920,11 +11590,7 @@ declare var HTMLModElement: {
|
|
|
11920
11590
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement)
|
|
11921
11591
|
*/
|
|
11922
11592
|
interface HTMLOListElement extends HTMLElement {
|
|
11923
|
-
/**
|
|
11924
|
-
* @deprecated
|
|
11925
|
-
*
|
|
11926
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/compact)
|
|
11927
|
-
*/
|
|
11593
|
+
/** @deprecated */
|
|
11928
11594
|
compact: boolean;
|
|
11929
11595
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/reversed) */
|
|
11930
11596
|
reversed: boolean;
|
|
@@ -11953,44 +11619,28 @@ declare var HTMLOListElement: {
|
|
|
11953
11619
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement)
|
|
11954
11620
|
*/
|
|
11955
11621
|
interface HTMLObjectElement extends HTMLElement {
|
|
11956
|
-
/**
|
|
11957
|
-
* @deprecated
|
|
11958
|
-
*
|
|
11959
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/align)
|
|
11960
|
-
*/
|
|
11622
|
+
/** @deprecated */
|
|
11961
11623
|
align: string;
|
|
11962
11624
|
/**
|
|
11963
11625
|
* Sets or retrieves a character string that can be used to implement your own archive functionality for the object.
|
|
11964
11626
|
* @deprecated
|
|
11965
|
-
*
|
|
11966
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/archive)
|
|
11967
11627
|
*/
|
|
11968
11628
|
archive: string;
|
|
11969
|
-
/**
|
|
11970
|
-
* @deprecated
|
|
11971
|
-
*
|
|
11972
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/border)
|
|
11973
|
-
*/
|
|
11629
|
+
/** @deprecated */
|
|
11974
11630
|
border: string;
|
|
11975
11631
|
/**
|
|
11976
11632
|
* Sets or retrieves the URL of the file containing the compiled Java class.
|
|
11977
11633
|
* @deprecated
|
|
11978
|
-
*
|
|
11979
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/code)
|
|
11980
11634
|
*/
|
|
11981
11635
|
code: string;
|
|
11982
11636
|
/**
|
|
11983
11637
|
* Sets or retrieves the URL of the component.
|
|
11984
11638
|
* @deprecated
|
|
11985
|
-
*
|
|
11986
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeBase)
|
|
11987
11639
|
*/
|
|
11988
11640
|
codeBase: string;
|
|
11989
11641
|
/**
|
|
11990
11642
|
* Sets or retrieves the Internet media type for the code associated with the object.
|
|
11991
11643
|
* @deprecated
|
|
11992
|
-
*
|
|
11993
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeType)
|
|
11994
11644
|
*/
|
|
11995
11645
|
codeType: string;
|
|
11996
11646
|
/**
|
|
@@ -12007,11 +11657,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12007
11657
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
|
|
12008
11658
|
*/
|
|
12009
11659
|
data: string;
|
|
12010
|
-
/**
|
|
12011
|
-
* @deprecated
|
|
12012
|
-
*
|
|
12013
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/declare)
|
|
12014
|
-
*/
|
|
11660
|
+
/** @deprecated */
|
|
12015
11661
|
declare: boolean;
|
|
12016
11662
|
/**
|
|
12017
11663
|
* Retrieves a reference to the form that the object is embedded in.
|
|
@@ -12025,11 +11671,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12025
11671
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
|
|
12026
11672
|
*/
|
|
12027
11673
|
height: string;
|
|
12028
|
-
/**
|
|
12029
|
-
* @deprecated
|
|
12030
|
-
*
|
|
12031
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/hspace)
|
|
12032
|
-
*/
|
|
11674
|
+
/** @deprecated */
|
|
12033
11675
|
hspace: number;
|
|
12034
11676
|
/**
|
|
12035
11677
|
* Sets or retrieves the name of the object.
|
|
@@ -12040,8 +11682,6 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12040
11682
|
/**
|
|
12041
11683
|
* Sets or retrieves a message to be displayed while an object is loading.
|
|
12042
11684
|
* @deprecated
|
|
12043
|
-
*
|
|
12044
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/standby)
|
|
12045
11685
|
*/
|
|
12046
11686
|
standby: string;
|
|
12047
11687
|
/**
|
|
@@ -12069,11 +11709,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12069
11709
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/validity)
|
|
12070
11710
|
*/
|
|
12071
11711
|
readonly validity: ValidityState;
|
|
12072
|
-
/**
|
|
12073
|
-
* @deprecated
|
|
12074
|
-
*
|
|
12075
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/vspace)
|
|
12076
|
-
*/
|
|
11712
|
+
/** @deprecated */
|
|
12077
11713
|
vspace: number;
|
|
12078
11714
|
/**
|
|
12079
11715
|
* Sets or retrieves the width of the object.
|
|
@@ -12093,9 +11729,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12093
11729
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
|
|
12094
11730
|
*/
|
|
12095
11731
|
checkValidity(): boolean;
|
|
12096
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
|
|
12097
11732
|
getSVGDocument(): Document | null;
|
|
12098
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
|
|
12099
11733
|
reportValidity(): boolean;
|
|
12100
11734
|
/**
|
|
12101
11735
|
* Sets a custom error message that is displayed when a form is submitted.
|
|
@@ -12121,13 +11755,8 @@ declare var HTMLObjectElement: {
|
|
|
12121
11755
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement)
|
|
12122
11756
|
*/
|
|
12123
11757
|
interface HTMLOptGroupElement extends HTMLElement {
|
|
12124
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/disabled) */
|
|
12125
11758
|
disabled: boolean;
|
|
12126
|
-
/**
|
|
12127
|
-
* Sets or retrieves a value that you can use to implement your own label functionality for the object.
|
|
12128
|
-
*
|
|
12129
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/label)
|
|
12130
|
-
*/
|
|
11759
|
+
/** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
|
|
12131
11760
|
label: string;
|
|
12132
11761
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12133
11762
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12146,49 +11775,20 @@ declare var HTMLOptGroupElement: {
|
|
|
12146
11775
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement)
|
|
12147
11776
|
*/
|
|
12148
11777
|
interface HTMLOptionElement extends HTMLElement {
|
|
12149
|
-
/**
|
|
12150
|
-
* Sets or retrieves the status of an option.
|
|
12151
|
-
*
|
|
12152
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/defaultSelected)
|
|
12153
|
-
*/
|
|
11778
|
+
/** Sets or retrieves the status of an option. */
|
|
12154
11779
|
defaultSelected: boolean;
|
|
12155
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/disabled) */
|
|
12156
11780
|
disabled: boolean;
|
|
12157
|
-
/**
|
|
12158
|
-
* Retrieves a reference to the form that the object is embedded in.
|
|
12159
|
-
*
|
|
12160
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/form)
|
|
12161
|
-
*/
|
|
11781
|
+
/** Retrieves a reference to the form that the object is embedded in. */
|
|
12162
11782
|
readonly form: HTMLFormElement | null;
|
|
12163
|
-
/**
|
|
12164
|
-
* Sets or retrieves the ordinal position of an option in a list box.
|
|
12165
|
-
*
|
|
12166
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/index)
|
|
12167
|
-
*/
|
|
11783
|
+
/** Sets or retrieves the ordinal position of an option in a list box. */
|
|
12168
11784
|
readonly index: number;
|
|
12169
|
-
/**
|
|
12170
|
-
* Sets or retrieves a value that you can use to implement your own label functionality for the object.
|
|
12171
|
-
*
|
|
12172
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/label)
|
|
12173
|
-
*/
|
|
11785
|
+
/** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
|
|
12174
11786
|
label: string;
|
|
12175
|
-
/**
|
|
12176
|
-
* Sets or retrieves whether the option in the list box is the default item.
|
|
12177
|
-
*
|
|
12178
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/selected)
|
|
12179
|
-
*/
|
|
11787
|
+
/** Sets or retrieves whether the option in the list box is the default item. */
|
|
12180
11788
|
selected: boolean;
|
|
12181
|
-
/**
|
|
12182
|
-
* Sets or retrieves the text string specified by the option tag.
|
|
12183
|
-
*
|
|
12184
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/text)
|
|
12185
|
-
*/
|
|
11789
|
+
/** Sets or retrieves the text string specified by the option tag. */
|
|
12186
11790
|
text: string;
|
|
12187
|
-
/**
|
|
12188
|
-
* Sets or retrieves the value which is returned to the server when the form control is submitted.
|
|
12189
|
-
*
|
|
12190
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/value)
|
|
12191
|
-
*/
|
|
11791
|
+
/** Sets or retrieves the value which is returned to the server when the form control is submitted. */
|
|
12192
11792
|
value: string;
|
|
12193
11793
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12194
11794
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12213,16 +11813,12 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
|
|
|
12213
11813
|
* When set to a smaller number, truncates the number of option elements in the corresponding container.
|
|
12214
11814
|
*
|
|
12215
11815
|
* When set to a greater number, adds new blank option elements to that container.
|
|
12216
|
-
*
|
|
12217
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/length)
|
|
12218
11816
|
*/
|
|
12219
11817
|
length: number;
|
|
12220
11818
|
/**
|
|
12221
11819
|
* Returns the index of the first selected item, if any, or −1 if there is no selected item.
|
|
12222
11820
|
*
|
|
12223
11821
|
* Can be set, to change the selection.
|
|
12224
|
-
*
|
|
12225
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/selectedIndex)
|
|
12226
11822
|
*/
|
|
12227
11823
|
selectedIndex: number;
|
|
12228
11824
|
/**
|
|
@@ -12233,15 +11829,9 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
|
|
|
12233
11829
|
* If before is omitted, null, or a number out of range, then element will be added at the end of the list.
|
|
12234
11830
|
*
|
|
12235
11831
|
* This method will throw a "HierarchyRequestError" DOMException if element is an ancestor of the element into which it is to be inserted.
|
|
12236
|
-
*
|
|
12237
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/add)
|
|
12238
11832
|
*/
|
|
12239
11833
|
add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;
|
|
12240
|
-
/**
|
|
12241
|
-
* Removes the item with index index from the collection.
|
|
12242
|
-
*
|
|
12243
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/remove)
|
|
12244
|
-
*/
|
|
11834
|
+
/** Removes the item with index index from the collection. */
|
|
12245
11835
|
remove(index: number): void;
|
|
12246
11836
|
}
|
|
12247
11837
|
|
|
@@ -12271,41 +11861,25 @@ interface HTMLOrSVGElement {
|
|
|
12271
11861
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement)
|
|
12272
11862
|
*/
|
|
12273
11863
|
interface HTMLOutputElement extends HTMLElement {
|
|
12274
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/defaultValue) */
|
|
12275
11864
|
defaultValue: string;
|
|
12276
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/form) */
|
|
12277
11865
|
readonly form: HTMLFormElement | null;
|
|
12278
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor) */
|
|
12279
11866
|
readonly htmlFor: DOMTokenList;
|
|
12280
11867
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels) */
|
|
12281
11868
|
readonly labels: NodeListOf<HTMLLabelElement>;
|
|
12282
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/name) */
|
|
12283
11869
|
name: string;
|
|
12284
|
-
/**
|
|
12285
|
-
* Returns the string "output".
|
|
12286
|
-
*
|
|
12287
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/type)
|
|
12288
|
-
*/
|
|
11870
|
+
/** Returns the string "output". */
|
|
12289
11871
|
readonly type: string;
|
|
12290
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validationMessage) */
|
|
12291
11872
|
readonly validationMessage: string;
|
|
12292
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validity) */
|
|
12293
11873
|
readonly validity: ValidityState;
|
|
12294
11874
|
/**
|
|
12295
11875
|
* Returns the element's current value.
|
|
12296
11876
|
*
|
|
12297
11877
|
* Can be set, to change the value.
|
|
12298
|
-
*
|
|
12299
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/value)
|
|
12300
11878
|
*/
|
|
12301
11879
|
value: string;
|
|
12302
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/willValidate) */
|
|
12303
11880
|
readonly willValidate: boolean;
|
|
12304
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/checkValidity) */
|
|
12305
11881
|
checkValidity(): boolean;
|
|
12306
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/reportValidity) */
|
|
12307
11882
|
reportValidity(): boolean;
|
|
12308
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/setCustomValidity) */
|
|
12309
11883
|
setCustomValidity(error: string): void;
|
|
12310
11884
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12311
11885
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12327,8 +11901,6 @@ interface HTMLParagraphElement extends HTMLElement {
|
|
|
12327
11901
|
/**
|
|
12328
11902
|
* Sets or retrieves how the object is aligned with adjacent text.
|
|
12329
11903
|
* @deprecated
|
|
12330
|
-
*
|
|
12331
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParagraphElement/align)
|
|
12332
11904
|
*/
|
|
12333
11905
|
align: string;
|
|
12334
11906
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12352,29 +11924,21 @@ interface HTMLParamElement extends HTMLElement {
|
|
|
12352
11924
|
/**
|
|
12353
11925
|
* Sets or retrieves the name of an input parameter for an element.
|
|
12354
11926
|
* @deprecated
|
|
12355
|
-
*
|
|
12356
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/name)
|
|
12357
11927
|
*/
|
|
12358
11928
|
name: string;
|
|
12359
11929
|
/**
|
|
12360
11930
|
* Sets or retrieves the content type of the resource designated by the value attribute.
|
|
12361
11931
|
* @deprecated
|
|
12362
|
-
*
|
|
12363
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/type)
|
|
12364
11932
|
*/
|
|
12365
11933
|
type: string;
|
|
12366
11934
|
/**
|
|
12367
11935
|
* Sets or retrieves the value of an input parameter for an element.
|
|
12368
11936
|
* @deprecated
|
|
12369
|
-
*
|
|
12370
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/value)
|
|
12371
11937
|
*/
|
|
12372
11938
|
value: string;
|
|
12373
11939
|
/**
|
|
12374
11940
|
* Sets or retrieves the data type of the value attribute.
|
|
12375
11941
|
* @deprecated
|
|
12376
|
-
*
|
|
12377
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/valueType)
|
|
12378
11942
|
*/
|
|
12379
11943
|
valueType: string;
|
|
12380
11944
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12415,8 +11979,6 @@ interface HTMLPreElement extends HTMLElement {
|
|
|
12415
11979
|
/**
|
|
12416
11980
|
* Sets or gets a value that you can use to implement your own width functionality for the object.
|
|
12417
11981
|
* @deprecated
|
|
12418
|
-
*
|
|
12419
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLPreElement/width)
|
|
12420
11982
|
*/
|
|
12421
11983
|
width: number;
|
|
12422
11984
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12473,11 +12035,7 @@ declare var HTMLProgressElement: {
|
|
|
12473
12035
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
|
|
12474
12036
|
*/
|
|
12475
12037
|
interface HTMLQuoteElement extends HTMLElement {
|
|
12476
|
-
/**
|
|
12477
|
-
* Sets or retrieves reference information about the object.
|
|
12478
|
-
*
|
|
12479
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
|
|
12480
|
-
*/
|
|
12038
|
+
/** Sets or retrieves reference information about the object. */
|
|
12481
12039
|
cite: string;
|
|
12482
12040
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12483
12041
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12496,6 +12054,7 @@ declare var HTMLQuoteElement: {
|
|
|
12496
12054
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement)
|
|
12497
12055
|
*/
|
|
12498
12056
|
interface HTMLScriptElement extends HTMLElement {
|
|
12057
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/async) */
|
|
12499
12058
|
async: boolean;
|
|
12500
12059
|
/**
|
|
12501
12060
|
* Sets or retrieves the character set used to encode the object.
|
|
@@ -12504,28 +12063,47 @@ interface HTMLScriptElement extends HTMLElement {
|
|
|
12504
12063
|
charset: string;
|
|
12505
12064
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/crossOrigin) */
|
|
12506
12065
|
crossOrigin: string | null;
|
|
12507
|
-
/**
|
|
12066
|
+
/**
|
|
12067
|
+
* Sets or retrieves the status of the script.
|
|
12068
|
+
*
|
|
12069
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/defer)
|
|
12070
|
+
*/
|
|
12508
12071
|
defer: boolean;
|
|
12509
12072
|
/**
|
|
12510
12073
|
* Sets or retrieves the event for which the script is written.
|
|
12511
12074
|
* @deprecated
|
|
12512
12075
|
*/
|
|
12513
12076
|
event: string;
|
|
12077
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/fetchPriority) */
|
|
12514
12078
|
fetchPriority: string;
|
|
12515
12079
|
/**
|
|
12516
12080
|
* Sets or retrieves the object that is bound to the event script.
|
|
12517
12081
|
* @deprecated
|
|
12518
12082
|
*/
|
|
12519
12083
|
htmlFor: string;
|
|
12084
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/integrity) */
|
|
12520
12085
|
integrity: string;
|
|
12086
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/noModule) */
|
|
12521
12087
|
noModule: boolean;
|
|
12522
12088
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy) */
|
|
12523
12089
|
referrerPolicy: string;
|
|
12524
|
-
/**
|
|
12090
|
+
/**
|
|
12091
|
+
* Retrieves the URL to an external file that contains the source code or data.
|
|
12092
|
+
*
|
|
12093
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/src)
|
|
12094
|
+
*/
|
|
12525
12095
|
src: string;
|
|
12526
|
-
/**
|
|
12096
|
+
/**
|
|
12097
|
+
* Retrieves or sets the text of the object as a string.
|
|
12098
|
+
*
|
|
12099
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
|
|
12100
|
+
*/
|
|
12527
12101
|
text: string;
|
|
12528
|
-
/**
|
|
12102
|
+
/**
|
|
12103
|
+
* Sets or retrieves the MIME type for the associated scripting engine.
|
|
12104
|
+
*
|
|
12105
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/type)
|
|
12106
|
+
*/
|
|
12529
12107
|
type: string;
|
|
12530
12108
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12531
12109
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12546,7 +12124,6 @@ declare var HTMLScriptElement: {
|
|
|
12546
12124
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
|
|
12547
12125
|
*/
|
|
12548
12126
|
interface HTMLSelectElement extends HTMLElement {
|
|
12549
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
|
|
12550
12127
|
autocomplete: AutoFill;
|
|
12551
12128
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
|
|
12552
12129
|
disabled: boolean;
|
|
@@ -12558,23 +12135,11 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12558
12135
|
readonly form: HTMLFormElement | null;
|
|
12559
12136
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels) */
|
|
12560
12137
|
readonly labels: NodeListOf<HTMLLabelElement>;
|
|
12561
|
-
/**
|
|
12562
|
-
* Sets or retrieves the number of objects in a collection.
|
|
12563
|
-
*
|
|
12564
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/length)
|
|
12565
|
-
*/
|
|
12138
|
+
/** Sets or retrieves the number of objects in a collection. */
|
|
12566
12139
|
length: number;
|
|
12567
|
-
/**
|
|
12568
|
-
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
|
|
12569
|
-
*
|
|
12570
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/multiple)
|
|
12571
|
-
*/
|
|
12140
|
+
/** Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list. */
|
|
12572
12141
|
multiple: boolean;
|
|
12573
|
-
/**
|
|
12574
|
-
* Sets or retrieves the name of the object.
|
|
12575
|
-
*
|
|
12576
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/name)
|
|
12577
|
-
*/
|
|
12142
|
+
/** Sets or retrieves the name of the object. */
|
|
12578
12143
|
name: string;
|
|
12579
12144
|
/**
|
|
12580
12145
|
* Returns an HTMLOptionsCollection of the list of options.
|
|
@@ -12582,11 +12147,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12582
12147
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/options)
|
|
12583
12148
|
*/
|
|
12584
12149
|
readonly options: HTMLOptionsCollection;
|
|
12585
|
-
/**
|
|
12586
|
-
* When present, marks an element that can't be submitted without a value.
|
|
12587
|
-
*
|
|
12588
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/required)
|
|
12589
|
-
*/
|
|
12150
|
+
/** When present, marks an element that can't be submitted without a value. */
|
|
12590
12151
|
required: boolean;
|
|
12591
12152
|
/**
|
|
12592
12153
|
* Sets or retrieves the index of the selected option in a select object.
|
|
@@ -12596,11 +12157,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12596
12157
|
selectedIndex: number;
|
|
12597
12158
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions) */
|
|
12598
12159
|
readonly selectedOptions: HTMLCollectionOf<HTMLOptionElement>;
|
|
12599
|
-
/**
|
|
12600
|
-
* Sets or retrieves the number of rows in the list box.
|
|
12601
|
-
*
|
|
12602
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/size)
|
|
12603
|
-
*/
|
|
12160
|
+
/** Sets or retrieves the number of rows in the list box. */
|
|
12604
12161
|
size: number;
|
|
12605
12162
|
/**
|
|
12606
12163
|
* Retrieves the type of select control based on the value of the MULTIPLE attribute.
|
|
@@ -12608,17 +12165,9 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12608
12165
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
|
|
12609
12166
|
*/
|
|
12610
12167
|
readonly type: "select-one" | "select-multiple";
|
|
12611
|
-
/**
|
|
12612
|
-
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
|
12613
|
-
*
|
|
12614
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validationMessage)
|
|
12615
|
-
*/
|
|
12168
|
+
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
|
12616
12169
|
readonly validationMessage: string;
|
|
12617
|
-
/**
|
|
12618
|
-
* Returns a ValidityState object that represents the validity states of an element.
|
|
12619
|
-
*
|
|
12620
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validity)
|
|
12621
|
-
*/
|
|
12170
|
+
/** Returns a ValidityState object that represents the validity states of an element. */
|
|
12622
12171
|
readonly validity: ValidityState;
|
|
12623
12172
|
/**
|
|
12624
12173
|
* Sets or retrieves the value which is returned to the server when the form control is submitted.
|
|
@@ -12626,11 +12175,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12626
12175
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/value)
|
|
12627
12176
|
*/
|
|
12628
12177
|
value: string;
|
|
12629
|
-
/**
|
|
12630
|
-
* Returns whether an element will successfully validate based on forms validation rules and constraints.
|
|
12631
|
-
*
|
|
12632
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/willValidate)
|
|
12633
|
-
*/
|
|
12178
|
+
/** Returns whether an element will successfully validate based on forms validation rules and constraints. */
|
|
12634
12179
|
readonly willValidate: boolean;
|
|
12635
12180
|
/**
|
|
12636
12181
|
* Adds an element to the areas, controlRange, or options collection.
|
|
@@ -12669,7 +12214,6 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12669
12214
|
*/
|
|
12670
12215
|
remove(): void;
|
|
12671
12216
|
remove(index: number): void;
|
|
12672
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/reportValidity) */
|
|
12673
12217
|
reportValidity(): boolean;
|
|
12674
12218
|
/**
|
|
12675
12219
|
* Sets a custom error message that is displayed when a form is submitted.
|
|
@@ -12721,27 +12265,13 @@ declare var HTMLSlotElement: {
|
|
|
12721
12265
|
interface HTMLSourceElement extends HTMLElement {
|
|
12722
12266
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
|
|
12723
12267
|
height: number;
|
|
12724
|
-
/**
|
|
12725
|
-
* Gets or sets the intended media type of the media source.
|
|
12726
|
-
*
|
|
12727
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
|
|
12728
|
-
*/
|
|
12268
|
+
/** Gets or sets the intended media type of the media source. */
|
|
12729
12269
|
media: string;
|
|
12730
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
|
|
12731
12270
|
sizes: string;
|
|
12732
|
-
/**
|
|
12733
|
-
* The address or URL of the a media resource that is to be considered.
|
|
12734
|
-
*
|
|
12735
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
|
|
12736
|
-
*/
|
|
12271
|
+
/** The address or URL of the a media resource that is to be considered. */
|
|
12737
12272
|
src: string;
|
|
12738
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
|
|
12739
12273
|
srcset: string;
|
|
12740
|
-
/**
|
|
12741
|
-
* Gets or sets the MIME type of a media resource.
|
|
12742
|
-
*
|
|
12743
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
|
|
12744
|
-
*/
|
|
12274
|
+
/** Gets or sets the MIME type of a media resource. */
|
|
12745
12275
|
type: string;
|
|
12746
12276
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
|
|
12747
12277
|
width: number;
|
|
@@ -12818,8 +12348,6 @@ interface HTMLTableCaptionElement extends HTMLElement {
|
|
|
12818
12348
|
/**
|
|
12819
12349
|
* Sets or retrieves the alignment of the caption or legend.
|
|
12820
12350
|
* @deprecated
|
|
12821
|
-
*
|
|
12822
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCaptionElement/align)
|
|
12823
12351
|
*/
|
|
12824
12352
|
align: string;
|
|
12825
12353
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12855,8 +12383,6 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
12855
12383
|
/**
|
|
12856
12384
|
* Sets or retrieves a comma-delimited list of conceptual categories associated with the object.
|
|
12857
12385
|
* @deprecated
|
|
12858
|
-
*
|
|
12859
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/axis)
|
|
12860
12386
|
*/
|
|
12861
12387
|
axis: string;
|
|
12862
12388
|
/**
|
|
@@ -12898,8 +12424,6 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
12898
12424
|
/**
|
|
12899
12425
|
* Sets or retrieves the height of the object.
|
|
12900
12426
|
* @deprecated
|
|
12901
|
-
*
|
|
12902
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/height)
|
|
12903
12427
|
*/
|
|
12904
12428
|
height: string;
|
|
12905
12429
|
/**
|
|
@@ -12930,8 +12454,6 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
12930
12454
|
/**
|
|
12931
12455
|
* Sets or retrieves the width of the object.
|
|
12932
12456
|
* @deprecated
|
|
12933
|
-
*
|
|
12934
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/width)
|
|
12935
12457
|
*/
|
|
12936
12458
|
width: string;
|
|
12937
12459
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12985,8 +12507,6 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
12985
12507
|
/**
|
|
12986
12508
|
* Sets or retrieves the width of the object.
|
|
12987
12509
|
* @deprecated
|
|
12988
|
-
*
|
|
12989
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/width)
|
|
12990
12510
|
*/
|
|
12991
12511
|
width: string;
|
|
12992
12512
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -13190,8 +12710,6 @@ interface HTMLTableRowElement extends HTMLElement {
|
|
|
13190
12710
|
/**
|
|
13191
12711
|
* Sets or retrieves how the object is aligned with adjacent text.
|
|
13192
12712
|
* @deprecated
|
|
13193
|
-
*
|
|
13194
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/align)
|
|
13195
12713
|
*/
|
|
13196
12714
|
align: string;
|
|
13197
12715
|
/**
|
|
@@ -13230,11 +12748,7 @@ interface HTMLTableRowElement extends HTMLElement {
|
|
|
13230
12748
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/sectionRowIndex)
|
|
13231
12749
|
*/
|
|
13232
12750
|
readonly sectionRowIndex: number;
|
|
13233
|
-
/**
|
|
13234
|
-
* @deprecated
|
|
13235
|
-
*
|
|
13236
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/vAlign)
|
|
13237
|
-
*/
|
|
12751
|
+
/** @deprecated */
|
|
13238
12752
|
vAlign: string;
|
|
13239
12753
|
/**
|
|
13240
12754
|
* Removes the specified cell from the table row, as well as from the cells collection.
|
|
@@ -13270,8 +12784,6 @@ interface HTMLTableSectionElement extends HTMLElement {
|
|
|
13270
12784
|
/**
|
|
13271
12785
|
* Sets or retrieves a value that indicates the table alignment.
|
|
13272
12786
|
* @deprecated
|
|
13273
|
-
*
|
|
13274
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/align)
|
|
13275
12787
|
*/
|
|
13276
12788
|
align: string;
|
|
13277
12789
|
/**
|
|
@@ -13292,11 +12804,7 @@ interface HTMLTableSectionElement extends HTMLElement {
|
|
|
13292
12804
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/rows)
|
|
13293
12805
|
*/
|
|
13294
12806
|
readonly rows: HTMLCollectionOf<HTMLTableRowElement>;
|
|
13295
|
-
/**
|
|
13296
|
-
* @deprecated
|
|
13297
|
-
*
|
|
13298
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/vAlign)
|
|
13299
|
-
*/
|
|
12807
|
+
/** @deprecated */
|
|
13300
12808
|
vAlign: string;
|
|
13301
12809
|
/**
|
|
13302
12810
|
* Removes the specified row (tr) from the element and from the rows collection.
|
|
@@ -13335,7 +12843,14 @@ interface HTMLTemplateElement extends HTMLElement {
|
|
|
13335
12843
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
|
|
13336
12844
|
*/
|
|
13337
12845
|
readonly content: DocumentFragment;
|
|
12846
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable) */
|
|
12847
|
+
shadowRootClonable: boolean;
|
|
12848
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootDelegatesFocus) */
|
|
12849
|
+
shadowRootDelegatesFocus: boolean;
|
|
12850
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootMode) */
|
|
13338
12851
|
shadowRootMode: string;
|
|
12852
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootSerializable) */
|
|
12853
|
+
shadowRootSerializable: boolean;
|
|
13339
12854
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
13340
12855
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
13341
12856
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -13353,7 +12868,6 @@ declare var HTMLTemplateElement: {
|
|
|
13353
12868
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement)
|
|
13354
12869
|
*/
|
|
13355
12870
|
interface HTMLTextAreaElement extends HTMLElement {
|
|
13356
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/autocomplete) */
|
|
13357
12871
|
autocomplete: AutoFill;
|
|
13358
12872
|
/** Sets or retrieves the width of the object. */
|
|
13359
12873
|
cols: number;
|
|
@@ -13383,7 +12897,6 @@ interface HTMLTextAreaElement extends HTMLElement {
|
|
|
13383
12897
|
selectionEnd: number;
|
|
13384
12898
|
/** Gets or sets the starting position or offset of a text selection. */
|
|
13385
12899
|
selectionStart: number;
|
|
13386
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
|
|
13387
12900
|
readonly textLength: number;
|
|
13388
12901
|
/**
|
|
13389
12902
|
* Retrieves the type of control.
|
|
@@ -13403,7 +12916,6 @@ interface HTMLTextAreaElement extends HTMLElement {
|
|
|
13403
12916
|
wrap: string;
|
|
13404
12917
|
/** Returns whether a form will validate when it is submitted, without having to submit it. */
|
|
13405
12918
|
checkValidity(): boolean;
|
|
13406
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
|
|
13407
12919
|
reportValidity(): boolean;
|
|
13408
12920
|
/** Highlights the input area of a form element. */
|
|
13409
12921
|
select(): void;
|
|
@@ -13480,23 +12992,14 @@ declare var HTMLTitleElement: {
|
|
|
13480
12992
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
|
|
13481
12993
|
*/
|
|
13482
12994
|
interface HTMLTrackElement extends HTMLElement {
|
|
13483
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
|
|
13484
12995
|
default: boolean;
|
|
13485
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
|
|
13486
12996
|
kind: string;
|
|
13487
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
|
|
13488
12997
|
label: string;
|
|
13489
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
|
|
13490
12998
|
readonly readyState: number;
|
|
13491
12999
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
|
|
13492
13000
|
src: string;
|
|
13493
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
|
|
13494
13001
|
srclang: string;
|
|
13495
|
-
/**
|
|
13496
|
-
* Returns the TextTrack object corresponding to the text track of the track element.
|
|
13497
|
-
*
|
|
13498
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
|
|
13499
|
-
*/
|
|
13002
|
+
/** Returns the TextTrack object corresponding to the text track of the track element. */
|
|
13500
13003
|
readonly track: TextTrack;
|
|
13501
13004
|
readonly NONE: 0;
|
|
13502
13005
|
readonly LOADING: 1;
|
|
@@ -13523,17 +13026,9 @@ declare var HTMLTrackElement: {
|
|
|
13523
13026
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement)
|
|
13524
13027
|
*/
|
|
13525
13028
|
interface HTMLUListElement extends HTMLElement {
|
|
13526
|
-
/**
|
|
13527
|
-
* @deprecated
|
|
13528
|
-
*
|
|
13529
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/compact)
|
|
13530
|
-
*/
|
|
13029
|
+
/** @deprecated */
|
|
13531
13030
|
compact: boolean;
|
|
13532
|
-
/**
|
|
13533
|
-
* @deprecated
|
|
13534
|
-
*
|
|
13535
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/type)
|
|
13536
|
-
*/
|
|
13031
|
+
/** @deprecated */
|
|
13537
13032
|
type: string;
|
|
13538
13033
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
13539
13034
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -14364,7 +13859,7 @@ interface IDBTransaction extends EventTarget {
|
|
|
14364
13859
|
/**
|
|
14365
13860
|
* Returns a list of the names of object stores in the transaction's scope. For an upgrade transaction this is all object stores in the database.
|
|
14366
13861
|
*
|
|
14367
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/
|
|
13862
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/ObjectStoreNames)
|
|
14368
13863
|
*/
|
|
14369
13864
|
readonly objectStoreNames: DOMStringList;
|
|
14370
13865
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
|
|
@@ -14521,9 +14016,9 @@ declare var ImageData: {
|
|
|
14521
14016
|
new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
14522
14017
|
};
|
|
14523
14018
|
|
|
14524
|
-
interface
|
|
14525
|
-
|
|
14526
|
-
|
|
14019
|
+
interface ImportMeta {
|
|
14020
|
+
url: string;
|
|
14021
|
+
resolve(specifier: string): string;
|
|
14527
14022
|
}
|
|
14528
14023
|
|
|
14529
14024
|
/**
|
|
@@ -15292,6 +14787,7 @@ declare var MediaKeySystemAccess: {
|
|
|
15292
14787
|
interface MediaKeys {
|
|
15293
14788
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/createSession) */
|
|
15294
14789
|
createSession(sessionType?: MediaKeySessionType): MediaKeySession;
|
|
14790
|
+
getStatusForPolicy(policy?: MediaKeysPolicy): Promise<MediaKeyStatus>;
|
|
15295
14791
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/setServerCertificate) */
|
|
15296
14792
|
setServerCertificate(serverCertificate: BufferSource): Promise<boolean>;
|
|
15297
14793
|
}
|
|
@@ -15480,11 +14976,8 @@ interface MediaSource extends EventTarget {
|
|
|
15480
14976
|
readonly activeSourceBuffers: SourceBufferList;
|
|
15481
14977
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration) */
|
|
15482
14978
|
duration: number;
|
|
15483
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
|
|
15484
14979
|
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
|
|
15485
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
|
|
15486
14980
|
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
|
|
15487
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
|
|
15488
14981
|
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
|
|
15489
14982
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState) */
|
|
15490
14983
|
readonly readyState: ReadyState;
|
|
@@ -15509,10 +15002,21 @@ interface MediaSource extends EventTarget {
|
|
|
15509
15002
|
declare var MediaSource: {
|
|
15510
15003
|
prototype: MediaSource;
|
|
15511
15004
|
new(): MediaSource;
|
|
15005
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/canConstructInDedicatedWorker_static) */
|
|
15006
|
+
readonly canConstructInDedicatedWorker: boolean;
|
|
15512
15007
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/isTypeSupported_static) */
|
|
15513
15008
|
isTypeSupported(type: string): boolean;
|
|
15514
15009
|
};
|
|
15515
15010
|
|
|
15011
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSourceHandle) */
|
|
15012
|
+
interface MediaSourceHandle {
|
|
15013
|
+
}
|
|
15014
|
+
|
|
15015
|
+
declare var MediaSourceHandle: {
|
|
15016
|
+
prototype: MediaSourceHandle;
|
|
15017
|
+
new(): MediaSourceHandle;
|
|
15018
|
+
};
|
|
15019
|
+
|
|
15516
15020
|
interface MediaStreamEventMap {
|
|
15517
15021
|
"addtrack": MediaStreamTrackEvent;
|
|
15518
15022
|
"removetrack": MediaStreamTrackEvent;
|
|
@@ -15716,11 +15220,7 @@ interface MessageEvent<T = any> extends Event {
|
|
|
15716
15220
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
|
|
15717
15221
|
*/
|
|
15718
15222
|
readonly source: MessageEventSource | null;
|
|
15719
|
-
/**
|
|
15720
|
-
* @deprecated
|
|
15721
|
-
*
|
|
15722
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
|
|
15723
|
-
*/
|
|
15223
|
+
/** @deprecated */
|
|
15724
15224
|
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
|
|
15725
15225
|
}
|
|
15726
15226
|
|
|
@@ -15786,29 +15286,21 @@ interface MimeType {
|
|
|
15786
15286
|
/**
|
|
15787
15287
|
* Returns the MIME type's description.
|
|
15788
15288
|
* @deprecated
|
|
15789
|
-
*
|
|
15790
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/description)
|
|
15791
15289
|
*/
|
|
15792
15290
|
readonly description: string;
|
|
15793
15291
|
/**
|
|
15794
15292
|
* Returns the Plugin object that implements this MIME type.
|
|
15795
15293
|
* @deprecated
|
|
15796
|
-
*
|
|
15797
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/enabledPlugin)
|
|
15798
15294
|
*/
|
|
15799
15295
|
readonly enabledPlugin: Plugin;
|
|
15800
15296
|
/**
|
|
15801
15297
|
* Returns the MIME type's typical file extensions, in a comma-separated list.
|
|
15802
15298
|
* @deprecated
|
|
15803
|
-
*
|
|
15804
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/suffixes)
|
|
15805
15299
|
*/
|
|
15806
15300
|
readonly suffixes: string;
|
|
15807
15301
|
/**
|
|
15808
15302
|
* Returns the MIME type.
|
|
15809
15303
|
* @deprecated
|
|
15810
|
-
*
|
|
15811
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/type)
|
|
15812
15304
|
*/
|
|
15813
15305
|
readonly type: string;
|
|
15814
15306
|
}
|
|
@@ -15826,23 +15318,11 @@ declare var MimeType: {
|
|
|
15826
15318
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray)
|
|
15827
15319
|
*/
|
|
15828
15320
|
interface MimeTypeArray {
|
|
15829
|
-
/**
|
|
15830
|
-
* @deprecated
|
|
15831
|
-
*
|
|
15832
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/length)
|
|
15833
|
-
*/
|
|
15321
|
+
/** @deprecated */
|
|
15834
15322
|
readonly length: number;
|
|
15835
|
-
/**
|
|
15836
|
-
* @deprecated
|
|
15837
|
-
*
|
|
15838
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/item)
|
|
15839
|
-
*/
|
|
15323
|
+
/** @deprecated */
|
|
15840
15324
|
item(index: number): MimeType | null;
|
|
15841
|
-
/**
|
|
15842
|
-
* @deprecated
|
|
15843
|
-
*
|
|
15844
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/namedItem)
|
|
15845
|
-
*/
|
|
15325
|
+
/** @deprecated */
|
|
15846
15326
|
namedItem(name: string): MimeType | null;
|
|
15847
15327
|
[index: number]: MimeType;
|
|
15848
15328
|
}
|
|
@@ -16313,7 +15793,7 @@ interface NavigatorPlugins {
|
|
|
16313
15793
|
/**
|
|
16314
15794
|
* @deprecated
|
|
16315
15795
|
*
|
|
16316
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
15796
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes)
|
|
16317
15797
|
*/
|
|
16318
15798
|
readonly mimeTypes: MimeTypeArray;
|
|
16319
15799
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */
|
|
@@ -16862,7 +16342,9 @@ interface OffscreenCanvas extends EventTarget {
|
|
|
16862
16342
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/height)
|
|
16863
16343
|
*/
|
|
16864
16344
|
height: number;
|
|
16345
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextlost_event) */
|
|
16865
16346
|
oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;
|
|
16347
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextrestored_event) */
|
|
16866
16348
|
oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;
|
|
16867
16349
|
/**
|
|
16868
16350
|
* These attributes return the dimensions of the OffscreenCanvas object's bitmap.
|
|
@@ -16914,8 +16396,6 @@ declare var OffscreenCanvas: {
|
|
|
16914
16396
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D) */
|
|
16915
16397
|
interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
|
|
16916
16398
|
readonly canvas: OffscreenCanvas;
|
|
16917
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D/commit) */
|
|
16918
|
-
commit(): void;
|
|
16919
16399
|
}
|
|
16920
16400
|
|
|
16921
16401
|
declare var OffscreenCanvasRenderingContext2D: {
|
|
@@ -17775,15 +17255,11 @@ interface Plugin {
|
|
|
17775
17255
|
/**
|
|
17776
17256
|
* Returns the plugin's description.
|
|
17777
17257
|
* @deprecated
|
|
17778
|
-
*
|
|
17779
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/description)
|
|
17780
17258
|
*/
|
|
17781
17259
|
readonly description: string;
|
|
17782
17260
|
/**
|
|
17783
17261
|
* Returns the plugin library's filename, if applicable on the current platform.
|
|
17784
17262
|
* @deprecated
|
|
17785
|
-
*
|
|
17786
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/filename)
|
|
17787
17263
|
*/
|
|
17788
17264
|
readonly filename: string;
|
|
17789
17265
|
/**
|
|
@@ -17794,22 +17270,14 @@ interface Plugin {
|
|
|
17794
17270
|
/**
|
|
17795
17271
|
* Returns the plugin's name.
|
|
17796
17272
|
* @deprecated
|
|
17797
|
-
*
|
|
17798
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/name)
|
|
17799
17273
|
*/
|
|
17800
17274
|
readonly name: string;
|
|
17801
17275
|
/**
|
|
17802
17276
|
* Returns the specified MimeType object.
|
|
17803
17277
|
* @deprecated
|
|
17804
|
-
*
|
|
17805
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/item)
|
|
17806
17278
|
*/
|
|
17807
17279
|
item(index: number): MimeType | null;
|
|
17808
|
-
/**
|
|
17809
|
-
* @deprecated
|
|
17810
|
-
*
|
|
17811
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/namedItem)
|
|
17812
|
-
*/
|
|
17280
|
+
/** @deprecated */
|
|
17813
17281
|
namedItem(name: string): MimeType | null;
|
|
17814
17282
|
[index: number]: MimeType;
|
|
17815
17283
|
}
|
|
@@ -17827,29 +17295,13 @@ declare var Plugin: {
|
|
|
17827
17295
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray)
|
|
17828
17296
|
*/
|
|
17829
17297
|
interface PluginArray {
|
|
17830
|
-
/**
|
|
17831
|
-
* @deprecated
|
|
17832
|
-
*
|
|
17833
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/length)
|
|
17834
|
-
*/
|
|
17298
|
+
/** @deprecated */
|
|
17835
17299
|
readonly length: number;
|
|
17836
|
-
/**
|
|
17837
|
-
* @deprecated
|
|
17838
|
-
*
|
|
17839
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/item)
|
|
17840
|
-
*/
|
|
17300
|
+
/** @deprecated */
|
|
17841
17301
|
item(index: number): Plugin | null;
|
|
17842
|
-
/**
|
|
17843
|
-
* @deprecated
|
|
17844
|
-
*
|
|
17845
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/namedItem)
|
|
17846
|
-
*/
|
|
17302
|
+
/** @deprecated */
|
|
17847
17303
|
namedItem(name: string): Plugin | null;
|
|
17848
|
-
/**
|
|
17849
|
-
* @deprecated
|
|
17850
|
-
*
|
|
17851
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/refresh)
|
|
17852
|
-
*/
|
|
17304
|
+
/** @deprecated */
|
|
17853
17305
|
refresh(): void;
|
|
17854
17306
|
[index: number]: Plugin;
|
|
17855
17307
|
}
|
|
@@ -17907,6 +17359,7 @@ declare var PointerEvent: {
|
|
|
17907
17359
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent)
|
|
17908
17360
|
*/
|
|
17909
17361
|
interface PopStateEvent extends Event {
|
|
17362
|
+
readonly hasUAVisualTransition: boolean;
|
|
17910
17363
|
/**
|
|
17911
17364
|
* Returns a copy of the information that was provided to pushState() or replaceState().
|
|
17912
17365
|
*
|
|
@@ -17982,6 +17435,7 @@ declare var PromiseRejectionEvent: {
|
|
|
17982
17435
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential)
|
|
17983
17436
|
*/
|
|
17984
17437
|
interface PublicKeyCredential extends Credential {
|
|
17438
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/authenticatorAttachment) */
|
|
17985
17439
|
readonly authenticatorAttachment: string | null;
|
|
17986
17440
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId) */
|
|
17987
17441
|
readonly rawId: ArrayBuffer;
|
|
@@ -18201,12 +17655,11 @@ interface RTCDtlsTransportEventMap {
|
|
|
18201
17655
|
interface RTCDtlsTransport extends EventTarget {
|
|
18202
17656
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/iceTransport) */
|
|
18203
17657
|
readonly iceTransport: RTCIceTransport;
|
|
17658
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/error_event) */
|
|
18204
17659
|
onerror: ((this: RTCDtlsTransport, ev: Event) => any) | null;
|
|
18205
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/statechange_event) */
|
|
18206
17660
|
onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
|
|
18207
17661
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state) */
|
|
18208
17662
|
readonly state: RTCDtlsTransportState;
|
|
18209
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/getRemoteCertificates) */
|
|
18210
17663
|
getRemoteCertificates(): ArrayBuffer[];
|
|
18211
17664
|
addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
18212
17665
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -18324,6 +17777,11 @@ declare var RTCIceCandidate: {
|
|
|
18324
17777
|
new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
|
|
18325
17778
|
};
|
|
18326
17779
|
|
|
17780
|
+
interface RTCIceCandidatePair {
|
|
17781
|
+
local: RTCIceCandidate;
|
|
17782
|
+
remote: RTCIceCandidate;
|
|
17783
|
+
}
|
|
17784
|
+
|
|
18327
17785
|
interface RTCIceTransportEventMap {
|
|
18328
17786
|
"gatheringstatechange": Event;
|
|
18329
17787
|
"selectedcandidatepairchange": Event;
|
|
@@ -18480,12 +17938,9 @@ declare var RTCPeerConnection: {
|
|
|
18480
17938
|
interface RTCPeerConnectionIceErrorEvent extends Event {
|
|
18481
17939
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/address) */
|
|
18482
17940
|
readonly address: string | null;
|
|
18483
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorCode) */
|
|
18484
17941
|
readonly errorCode: number;
|
|
18485
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorText) */
|
|
18486
17942
|
readonly errorText: string;
|
|
18487
17943
|
readonly port: number | null;
|
|
18488
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/url) */
|
|
18489
17944
|
readonly url: string;
|
|
18490
17945
|
}
|
|
18491
17946
|
|
|
@@ -18515,6 +17970,8 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
18515
17970
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver)
|
|
18516
17971
|
*/
|
|
18517
17972
|
interface RTCRtpReceiver {
|
|
17973
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget) */
|
|
17974
|
+
jitterBufferTarget: DOMHighResTimeStamp | null;
|
|
18518
17975
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track) */
|
|
18519
17976
|
readonly track: MediaStreamTrack;
|
|
18520
17977
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */
|
|
@@ -18593,7 +18050,7 @@ interface RTCRtpTransceiver {
|
|
|
18593
18050
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender) */
|
|
18594
18051
|
readonly sender: RTCRtpSender;
|
|
18595
18052
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/setCodecPreferences) */
|
|
18596
|
-
setCodecPreferences(codecs:
|
|
18053
|
+
setCodecPreferences(codecs: RTCRtpCodec[]): void;
|
|
18597
18054
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop) */
|
|
18598
18055
|
stop(): void;
|
|
18599
18056
|
}
|
|
@@ -18613,6 +18070,7 @@ interface RTCSctpTransport extends EventTarget {
|
|
|
18613
18070
|
readonly maxChannels: number | null;
|
|
18614
18071
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */
|
|
18615
18072
|
readonly maxMessageSize: number;
|
|
18073
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
|
|
18616
18074
|
onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
|
|
18617
18075
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/state) */
|
|
18618
18076
|
readonly state: RTCSctpTransportState;
|
|
@@ -18640,7 +18098,7 @@ interface RTCSessionDescription {
|
|
|
18640
18098
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/type) */
|
|
18641
18099
|
readonly type: RTCSdpType;
|
|
18642
18100
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON) */
|
|
18643
|
-
toJSON():
|
|
18101
|
+
toJSON(): RTCSessionDescriptionInit;
|
|
18644
18102
|
}
|
|
18645
18103
|
|
|
18646
18104
|
declare var RTCSessionDescription: {
|
|
@@ -18713,7 +18171,7 @@ interface Range extends AbstractRange {
|
|
|
18713
18171
|
*/
|
|
18714
18172
|
comparePoint(node: Node, offset: number): number;
|
|
18715
18173
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment) */
|
|
18716
|
-
createContextualFragment(
|
|
18174
|
+
createContextualFragment(string: string): DocumentFragment;
|
|
18717
18175
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/deleteContents) */
|
|
18718
18176
|
deleteContents(): void;
|
|
18719
18177
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/detach) */
|
|
@@ -18932,6 +18390,7 @@ declare var Report: {
|
|
|
18932
18390
|
|
|
18933
18391
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody) */
|
|
18934
18392
|
interface ReportBody {
|
|
18393
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON) */
|
|
18935
18394
|
toJSON(): any;
|
|
18936
18395
|
}
|
|
18937
18396
|
|
|
@@ -18991,11 +18450,7 @@ interface Request extends Body {
|
|
|
18991
18450
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
|
|
18992
18451
|
*/
|
|
18993
18452
|
readonly integrity: string;
|
|
18994
|
-
/**
|
|
18995
|
-
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
|
|
18996
|
-
*
|
|
18997
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
|
|
18998
|
-
*/
|
|
18453
|
+
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
|
|
18999
18454
|
readonly keepalive: boolean;
|
|
19000
18455
|
/**
|
|
19001
18456
|
* Returns request's HTTP method, which is "GET" by default.
|
|
@@ -19071,6 +18526,7 @@ interface ResizeObserverEntry {
|
|
|
19071
18526
|
readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
|
|
19072
18527
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect) */
|
|
19073
18528
|
readonly contentRect: DOMRectReadOnly;
|
|
18529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/devicePixelContentBoxSize) */
|
|
19074
18530
|
readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
|
|
19075
18531
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target) */
|
|
19076
18532
|
readonly target: Element;
|
|
@@ -19254,7 +18710,9 @@ declare var SVGAnimatedBoolean: {
|
|
|
19254
18710
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration)
|
|
19255
18711
|
*/
|
|
19256
18712
|
interface SVGAnimatedEnumeration {
|
|
18713
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/animVal) */
|
|
19257
18714
|
readonly animVal: number;
|
|
18715
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/baseVal) */
|
|
19258
18716
|
baseVal: number;
|
|
19259
18717
|
}
|
|
19260
18718
|
|
|
@@ -19284,7 +18742,9 @@ declare var SVGAnimatedInteger: {
|
|
|
19284
18742
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength)
|
|
19285
18743
|
*/
|
|
19286
18744
|
interface SVGAnimatedLength {
|
|
18745
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/animVal) */
|
|
19287
18746
|
readonly animVal: SVGLength;
|
|
18747
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/baseVal) */
|
|
19288
18748
|
readonly baseVal: SVGLength;
|
|
19289
18749
|
}
|
|
19290
18750
|
|
|
@@ -19646,11 +19106,8 @@ declare var SVGFEBlendElement: {
|
|
|
19646
19106
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
|
|
19647
19107
|
*/
|
|
19648
19108
|
interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
19649
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
|
|
19650
19109
|
readonly in1: SVGAnimatedString;
|
|
19651
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
|
|
19652
19110
|
readonly type: SVGAnimatedEnumeration;
|
|
19653
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
|
|
19654
19111
|
readonly values: SVGAnimatedNumberList;
|
|
19655
19112
|
readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
|
|
19656
19113
|
readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
|
|
@@ -20340,7 +19797,6 @@ declare var SVGGraphicsElement: {
|
|
|
20340
19797
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
|
|
20341
19798
|
*/
|
|
20342
19799
|
interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
|
|
20343
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
|
|
20344
19800
|
crossOrigin: string | null;
|
|
20345
19801
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
|
|
20346
19802
|
readonly height: SVGAnimatedLength;
|
|
@@ -21289,6 +20745,7 @@ interface ScreenOrientationEventMap {
|
|
|
21289
20745
|
interface ScreenOrientation extends EventTarget {
|
|
21290
20746
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle) */
|
|
21291
20747
|
readonly angle: number;
|
|
20748
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
|
|
21292
20749
|
onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
|
|
21293
20750
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type) */
|
|
21294
20751
|
readonly type: OrientationType;
|
|
@@ -21387,6 +20844,8 @@ interface Selection {
|
|
|
21387
20844
|
readonly anchorNode: Node | null;
|
|
21388
20845
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset) */
|
|
21389
20846
|
readonly anchorOffset: number;
|
|
20847
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/direction) */
|
|
20848
|
+
readonly direction: string;
|
|
21390
20849
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusNode) */
|
|
21391
20850
|
readonly focusNode: Node | null;
|
|
21392
20851
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset) */
|
|
@@ -21559,18 +21018,25 @@ interface ShadowRootEventMap {
|
|
|
21559
21018
|
}
|
|
21560
21019
|
|
|
21561
21020
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
|
|
21562
|
-
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot
|
|
21021
|
+
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
|
|
21563
21022
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
|
|
21564
21023
|
readonly clonable: boolean;
|
|
21565
21024
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
|
|
21566
21025
|
readonly delegatesFocus: boolean;
|
|
21567
21026
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
|
|
21568
21027
|
readonly host: Element;
|
|
21028
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/innerHTML) */
|
|
21029
|
+
innerHTML: string;
|
|
21569
21030
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode) */
|
|
21570
21031
|
readonly mode: ShadowRootMode;
|
|
21571
21032
|
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
|
|
21033
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/serializable) */
|
|
21034
|
+
readonly serializable: boolean;
|
|
21572
21035
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
|
|
21573
21036
|
readonly slotAssignment: SlotAssignmentMode;
|
|
21037
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/getHTML) */
|
|
21038
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
21039
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe) */
|
|
21574
21040
|
setHTMLUnsafe(html: string): void;
|
|
21575
21041
|
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
|
|
21576
21042
|
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -21630,15 +21096,10 @@ interface SourceBuffer extends EventTarget {
|
|
|
21630
21096
|
readonly buffered: TimeRanges;
|
|
21631
21097
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/mode) */
|
|
21632
21098
|
mode: AppendMode;
|
|
21633
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/abort_event) */
|
|
21634
21099
|
onabort: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
21635
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/error_event) */
|
|
21636
21100
|
onerror: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
21637
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/update_event) */
|
|
21638
21101
|
onupdate: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
21639
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updateend_event) */
|
|
21640
21102
|
onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
21641
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updatestart_event) */
|
|
21642
21103
|
onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
21643
21104
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset) */
|
|
21644
21105
|
timestampOffset: number;
|
|
@@ -21676,9 +21137,7 @@ interface SourceBufferListEventMap {
|
|
|
21676
21137
|
interface SourceBufferList extends EventTarget {
|
|
21677
21138
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length) */
|
|
21678
21139
|
readonly length: number;
|
|
21679
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/addsourcebuffer_event) */
|
|
21680
21140
|
onaddsourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
|
|
21681
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/removesourcebuffer_event) */
|
|
21682
21141
|
onremovesourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
|
|
21683
21142
|
addEventListener<K extends keyof SourceBufferListEventMap>(type: K, listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21684
21143
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -22312,6 +21771,16 @@ declare var TextEncoderStream: {
|
|
|
22312
21771
|
new(): TextEncoderStream;
|
|
22313
21772
|
};
|
|
22314
21773
|
|
|
21774
|
+
interface TextEvent extends UIEvent {
|
|
21775
|
+
readonly data: string;
|
|
21776
|
+
initTextEvent(type: string, bubbles?: boolean, cancelable?: boolean, view?: Window | null, data?: string): void;
|
|
21777
|
+
}
|
|
21778
|
+
|
|
21779
|
+
declare var TextEvent: {
|
|
21780
|
+
prototype: TextEvent;
|
|
21781
|
+
new(): TextEvent;
|
|
21782
|
+
};
|
|
21783
|
+
|
|
22315
21784
|
/**
|
|
22316
21785
|
* The dimensions of a piece of text in the canvas, as created by the CanvasRenderingContext2D.measureText() method.
|
|
22317
21786
|
*
|
|
@@ -22588,7 +22057,7 @@ interface TextTrackList extends EventTarget {
|
|
|
22588
22057
|
onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
|
|
22589
22058
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/change_event) */
|
|
22590
22059
|
onchange: ((this: TextTrackList, ev: Event) => any) | null;
|
|
22591
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/
|
|
22060
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removeTrack_event) */
|
|
22592
22061
|
onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
|
|
22593
22062
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById) */
|
|
22594
22063
|
getTrackById(id: string): TextTrack | null;
|
|
@@ -22905,9 +22374,11 @@ declare var URL: {
|
|
|
22905
22374
|
prototype: URL;
|
|
22906
22375
|
new(url: string | URL, base?: string | URL): URL;
|
|
22907
22376
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) */
|
|
22908
|
-
canParse(url: string | URL, base?: string): boolean;
|
|
22377
|
+
canParse(url: string | URL, base?: string | URL): boolean;
|
|
22909
22378
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static) */
|
|
22910
22379
|
createObjectURL(obj: Blob | MediaSource): string;
|
|
22380
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
|
|
22381
|
+
parse(url: string | URL, base?: string | URL): URL | null;
|
|
22911
22382
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static) */
|
|
22912
22383
|
revokeObjectURL(url: string): void;
|
|
22913
22384
|
};
|
|
@@ -23017,21 +22488,13 @@ declare var VTTCue: {
|
|
|
23017
22488
|
|
|
23018
22489
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion) */
|
|
23019
22490
|
interface VTTRegion {
|
|
23020
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/id) */
|
|
23021
22491
|
id: string;
|
|
23022
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/lines) */
|
|
23023
22492
|
lines: number;
|
|
23024
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorX) */
|
|
23025
22493
|
regionAnchorX: number;
|
|
23026
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorY) */
|
|
23027
22494
|
regionAnchorY: number;
|
|
23028
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/scroll) */
|
|
23029
22495
|
scroll: ScrollSetting;
|
|
23030
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorX) */
|
|
23031
22496
|
viewportAnchorX: number;
|
|
23032
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorY) */
|
|
23033
22497
|
viewportAnchorY: number;
|
|
23034
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/width) */
|
|
23035
22498
|
width: number;
|
|
23036
22499
|
}
|
|
23037
22500
|
|
|
@@ -23048,7 +22511,6 @@ declare var VTTRegion: {
|
|
|
23048
22511
|
interface ValidityState {
|
|
23049
22512
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/badInput) */
|
|
23050
22513
|
readonly badInput: boolean;
|
|
23051
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/customError) */
|
|
23052
22514
|
readonly customError: boolean;
|
|
23053
22515
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/patternMismatch) */
|
|
23054
22516
|
readonly patternMismatch: boolean;
|
|
@@ -23064,7 +22526,6 @@ interface ValidityState {
|
|
|
23064
22526
|
readonly tooShort: boolean;
|
|
23065
22527
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/typeMismatch) */
|
|
23066
22528
|
readonly typeMismatch: boolean;
|
|
23067
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valid) */
|
|
23068
22529
|
readonly valid: boolean;
|
|
23069
22530
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valueMissing) */
|
|
23070
22531
|
readonly valueMissing: boolean;
|
|
@@ -23106,6 +22567,7 @@ interface VideoDecoderEventMap {
|
|
|
23106
22567
|
interface VideoDecoder extends EventTarget {
|
|
23107
22568
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decodeQueueSize) */
|
|
23108
22569
|
readonly decodeQueueSize: number;
|
|
22570
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/dequeue_event) */
|
|
23109
22571
|
ondequeue: ((this: VideoDecoder, ev: Event) => any) | null;
|
|
23110
22572
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/state) */
|
|
23111
22573
|
readonly state: CodecState;
|
|
@@ -23128,6 +22590,7 @@ interface VideoDecoder extends EventTarget {
|
|
|
23128
22590
|
declare var VideoDecoder: {
|
|
23129
22591
|
prototype: VideoDecoder;
|
|
23130
22592
|
new(init: VideoDecoderInit): VideoDecoder;
|
|
22593
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/isConfigSupported_static) */
|
|
23131
22594
|
isConfigSupported(config: VideoDecoderConfig): Promise<VideoDecoderSupport>;
|
|
23132
22595
|
};
|
|
23133
22596
|
|
|
@@ -23143,6 +22606,7 @@ interface VideoEncoderEventMap {
|
|
|
23143
22606
|
interface VideoEncoder extends EventTarget {
|
|
23144
22607
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encodeQueueSize) */
|
|
23145
22608
|
readonly encodeQueueSize: number;
|
|
22609
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/dequeue_event) */
|
|
23146
22610
|
ondequeue: ((this: VideoEncoder, ev: Event) => any) | null;
|
|
23147
22611
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/state) */
|
|
23148
22612
|
readonly state: CodecState;
|
|
@@ -23152,6 +22616,7 @@ interface VideoEncoder extends EventTarget {
|
|
|
23152
22616
|
configure(config: VideoEncoderConfig): void;
|
|
23153
22617
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encode) */
|
|
23154
22618
|
encode(frame: VideoFrame, options?: VideoEncoderEncodeOptions): void;
|
|
22619
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/flush) */
|
|
23155
22620
|
flush(): Promise<void>;
|
|
23156
22621
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/reset) */
|
|
23157
22622
|
reset(): void;
|
|
@@ -23164,6 +22629,7 @@ interface VideoEncoder extends EventTarget {
|
|
|
23164
22629
|
declare var VideoEncoder: {
|
|
23165
22630
|
prototype: VideoEncoder;
|
|
23166
22631
|
new(init: VideoEncoderInit): VideoEncoder;
|
|
22632
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/isConfigSupported_static) */
|
|
23167
22633
|
isConfigSupported(config: VideoEncoderConfig): Promise<VideoEncoderSupport>;
|
|
23168
22634
|
};
|
|
23169
22635
|
|
|
@@ -23195,6 +22661,7 @@ interface VideoFrame {
|
|
|
23195
22661
|
clone(): VideoFrame;
|
|
23196
22662
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/close) */
|
|
23197
22663
|
close(): void;
|
|
22664
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/copyTo) */
|
|
23198
22665
|
copyTo(destination: AllowSharedBufferSource, options?: VideoFrameCopyToOptions): Promise<PlaneLayout[]>;
|
|
23199
22666
|
}
|
|
23200
22667
|
|
|
@@ -23229,6 +22696,23 @@ declare var VideoPlaybackQuality: {
|
|
|
23229
22696
|
new(): VideoPlaybackQuality;
|
|
23230
22697
|
};
|
|
23231
22698
|
|
|
22699
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition) */
|
|
22700
|
+
interface ViewTransition {
|
|
22701
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished) */
|
|
22702
|
+
readonly finished: Promise<undefined>;
|
|
22703
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready) */
|
|
22704
|
+
readonly ready: Promise<undefined>;
|
|
22705
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone) */
|
|
22706
|
+
readonly updateCallbackDone: Promise<undefined>;
|
|
22707
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition) */
|
|
22708
|
+
skipTransition(): void;
|
|
22709
|
+
}
|
|
22710
|
+
|
|
22711
|
+
declare var ViewTransition: {
|
|
22712
|
+
prototype: ViewTransition;
|
|
22713
|
+
new(): ViewTransition;
|
|
22714
|
+
};
|
|
22715
|
+
|
|
23232
22716
|
interface VisualViewportEventMap {
|
|
23233
22717
|
"resize": Event;
|
|
23234
22718
|
"scroll": Event;
|
|
@@ -24094,7 +23578,7 @@ interface WebGL2RenderingContextBase {
|
|
|
24094
23578
|
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;
|
|
24095
23579
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */
|
|
24096
23580
|
clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
|
|
24097
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
23581
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
|
|
24098
23582
|
compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
|
|
24099
23583
|
compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
|
|
24100
23584
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */
|
|
@@ -24977,6 +24461,7 @@ declare var WebGLRenderingContext: {
|
|
|
24977
24461
|
interface WebGLRenderingContextBase {
|
|
24978
24462
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/canvas) */
|
|
24979
24463
|
readonly canvas: HTMLCanvasElement | OffscreenCanvas;
|
|
24464
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferColorSpace) */
|
|
24980
24465
|
drawingBufferColorSpace: PredefinedColorSpace;
|
|
24981
24466
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferHeight) */
|
|
24982
24467
|
readonly drawingBufferHeight: GLsizei;
|
|
@@ -25686,7 +25171,7 @@ declare var WebGLVertexArrayObject: {
|
|
|
25686
25171
|
new(): WebGLVertexArrayObject;
|
|
25687
25172
|
};
|
|
25688
25173
|
|
|
25689
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
25174
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */
|
|
25690
25175
|
interface WebGLVertexArrayObjectOES {
|
|
25691
25176
|
}
|
|
25692
25177
|
|
|
@@ -26267,24 +25752,24 @@ interface WindowOrWorkerGlobalScope {
|
|
|
26267
25752
|
/**
|
|
26268
25753
|
* Available only in secure contexts.
|
|
26269
25754
|
*
|
|
26270
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
|
|
25755
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
|
|
26271
25756
|
*/
|
|
26272
25757
|
readonly caches: CacheStorage;
|
|
26273
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
|
|
25758
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
|
|
26274
25759
|
readonly crossOriginIsolated: boolean;
|
|
26275
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
25760
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
|
|
26276
25761
|
readonly crypto: Crypto;
|
|
26277
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
|
|
25762
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
|
|
26278
25763
|
readonly indexedDB: IDBFactory;
|
|
26279
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
|
|
25764
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
|
|
26280
25765
|
readonly isSecureContext: boolean;
|
|
26281
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
|
|
25766
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
|
|
26282
25767
|
readonly origin: string;
|
|
26283
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
25768
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
|
|
26284
25769
|
readonly performance: Performance;
|
|
26285
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
|
|
25770
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
|
|
26286
25771
|
atob(data: string): string;
|
|
26287
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
|
|
25772
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
|
|
26288
25773
|
btoa(data: string): string;
|
|
26289
25774
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
|
|
26290
25775
|
clearInterval(id: number | undefined): void;
|
|
@@ -26791,7 +26276,7 @@ interface Console {
|
|
|
26791
26276
|
clear(): void;
|
|
26792
26277
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
26793
26278
|
count(label?: string): void;
|
|
26794
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26279
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static) */
|
|
26795
26280
|
countReset(label?: string): void;
|
|
26796
26281
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
26797
26282
|
debug(...data: any[]): void;
|
|
@@ -26803,9 +26288,9 @@ interface Console {
|
|
|
26803
26288
|
error(...data: any[]): void;
|
|
26804
26289
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
26805
26290
|
group(...data: any[]): void;
|
|
26806
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26291
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static) */
|
|
26807
26292
|
groupCollapsed(...data: any[]): void;
|
|
26808
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26293
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static) */
|
|
26809
26294
|
groupEnd(): void;
|
|
26810
26295
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
26811
26296
|
info(...data: any[]): void;
|
|
@@ -26815,9 +26300,9 @@ interface Console {
|
|
|
26815
26300
|
table(tabularData?: any, properties?: string[]): void;
|
|
26816
26301
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
26817
26302
|
time(label?: string): void;
|
|
26818
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26303
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static) */
|
|
26819
26304
|
timeEnd(label?: string): void;
|
|
26820
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26305
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static) */
|
|
26821
26306
|
timeLog(label?: string, ...data: any[]): void;
|
|
26822
26307
|
timeStamp(label?: string): void;
|
|
26823
26308
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
@@ -26969,9 +26454,7 @@ declare namespace WebAssembly {
|
|
|
26969
26454
|
|
|
26970
26455
|
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
|
|
26971
26456
|
interface Global<T extends ValueType = ValueType> {
|
|
26972
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
|
|
26973
26457
|
value: ValueTypeMap[T];
|
|
26974
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
|
|
26975
26458
|
valueOf(): ValueTypeMap[T];
|
|
26976
26459
|
}
|
|
26977
26460
|
|
|
@@ -27270,6 +26753,10 @@ interface UnderlyingSourceStartCallback<R> {
|
|
|
27270
26753
|
(controller: ReadableStreamController<R>): any;
|
|
27271
26754
|
}
|
|
27272
26755
|
|
|
26756
|
+
interface UpdateCallback {
|
|
26757
|
+
(): any;
|
|
26758
|
+
}
|
|
26759
|
+
|
|
27273
26760
|
interface VideoFrameOutputCallback {
|
|
27274
26761
|
(output: VideoFrame): void;
|
|
27275
26762
|
}
|
|
@@ -27846,7 +27333,7 @@ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
|
|
|
27846
27333
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
|
|
27847
27334
|
*/
|
|
27848
27335
|
declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
|
27849
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27336
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
|
|
27850
27337
|
declare var oncancel: ((this: Window, ev: Event) => any) | null;
|
|
27851
27338
|
/**
|
|
27852
27339
|
* Occurs when playback is possible, but would require further buffering.
|
|
@@ -27873,6 +27360,8 @@ declare var onchange: ((this: Window, ev: Event) => any) | null;
|
|
|
27873
27360
|
declare var onclick: ((this: Window, ev: MouseEvent) => any) | null;
|
|
27874
27361
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */
|
|
27875
27362
|
declare var onclose: ((this: Window, ev: Event) => any) | null;
|
|
27363
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/webglcontextlost_event) */
|
|
27364
|
+
declare var oncontextlost: ((this: Window, ev: Event) => any) | null;
|
|
27876
27365
|
/**
|
|
27877
27366
|
* Fires when the user clicks the right mouse button in the client area, opening the context menu.
|
|
27878
27367
|
* @param ev The mouse event.
|
|
@@ -27880,6 +27369,8 @@ declare var onclose: ((this: Window, ev: Event) => any) | null;
|
|
|
27880
27369
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event)
|
|
27881
27370
|
*/
|
|
27882
27371
|
declare var oncontextmenu: ((this: Window, ev: MouseEvent) => any) | null;
|
|
27372
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) */
|
|
27373
|
+
declare var oncontextrestored: ((this: Window, ev: Event) => any) | null;
|
|
27883
27374
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) */
|
|
27884
27375
|
declare var oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
27885
27376
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) */
|
|
@@ -28030,7 +27521,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
|
|
|
28030
27521
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
|
|
28031
27522
|
*/
|
|
28032
27523
|
declare var onloadstart: ((this: Window, ev: Event) => any) | null;
|
|
28033
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27524
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
|
|
28034
27525
|
declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
|
|
28035
27526
|
/**
|
|
28036
27527
|
* Fires when the user clicks the object with either mouse button.
|
|
@@ -28297,24 +27788,24 @@ declare var localStorage: Storage;
|
|
|
28297
27788
|
/**
|
|
28298
27789
|
* Available only in secure contexts.
|
|
28299
27790
|
*
|
|
28300
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
|
|
27791
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
|
|
28301
27792
|
*/
|
|
28302
27793
|
declare var caches: CacheStorage;
|
|
28303
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
|
|
27794
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
|
|
28304
27795
|
declare var crossOriginIsolated: boolean;
|
|
28305
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27796
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
|
|
28306
27797
|
declare var crypto: Crypto;
|
|
28307
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
|
|
27798
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
|
|
28308
27799
|
declare var indexedDB: IDBFactory;
|
|
28309
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
|
|
27800
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
|
|
28310
27801
|
declare var isSecureContext: boolean;
|
|
28311
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
|
|
27802
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
|
|
28312
27803
|
declare var origin: string;
|
|
28313
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27804
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
|
|
28314
27805
|
declare var performance: Performance;
|
|
28315
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
|
|
27806
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
|
|
28316
27807
|
declare function atob(data: string): string;
|
|
28317
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
|
|
27808
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
|
|
28318
27809
|
declare function btoa(data: string): string;
|
|
28319
27810
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
|
|
28320
27811
|
declare function clearInterval(id: number | undefined): void;
|
|
@@ -28408,7 +27899,7 @@ type ReportList = Report[];
|
|
|
28408
27899
|
type RequestInfo = Request | string;
|
|
28409
27900
|
type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
|
|
28410
27901
|
type TimerHandler = string | Function;
|
|
28411
|
-
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer;
|
|
27902
|
+
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer;
|
|
28412
27903
|
type Uint32List = Uint32Array | GLuint[];
|
|
28413
27904
|
type VibratePattern = number | number[];
|
|
28414
27905
|
type WindowProxy = Window;
|