@typescript-deploys/pr-build 5.4.0-pr-57040-6 → 5.4.0-pr-57008-39
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/lib.dom.d.ts +271 -142
- package/lib/lib.dom.iterable.d.ts +34 -28
- package/lib/lib.es5.d.ts +5 -0
- package/lib/lib.webworker.d.ts +108 -99
- package/lib/lib.webworker.iterable.d.ts +28 -28
- package/lib/tsc.js +185 -329
- package/lib/tsserver.js +207 -337
- package/lib/typescript.js +207 -337
- package/lib/typingsInstaller.js +49 -24
- package/package.json +2 -2
package/lib/lib.dom.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ interface AuthenticationExtensionsClientInputs {
|
|
|
136
136
|
appid?: string;
|
|
137
137
|
credProps?: boolean;
|
|
138
138
|
hmacCreateSecret?: boolean;
|
|
139
|
+
minPinLength?: boolean;
|
|
139
140
|
}
|
|
140
141
|
|
|
141
142
|
interface AuthenticationExtensionsClientOutputs {
|
|
@@ -552,7 +553,6 @@ interface FontFaceDescriptors {
|
|
|
552
553
|
stretch?: string;
|
|
553
554
|
style?: string;
|
|
554
555
|
unicodeRange?: string;
|
|
555
|
-
variant?: string;
|
|
556
556
|
weight?: string;
|
|
557
557
|
}
|
|
558
558
|
|
|
@@ -1018,27 +1018,16 @@ interface NavigationPreloadState {
|
|
|
1018
1018
|
headerValue?: string;
|
|
1019
1019
|
}
|
|
1020
1020
|
|
|
1021
|
-
interface NotificationAction {
|
|
1022
|
-
action: string;
|
|
1023
|
-
icon?: string;
|
|
1024
|
-
title: string;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
1021
|
interface NotificationOptions {
|
|
1028
|
-
actions?: NotificationAction[];
|
|
1029
1022
|
badge?: string;
|
|
1030
1023
|
body?: string;
|
|
1031
1024
|
data?: any;
|
|
1032
1025
|
dir?: NotificationDirection;
|
|
1033
1026
|
icon?: string;
|
|
1034
|
-
image?: string;
|
|
1035
1027
|
lang?: string;
|
|
1036
|
-
renotify?: boolean;
|
|
1037
1028
|
requireInteraction?: boolean;
|
|
1038
1029
|
silent?: boolean | null;
|
|
1039
1030
|
tag?: string;
|
|
1040
|
-
timestamp?: EpochTimeStamp;
|
|
1041
|
-
vibrate?: VibratePattern;
|
|
1042
1031
|
}
|
|
1043
1032
|
|
|
1044
1033
|
interface OfflineAudioCompletionEventInit extends EventInit {
|
|
@@ -1348,16 +1337,21 @@ interface RTCDtlsFingerprint {
|
|
|
1348
1337
|
|
|
1349
1338
|
interface RTCEncodedAudioFrameMetadata {
|
|
1350
1339
|
contributingSources?: number[];
|
|
1340
|
+
payloadType?: number;
|
|
1341
|
+
sequenceNumber?: number;
|
|
1351
1342
|
synchronizationSource?: number;
|
|
1352
1343
|
}
|
|
1353
1344
|
|
|
1354
1345
|
interface RTCEncodedVideoFrameMetadata {
|
|
1346
|
+
contributingSources?: number[];
|
|
1355
1347
|
dependencies?: number[];
|
|
1356
1348
|
frameId?: number;
|
|
1357
1349
|
height?: number;
|
|
1350
|
+
payloadType?: number;
|
|
1358
1351
|
spatialIndex?: number;
|
|
1359
1352
|
synchronizationSource?: number;
|
|
1360
1353
|
temporalIndex?: number;
|
|
1354
|
+
timestamp?: number;
|
|
1361
1355
|
width?: number;
|
|
1362
1356
|
}
|
|
1363
1357
|
|
|
@@ -1691,6 +1685,7 @@ interface RequestInit {
|
|
|
1691
1685
|
method?: string;
|
|
1692
1686
|
/** A string to indicate whether the request will use CORS, or will be restricted to same-origin URLs. Sets request's mode. */
|
|
1693
1687
|
mode?: RequestMode;
|
|
1688
|
+
priority?: RequestPriority;
|
|
1694
1689
|
/** A string indicating whether request follows redirects, results in an error upon encountering a redirect, or returns the redirect (in an opaque fashion). Sets request's redirect. */
|
|
1695
1690
|
redirect?: RequestRedirect;
|
|
1696
1691
|
/** A string whose value is a same-origin URL, "about:client", or the empty string, to set request's referrer. */
|
|
@@ -2138,7 +2133,7 @@ interface WebTransportOptions {
|
|
|
2138
2133
|
}
|
|
2139
2134
|
|
|
2140
2135
|
interface WebTransportSendStreamOptions {
|
|
2141
|
-
sendOrder?: number
|
|
2136
|
+
sendOrder?: number;
|
|
2142
2137
|
}
|
|
2143
2138
|
|
|
2144
2139
|
interface WheelEventInit extends MouseEventInit {
|
|
@@ -2224,6 +2219,8 @@ interface ARIAMixin {
|
|
|
2224
2219
|
ariaColSpan: string | null;
|
|
2225
2220
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
|
|
2226
2221
|
ariaCurrent: string | null;
|
|
2222
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
|
|
2223
|
+
ariaDescription: string | null;
|
|
2227
2224
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
|
|
2228
2225
|
ariaDisabled: string | null;
|
|
2229
2226
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
|
|
@@ -2534,7 +2531,9 @@ declare var AnimationEvent: {
|
|
|
2534
2531
|
};
|
|
2535
2532
|
|
|
2536
2533
|
interface AnimationFrameProvider {
|
|
2534
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
|
|
2537
2535
|
cancelAnimationFrame(handle: number): void;
|
|
2536
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
|
|
2538
2537
|
requestAnimationFrame(callback: FrameRequestCallback): number;
|
|
2539
2538
|
}
|
|
2540
2539
|
|
|
@@ -2951,8 +2950,11 @@ declare var AuthenticatorAssertionResponse: {
|
|
|
2951
2950
|
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
|
|
2952
2951
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject) */
|
|
2953
2952
|
readonly attestationObject: ArrayBuffer;
|
|
2953
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getAuthenticatorData) */
|
|
2954
2954
|
getAuthenticatorData(): ArrayBuffer;
|
|
2955
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKey) */
|
|
2955
2956
|
getPublicKey(): ArrayBuffer | null;
|
|
2957
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKeyAlgorithm) */
|
|
2956
2958
|
getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
|
|
2957
2959
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getTransports) */
|
|
2958
2960
|
getTransports(): string[];
|
|
@@ -3072,6 +3074,7 @@ declare var BaseAudioContext: {
|
|
|
3072
3074
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
|
|
3073
3075
|
*/
|
|
3074
3076
|
interface BeforeUnloadEvent extends Event {
|
|
3077
|
+
/** @deprecated */
|
|
3075
3078
|
returnValue: any;
|
|
3076
3079
|
}
|
|
3077
3080
|
|
|
@@ -3381,6 +3384,8 @@ interface CSSImportRule extends CSSRule {
|
|
|
3381
3384
|
readonly media: MediaList;
|
|
3382
3385
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet) */
|
|
3383
3386
|
readonly styleSheet: CSSStyleSheet | null;
|
|
3387
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText) */
|
|
3388
|
+
readonly supportsText: string | null;
|
|
3384
3389
|
}
|
|
3385
3390
|
|
|
3386
3391
|
declare var CSSImportRule: {
|
|
@@ -3729,6 +3734,8 @@ interface CSSRule {
|
|
|
3729
3734
|
readonly KEYFRAMES_RULE: 7;
|
|
3730
3735
|
readonly KEYFRAME_RULE: 8;
|
|
3731
3736
|
readonly SUPPORTS_RULE: 12;
|
|
3737
|
+
readonly COUNTER_STYLE_RULE: 11;
|
|
3738
|
+
readonly FONT_FEATURE_VALUES_RULE: 14;
|
|
3732
3739
|
}
|
|
3733
3740
|
|
|
3734
3741
|
declare var CSSRule: {
|
|
@@ -3744,6 +3751,8 @@ declare var CSSRule: {
|
|
|
3744
3751
|
readonly KEYFRAMES_RULE: 7;
|
|
3745
3752
|
readonly KEYFRAME_RULE: 8;
|
|
3746
3753
|
readonly SUPPORTS_RULE: 12;
|
|
3754
|
+
readonly COUNTER_STYLE_RULE: 11;
|
|
3755
|
+
readonly FONT_FEATURE_VALUES_RULE: 14;
|
|
3747
3756
|
};
|
|
3748
3757
|
|
|
3749
3758
|
/**
|
|
@@ -4095,6 +4104,9 @@ interface CSSStyleDeclaration {
|
|
|
4095
4104
|
cssText: string;
|
|
4096
4105
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
|
|
4097
4106
|
cursor: string;
|
|
4107
|
+
cx: string;
|
|
4108
|
+
cy: string;
|
|
4109
|
+
d: string;
|
|
4098
4110
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */
|
|
4099
4111
|
direction: string;
|
|
4100
4112
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/display) */
|
|
@@ -4348,6 +4360,8 @@ interface CSSStyleDeclaration {
|
|
|
4348
4360
|
offsetDistance: string;
|
|
4349
4361
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
|
|
4350
4362
|
offsetPath: string;
|
|
4363
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-position) */
|
|
4364
|
+
offsetPosition: string;
|
|
4351
4365
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
|
|
4352
4366
|
offsetRotate: string;
|
|
4353
4367
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
|
|
@@ -4440,6 +4454,7 @@ interface CSSStyleDeclaration {
|
|
|
4440
4454
|
printColorAdjust: string;
|
|
4441
4455
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
4442
4456
|
quotes: string;
|
|
4457
|
+
r: string;
|
|
4443
4458
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
|
|
4444
4459
|
resize: string;
|
|
4445
4460
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */
|
|
@@ -4450,6 +4465,8 @@ interface CSSStyleDeclaration {
|
|
|
4450
4465
|
rowGap: string;
|
|
4451
4466
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
|
|
4452
4467
|
rubyPosition: string;
|
|
4468
|
+
rx: string;
|
|
4469
|
+
ry: string;
|
|
4453
4470
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
|
|
4454
4471
|
scale: string;
|
|
4455
4472
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */
|
|
@@ -4504,8 +4521,12 @@ interface CSSStyleDeclaration {
|
|
|
4504
4521
|
scrollSnapStop: string;
|
|
4505
4522
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */
|
|
4506
4523
|
scrollSnapType: string;
|
|
4524
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-color) */
|
|
4525
|
+
scrollbarColor: string;
|
|
4507
4526
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */
|
|
4508
4527
|
scrollbarGutter: string;
|
|
4528
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-width) */
|
|
4529
|
+
scrollbarWidth: string;
|
|
4509
4530
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */
|
|
4510
4531
|
shapeImageThreshold: string;
|
|
4511
4532
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */
|
|
@@ -4570,6 +4591,8 @@ interface CSSStyleDeclaration {
|
|
|
4570
4591
|
textUnderlineOffset: string;
|
|
4571
4592
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-position) */
|
|
4572
4593
|
textUnderlinePosition: string;
|
|
4594
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
|
|
4595
|
+
textWrap: string;
|
|
4573
4596
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
|
|
4574
4597
|
top: string;
|
|
4575
4598
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
|
|
@@ -4598,6 +4621,7 @@ interface CSSStyleDeclaration {
|
|
|
4598
4621
|
unicodeBidi: string;
|
|
4599
4622
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */
|
|
4600
4623
|
userSelect: string;
|
|
4624
|
+
vectorEffect: string;
|
|
4601
4625
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
|
|
4602
4626
|
verticalAlign: string;
|
|
4603
4627
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
|
|
@@ -4880,7 +4904,11 @@ interface CSSStyleDeclaration {
|
|
|
4880
4904
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
|
|
4881
4905
|
*/
|
|
4882
4906
|
webkitMaskClip: string;
|
|
4883
|
-
/**
|
|
4907
|
+
/**
|
|
4908
|
+
* @deprecated This is a legacy alias of `maskComposite`.
|
|
4909
|
+
*
|
|
4910
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite)
|
|
4911
|
+
*/
|
|
4884
4912
|
webkitMaskComposite: string;
|
|
4885
4913
|
/**
|
|
4886
4914
|
* @deprecated This is a legacy alias of `maskImage`.
|
|
@@ -5010,14 +5038,12 @@ interface CSSStyleDeclaration {
|
|
|
5010
5038
|
wordBreak: string;
|
|
5011
5039
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
|
|
5012
5040
|
wordSpacing: string;
|
|
5013
|
-
/**
|
|
5014
|
-
* @deprecated
|
|
5015
|
-
*
|
|
5016
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
|
|
5017
|
-
*/
|
|
5041
|
+
/** @deprecated */
|
|
5018
5042
|
wordWrap: string;
|
|
5019
5043
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
|
|
5020
5044
|
writingMode: string;
|
|
5045
|
+
x: string;
|
|
5046
|
+
y: string;
|
|
5021
5047
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
|
5022
5048
|
zIndex: string;
|
|
5023
5049
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
|
@@ -5510,6 +5536,10 @@ interface CanvasTextDrawingStyles {
|
|
|
5510
5536
|
font: string;
|
|
5511
5537
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
|
5512
5538
|
fontKerning: CanvasFontKerning;
|
|
5539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontStretch) */
|
|
5540
|
+
fontStretch: CanvasFontStretch;
|
|
5541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontVariantCaps) */
|
|
5542
|
+
fontVariantCaps: CanvasFontVariantCaps;
|
|
5513
5543
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
|
5514
5544
|
letterSpacing: string;
|
|
5515
5545
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
|
@@ -5739,7 +5769,7 @@ declare var Comment: {
|
|
|
5739
5769
|
*
|
|
5740
5770
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent)
|
|
5741
5771
|
*/
|
|
5742
|
-
interface CompositionEvent
|
|
5772
|
+
interface CompositionEvent extends UIEvent {
|
|
5743
5773
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data) */
|
|
5744
5774
|
readonly data: string;
|
|
5745
5775
|
/**
|
|
@@ -7480,7 +7510,7 @@ declare var DocumentType: {
|
|
|
7480
7510
|
*
|
|
7481
7511
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DragEvent)
|
|
7482
7512
|
*/
|
|
7483
|
-
interface DragEvent
|
|
7513
|
+
interface DragEvent extends MouseEvent {
|
|
7484
7514
|
/**
|
|
7485
7515
|
* Returns the DataTransfer object for the event.
|
|
7486
7516
|
*
|
|
@@ -7697,6 +7727,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7697
7727
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attachShadow)
|
|
7698
7728
|
*/
|
|
7699
7729
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
7730
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/checkVisibility) */
|
|
7700
7731
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
7701
7732
|
/**
|
|
7702
7733
|
* Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise.
|
|
@@ -8000,7 +8031,7 @@ declare var ErrorEvent: {
|
|
|
8000
8031
|
*
|
|
8001
8032
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event)
|
|
8002
8033
|
*/
|
|
8003
|
-
interface Event
|
|
8034
|
+
interface Event {
|
|
8004
8035
|
/**
|
|
8005
8036
|
* Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
|
|
8006
8037
|
*
|
|
@@ -8030,7 +8061,7 @@ interface Event<T extends EventTarget = EventTarget> {
|
|
|
8030
8061
|
*
|
|
8031
8062
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/currentTarget)
|
|
8032
8063
|
*/
|
|
8033
|
-
readonly currentTarget:
|
|
8064
|
+
readonly currentTarget: EventTarget | null;
|
|
8034
8065
|
/**
|
|
8035
8066
|
* Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
|
|
8036
8067
|
*
|
|
@@ -8066,7 +8097,7 @@ interface Event<T extends EventTarget = EventTarget> {
|
|
|
8066
8097
|
*
|
|
8067
8098
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)
|
|
8068
8099
|
*/
|
|
8069
|
-
readonly target:
|
|
8100
|
+
readonly target: EventTarget | null;
|
|
8070
8101
|
/**
|
|
8071
8102
|
* Returns the event's timestamp as the number of milliseconds measured relative to the time origin.
|
|
8072
8103
|
*
|
|
@@ -8134,12 +8165,12 @@ declare var EventCounts: {
|
|
|
8134
8165
|
new(): EventCounts;
|
|
8135
8166
|
};
|
|
8136
8167
|
|
|
8137
|
-
interface EventListener
|
|
8138
|
-
(evt: Event
|
|
8168
|
+
interface EventListener {
|
|
8169
|
+
(evt: Event): void;
|
|
8139
8170
|
}
|
|
8140
8171
|
|
|
8141
|
-
interface EventListenerObject
|
|
8142
|
-
handleEvent(object: Event
|
|
8172
|
+
interface EventListenerObject {
|
|
8173
|
+
handleEvent(object: Event): void;
|
|
8143
8174
|
}
|
|
8144
8175
|
|
|
8145
8176
|
interface EventSourceEventMap {
|
|
@@ -8222,7 +8253,7 @@ interface EventTarget {
|
|
|
8222
8253
|
*
|
|
8223
8254
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)
|
|
8224
8255
|
*/
|
|
8225
|
-
addEventListener(type: string, callback: EventListenerOrEventListenerObject
|
|
8256
|
+
addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;
|
|
8226
8257
|
/**
|
|
8227
8258
|
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
|
8228
8259
|
*
|
|
@@ -8234,7 +8265,7 @@ interface EventTarget {
|
|
|
8234
8265
|
*
|
|
8235
8266
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/removeEventListener)
|
|
8236
8267
|
*/
|
|
8237
|
-
removeEventListener(type: string, callback: EventListenerOrEventListenerObject
|
|
8268
|
+
removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void;
|
|
8238
8269
|
}
|
|
8239
8270
|
|
|
8240
8271
|
declare var EventTarget: {
|
|
@@ -8342,7 +8373,11 @@ interface FileReader extends EventTarget {
|
|
|
8342
8373
|
abort(): void;
|
|
8343
8374
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsArrayBuffer) */
|
|
8344
8375
|
readAsArrayBuffer(blob: Blob): void;
|
|
8345
|
-
/**
|
|
8376
|
+
/**
|
|
8377
|
+
* @deprecated
|
|
8378
|
+
*
|
|
8379
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsBinaryString)
|
|
8380
|
+
*/
|
|
8346
8381
|
readAsBinaryString(blob: Blob): void;
|
|
8347
8382
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL) */
|
|
8348
8383
|
readAsDataURL(blob: Blob): void;
|
|
@@ -8519,7 +8554,7 @@ declare var FileSystemWritableFileStream: {
|
|
|
8519
8554
|
*
|
|
8520
8555
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent)
|
|
8521
8556
|
*/
|
|
8522
|
-
interface FocusEvent
|
|
8557
|
+
interface FocusEvent extends UIEvent {
|
|
8523
8558
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget) */
|
|
8524
8559
|
readonly relatedTarget: EventTarget | null;
|
|
8525
8560
|
}
|
|
@@ -8553,8 +8588,6 @@ interface FontFace {
|
|
|
8553
8588
|
style: string;
|
|
8554
8589
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange) */
|
|
8555
8590
|
unicodeRange: string;
|
|
8556
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variant) */
|
|
8557
|
-
variant: string;
|
|
8558
8591
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/weight) */
|
|
8559
8592
|
weight: string;
|
|
8560
8593
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/load) */
|
|
@@ -8689,8 +8722,6 @@ interface Gamepad {
|
|
|
8689
8722
|
readonly buttons: ReadonlyArray<GamepadButton>;
|
|
8690
8723
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected) */
|
|
8691
8724
|
readonly connected: boolean;
|
|
8692
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/hapticActuators) */
|
|
8693
|
-
readonly hapticActuators: ReadonlyArray<GamepadHapticActuator>;
|
|
8694
8725
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/id) */
|
|
8695
8726
|
readonly id: string;
|
|
8696
8727
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/index) */
|
|
@@ -8857,6 +8888,7 @@ interface GlobalEventHandlersEventMap {
|
|
|
8857
8888
|
"animationstart": AnimationEvent;
|
|
8858
8889
|
"auxclick": MouseEvent;
|
|
8859
8890
|
"beforeinput": InputEvent;
|
|
8891
|
+
"beforetoggle": Event;
|
|
8860
8892
|
"blur": FocusEvent;
|
|
8861
8893
|
"cancel": Event;
|
|
8862
8894
|
"canplay": Event;
|
|
@@ -8970,8 +9002,10 @@ interface GlobalEventHandlers {
|
|
|
8970
9002
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
8971
9003
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
|
|
8972
9004
|
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
8973
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9005
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
|
|
8974
9006
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
9007
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
|
|
9008
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
8975
9009
|
/**
|
|
8976
9010
|
* Fires when the object loses the input focus.
|
|
8977
9011
|
* @param ev The focus event.
|
|
@@ -9109,7 +9143,7 @@ interface GlobalEventHandlers {
|
|
|
9109
9143
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
9110
9144
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
|
|
9111
9145
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
9112
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9146
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
|
|
9113
9147
|
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9114
9148
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
|
|
9115
9149
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -9163,7 +9197,7 @@ interface GlobalEventHandlers {
|
|
|
9163
9197
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
|
|
9164
9198
|
*/
|
|
9165
9199
|
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9166
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9200
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
|
|
9167
9201
|
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
9168
9202
|
/**
|
|
9169
9203
|
* Fires when the user clicks the object with either mouse button.
|
|
@@ -9954,6 +9988,7 @@ declare var HTMLDataListElement: {
|
|
|
9954
9988
|
|
|
9955
9989
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement) */
|
|
9956
9990
|
interface HTMLDetailsElement extends HTMLElement {
|
|
9991
|
+
name: string;
|
|
9957
9992
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open) */
|
|
9958
9993
|
open: boolean;
|
|
9959
9994
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDetailsElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10098,6 +10133,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10098
10133
|
spellcheck: boolean;
|
|
10099
10134
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/title) */
|
|
10100
10135
|
title: string;
|
|
10136
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
|
|
10101
10137
|
translate: boolean;
|
|
10102
10138
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
|
|
10103
10139
|
attachInternals(): ElementInternals;
|
|
@@ -10843,6 +10879,8 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
10843
10879
|
readonly currentSrc: string;
|
|
10844
10880
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decoding) */
|
|
10845
10881
|
decoding: "async" | "sync" | "auto";
|
|
10882
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/fetchPriority) */
|
|
10883
|
+
fetchPriority: string;
|
|
10846
10884
|
/**
|
|
10847
10885
|
* Sets or retrieves the height of the object.
|
|
10848
10886
|
*
|
|
@@ -10977,6 +11015,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10977
11015
|
/** Sets or retrieves the initial contents of the object. */
|
|
10978
11016
|
defaultValue: string;
|
|
10979
11017
|
dirName: string;
|
|
11018
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
|
10980
11019
|
disabled: boolean;
|
|
10981
11020
|
/**
|
|
10982
11021
|
* Returns a FileList object on a file type input object.
|
|
@@ -11022,11 +11061,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11022
11061
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
|
|
11023
11062
|
*/
|
|
11024
11063
|
height: number;
|
|
11025
|
-
/**
|
|
11026
|
-
* When set, overrides the rendering of checkbox controls so that the current value is not visible.
|
|
11027
|
-
*
|
|
11028
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/indeterminate)
|
|
11029
|
-
*/
|
|
11064
|
+
/** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
|
|
11030
11065
|
indeterminate: boolean;
|
|
11031
11066
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
|
|
11032
11067
|
readonly labels: NodeListOf<HTMLLabelElement> | null;
|
|
@@ -11275,9 +11310,19 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
11275
11310
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/crossOrigin) */
|
|
11276
11311
|
crossOrigin: string | null;
|
|
11277
11312
|
disabled: boolean;
|
|
11278
|
-
/**
|
|
11313
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority) */
|
|
11314
|
+
fetchPriority: string;
|
|
11315
|
+
/**
|
|
11316
|
+
* Sets or retrieves a destination URL or an anchor point.
|
|
11317
|
+
*
|
|
11318
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
|
|
11319
|
+
*/
|
|
11279
11320
|
href: string;
|
|
11280
|
-
/**
|
|
11321
|
+
/**
|
|
11322
|
+
* Sets or retrieves the language code of the object.
|
|
11323
|
+
*
|
|
11324
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
|
|
11325
|
+
*/
|
|
11281
11326
|
hreflang: string;
|
|
11282
11327
|
imageSizes: string;
|
|
11283
11328
|
imageSrcset: string;
|
|
@@ -11520,6 +11565,7 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11520
11565
|
preservesPitch: boolean;
|
|
11521
11566
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState) */
|
|
11522
11567
|
readonly readyState: number;
|
|
11568
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote) */
|
|
11523
11569
|
readonly remote: RemotePlayback;
|
|
11524
11570
|
/**
|
|
11525
11571
|
* Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.
|
|
@@ -11572,7 +11618,7 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
11572
11618
|
*/
|
|
11573
11619
|
load(): void;
|
|
11574
11620
|
/**
|
|
11575
|
-
* Pauses the current playback and sets paused to TRUE.
|
|
11621
|
+
* Pauses the current playback and sets paused to TRUE.
|
|
11576
11622
|
*
|
|
11577
11623
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause)
|
|
11578
11624
|
*/
|
|
@@ -12068,6 +12114,7 @@ declare var HTMLOptionsCollection: {
|
|
|
12068
12114
|
};
|
|
12069
12115
|
|
|
12070
12116
|
interface HTMLOrSVGElement {
|
|
12117
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */
|
|
12071
12118
|
autofocus: boolean;
|
|
12072
12119
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
|
|
12073
12120
|
readonly dataset: DOMStringMap;
|
|
@@ -12318,6 +12365,7 @@ interface HTMLScriptElement extends HTMLElement {
|
|
|
12318
12365
|
* @deprecated
|
|
12319
12366
|
*/
|
|
12320
12367
|
charset: string;
|
|
12368
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/crossOrigin) */
|
|
12321
12369
|
crossOrigin: string | null;
|
|
12322
12370
|
/** Sets or retrieves the status of the script. */
|
|
12323
12371
|
defer: boolean;
|
|
@@ -12326,6 +12374,7 @@ interface HTMLScriptElement extends HTMLElement {
|
|
|
12326
12374
|
* @deprecated
|
|
12327
12375
|
*/
|
|
12328
12376
|
event: string;
|
|
12377
|
+
fetchPriority: string;
|
|
12329
12378
|
/**
|
|
12330
12379
|
* Sets or retrieves the object that is bound to the event script.
|
|
12331
12380
|
* @deprecated
|
|
@@ -12492,6 +12541,8 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12492
12541
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)
|
|
12493
12542
|
*/
|
|
12494
12543
|
setCustomValidity(error: string): void;
|
|
12544
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker) */
|
|
12545
|
+
showPicker(): void;
|
|
12495
12546
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12496
12547
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
12497
12548
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -13145,6 +13196,7 @@ interface HTMLTemplateElement extends HTMLElement {
|
|
|
13145
13196
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
|
|
13146
13197
|
*/
|
|
13147
13198
|
readonly content: DocumentFragment;
|
|
13199
|
+
shadowRootMode: string;
|
|
13148
13200
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
13149
13201
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
13150
13202
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -13485,6 +13537,30 @@ declare var Headers: {
|
|
|
13485
13537
|
new(init?: HeadersInit): Headers;
|
|
13486
13538
|
};
|
|
13487
13539
|
|
|
13540
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight) */
|
|
13541
|
+
interface Highlight {
|
|
13542
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority) */
|
|
13543
|
+
priority: number;
|
|
13544
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/type) */
|
|
13545
|
+
type: HighlightType;
|
|
13546
|
+
forEach(callbackfn: (value: AbstractRange, key: AbstractRange, parent: Highlight) => void, thisArg?: any): void;
|
|
13547
|
+
}
|
|
13548
|
+
|
|
13549
|
+
declare var Highlight: {
|
|
13550
|
+
prototype: Highlight;
|
|
13551
|
+
new(...initialRanges: AbstractRange[]): Highlight;
|
|
13552
|
+
};
|
|
13553
|
+
|
|
13554
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HighlightRegistry) */
|
|
13555
|
+
interface HighlightRegistry {
|
|
13556
|
+
forEach(callbackfn: (value: Highlight, key: string, parent: HighlightRegistry) => void, thisArg?: any): void;
|
|
13557
|
+
}
|
|
13558
|
+
|
|
13559
|
+
declare var HighlightRegistry: {
|
|
13560
|
+
prototype: HighlightRegistry;
|
|
13561
|
+
new(): HighlightRegistry;
|
|
13562
|
+
};
|
|
13563
|
+
|
|
13488
13564
|
/**
|
|
13489
13565
|
* Allows manipulation of the browser session history, that is the pages visited in the tab or frame that the current page is loaded in.
|
|
13490
13566
|
*
|
|
@@ -14321,7 +14397,7 @@ declare var InputDeviceInfo: {
|
|
|
14321
14397
|
};
|
|
14322
14398
|
|
|
14323
14399
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent) */
|
|
14324
|
-
interface InputEvent
|
|
14400
|
+
interface InputEvent extends UIEvent {
|
|
14325
14401
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data) */
|
|
14326
14402
|
readonly data: string | null;
|
|
14327
14403
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer) */
|
|
@@ -14403,7 +14479,7 @@ interface KHR_parallel_shader_compile {
|
|
|
14403
14479
|
*
|
|
14404
14480
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent)
|
|
14405
14481
|
*/
|
|
14406
|
-
interface KeyboardEvent
|
|
14482
|
+
interface KeyboardEvent extends UIEvent {
|
|
14407
14483
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/altKey) */
|
|
14408
14484
|
readonly altKey: boolean;
|
|
14409
14485
|
/**
|
|
@@ -14436,7 +14512,11 @@ interface KeyboardEvent<T extends EventTarget = EventTarget> extends UIEvent<T>
|
|
|
14436
14512
|
readonly shiftKey: boolean;
|
|
14437
14513
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/getModifierState) */
|
|
14438
14514
|
getModifierState(keyArg: string): boolean;
|
|
14439
|
-
/**
|
|
14515
|
+
/**
|
|
14516
|
+
* @deprecated
|
|
14517
|
+
*
|
|
14518
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/initKeyboardEvent)
|
|
14519
|
+
*/
|
|
14440
14520
|
initKeyboardEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, keyArg?: string, locationArg?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean, metaKey?: boolean): void;
|
|
14441
14521
|
readonly DOM_KEY_LOCATION_STANDARD: 0x00;
|
|
14442
14522
|
readonly DOM_KEY_LOCATION_LEFT: 0x01;
|
|
@@ -14659,7 +14739,7 @@ declare var MIDIAccess: {
|
|
|
14659
14739
|
*/
|
|
14660
14740
|
interface MIDIConnectionEvent extends Event {
|
|
14661
14741
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
|
|
14662
|
-
readonly port: MIDIPort;
|
|
14742
|
+
readonly port: MIDIPort | null;
|
|
14663
14743
|
}
|
|
14664
14744
|
|
|
14665
14745
|
declare var MIDIConnectionEvent: {
|
|
@@ -14668,7 +14748,7 @@ declare var MIDIConnectionEvent: {
|
|
|
14668
14748
|
};
|
|
14669
14749
|
|
|
14670
14750
|
interface MIDIInputEventMap extends MIDIPortEventMap {
|
|
14671
|
-
"midimessage":
|
|
14751
|
+
"midimessage": MIDIMessageEvent;
|
|
14672
14752
|
}
|
|
14673
14753
|
|
|
14674
14754
|
/**
|
|
@@ -14678,7 +14758,7 @@ interface MIDIInputEventMap extends MIDIPortEventMap {
|
|
|
14678
14758
|
*/
|
|
14679
14759
|
interface MIDIInput extends MIDIPort {
|
|
14680
14760
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIInput/midimessage_event) */
|
|
14681
|
-
onmidimessage: ((this: MIDIInput, ev:
|
|
14761
|
+
onmidimessage: ((this: MIDIInput, ev: MIDIMessageEvent) => any) | null;
|
|
14682
14762
|
addEventListener<K extends keyof MIDIInputEventMap>(type: K, listener: (this: MIDIInput, ev: MIDIInputEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
14683
14763
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
14684
14764
|
removeEventListener<K extends keyof MIDIInputEventMap>(type: K, listener: (this: MIDIInput, ev: MIDIInputEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -14711,7 +14791,7 @@ declare var MIDIInputMap: {
|
|
|
14711
14791
|
*/
|
|
14712
14792
|
interface MIDIMessageEvent extends Event {
|
|
14713
14793
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
|
|
14714
|
-
readonly data: Uint8Array;
|
|
14794
|
+
readonly data: Uint8Array | null;
|
|
14715
14795
|
}
|
|
14716
14796
|
|
|
14717
14797
|
declare var MIDIMessageEvent: {
|
|
@@ -14753,7 +14833,7 @@ declare var MIDIOutputMap: {
|
|
|
14753
14833
|
};
|
|
14754
14834
|
|
|
14755
14835
|
interface MIDIPortEventMap {
|
|
14756
|
-
"statechange":
|
|
14836
|
+
"statechange": MIDIConnectionEvent;
|
|
14757
14837
|
}
|
|
14758
14838
|
|
|
14759
14839
|
/**
|
|
@@ -14771,7 +14851,7 @@ interface MIDIPort extends EventTarget {
|
|
|
14771
14851
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/name) */
|
|
14772
14852
|
readonly name: string | null;
|
|
14773
14853
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/statechange_event) */
|
|
14774
|
-
onstatechange: ((this: MIDIPort, ev:
|
|
14854
|
+
onstatechange: ((this: MIDIPort, ev: MIDIConnectionEvent) => any) | null;
|
|
14775
14855
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/state) */
|
|
14776
14856
|
readonly state: MIDIPortDeviceState;
|
|
14777
14857
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/type) */
|
|
@@ -15610,7 +15690,7 @@ declare var MimeTypeArray: {
|
|
|
15610
15690
|
*
|
|
15611
15691
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent)
|
|
15612
15692
|
*/
|
|
15613
|
-
interface MouseEvent
|
|
15693
|
+
interface MouseEvent extends UIEvent {
|
|
15614
15694
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/altKey) */
|
|
15615
15695
|
readonly altKey: boolean;
|
|
15616
15696
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/button) */
|
|
@@ -15623,6 +15703,10 @@ interface MouseEvent<T extends EventTarget = EventTarget> extends UIEvent<T> {
|
|
|
15623
15703
|
readonly clientY: number;
|
|
15624
15704
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/ctrlKey) */
|
|
15625
15705
|
readonly ctrlKey: boolean;
|
|
15706
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/layerX) */
|
|
15707
|
+
readonly layerX: number;
|
|
15708
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/layerY) */
|
|
15709
|
+
readonly layerY: number;
|
|
15626
15710
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/metaKey) */
|
|
15627
15711
|
readonly metaKey: boolean;
|
|
15628
15712
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX) */
|
|
@@ -16428,6 +16512,8 @@ interface Notification extends EventTarget {
|
|
|
16428
16512
|
onerror: ((this: Notification, ev: Event) => any) | null;
|
|
16429
16513
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/show_event) */
|
|
16430
16514
|
onshow: ((this: Notification, ev: Event) => any) | null;
|
|
16515
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction) */
|
|
16516
|
+
readonly requireInteraction: boolean;
|
|
16431
16517
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent) */
|
|
16432
16518
|
readonly silent: boolean | null;
|
|
16433
16519
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag) */
|
|
@@ -16695,7 +16781,7 @@ declare var OscillatorNode: {
|
|
|
16695
16781
|
};
|
|
16696
16782
|
|
|
16697
16783
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError) */
|
|
16698
|
-
interface OverconstrainedError extends
|
|
16784
|
+
interface OverconstrainedError extends DOMException {
|
|
16699
16785
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint) */
|
|
16700
16786
|
readonly constraint: string;
|
|
16701
16787
|
}
|
|
@@ -17611,7 +17697,7 @@ declare var PluginArray: {
|
|
|
17611
17697
|
*
|
|
17612
17698
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent)
|
|
17613
17699
|
*/
|
|
17614
|
-
interface PointerEvent
|
|
17700
|
+
interface PointerEvent extends MouseEvent {
|
|
17615
17701
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height) */
|
|
17616
17702
|
readonly height: number;
|
|
17617
17703
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary) */
|
|
@@ -17638,6 +17724,7 @@ interface PointerEvent<T extends EventTarget = EventTarget> extends MouseEvent<T
|
|
|
17638
17724
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/getCoalescedEvents)
|
|
17639
17725
|
*/
|
|
17640
17726
|
getCoalescedEvents(): PointerEvent[];
|
|
17727
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/getPredictedEvents) */
|
|
17641
17728
|
getPredictedEvents(): PointerEvent[];
|
|
17642
17729
|
}
|
|
17643
17730
|
|
|
@@ -17739,6 +17826,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
17739
17826
|
declare var PublicKeyCredential: {
|
|
17740
17827
|
prototype: PublicKeyCredential;
|
|
17741
17828
|
new(): PublicKeyCredential;
|
|
17829
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
|
|
17742
17830
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
17743
17831
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
|
|
17744
17832
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
@@ -18107,7 +18195,7 @@ interface RTCPeerConnectionEventMap {
|
|
|
18107
18195
|
"connectionstatechange": Event;
|
|
18108
18196
|
"datachannel": RTCDataChannelEvent;
|
|
18109
18197
|
"icecandidate": RTCPeerConnectionIceEvent;
|
|
18110
|
-
"icecandidateerror":
|
|
18198
|
+
"icecandidateerror": RTCPeerConnectionIceErrorEvent;
|
|
18111
18199
|
"iceconnectionstatechange": Event;
|
|
18112
18200
|
"icegatheringstatechange": Event;
|
|
18113
18201
|
"negotiationneeded": Event;
|
|
@@ -18142,7 +18230,7 @@ interface RTCPeerConnection extends EventTarget {
|
|
|
18142
18230
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidate_event) */
|
|
18143
18231
|
onicecandidate: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any) | null;
|
|
18144
18232
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidateerror_event) */
|
|
18145
|
-
onicecandidateerror: ((this: RTCPeerConnection, ev:
|
|
18233
|
+
onicecandidateerror: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceErrorEvent) => any) | null;
|
|
18146
18234
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceconnectionstatechange_event) */
|
|
18147
18235
|
oniceconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;
|
|
18148
18236
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icegatheringstatechange_event) */
|
|
@@ -20084,6 +20172,8 @@ declare var SVGGraphicsElement: {
|
|
|
20084
20172
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
|
|
20085
20173
|
*/
|
|
20086
20174
|
interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
|
|
20175
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
|
|
20176
|
+
crossOrigin: string | null;
|
|
20087
20177
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
|
|
20088
20178
|
readonly height: SVGAnimatedLength;
|
|
20089
20179
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio) */
|
|
@@ -21227,6 +21317,7 @@ interface ServiceWorkerContainer extends EventTarget {
|
|
|
21227
21317
|
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
|
|
21228
21318
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
|
|
21229
21319
|
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
|
|
21320
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
|
|
21230
21321
|
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
|
|
21231
21322
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
|
|
21232
21323
|
readonly ready: Promise<ServiceWorkerRegistration>;
|
|
@@ -22432,7 +22523,7 @@ declare var Touch: {
|
|
|
22432
22523
|
*
|
|
22433
22524
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent)
|
|
22434
22525
|
*/
|
|
22435
|
-
interface TouchEvent
|
|
22526
|
+
interface TouchEvent extends UIEvent {
|
|
22436
22527
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/altKey) */
|
|
22437
22528
|
readonly altKey: boolean;
|
|
22438
22529
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches) */
|
|
@@ -22580,7 +22671,7 @@ declare var TreeWalker: {
|
|
|
22580
22671
|
*
|
|
22581
22672
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent)
|
|
22582
22673
|
*/
|
|
22583
|
-
interface UIEvent
|
|
22674
|
+
interface UIEvent extends Event {
|
|
22584
22675
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/detail) */
|
|
22585
22676
|
readonly detail: number;
|
|
22586
22677
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view) */
|
|
@@ -23167,13 +23258,13 @@ interface WEBGL_lose_context {
|
|
|
23167
23258
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw) */
|
|
23168
23259
|
interface WEBGL_multi_draw {
|
|
23169
23260
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL) */
|
|
23170
|
-
multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array | GLint[], firstsOffset:
|
|
23261
|
+
multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array | GLint[], firstsOffset: number, countsList: Int32Array | GLsizei[], countsOffset: number, instanceCountsList: Int32Array | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;
|
|
23171
23262
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL) */
|
|
23172
|
-
multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array | GLint[], firstsOffset:
|
|
23263
|
+
multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array | GLint[], firstsOffset: number, countsList: Int32Array | GLsizei[], countsOffset: number, drawcount: GLsizei): void;
|
|
23173
23264
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL) */
|
|
23174
|
-
multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array | GLsizei[], countsOffset:
|
|
23265
|
+
multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array | GLsizei[], offsetsOffset: number, instanceCountsList: Int32Array | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;
|
|
23175
23266
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL) */
|
|
23176
|
-
multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array | GLsizei[], countsOffset:
|
|
23267
|
+
multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array | GLsizei[], offsetsOffset: number, drawcount: GLsizei): void;
|
|
23177
23268
|
}
|
|
23178
23269
|
|
|
23179
23270
|
/**
|
|
@@ -23256,7 +23347,6 @@ declare var WebGL2RenderingContext: {
|
|
|
23256
23347
|
readonly STENCIL: 0x1802;
|
|
23257
23348
|
readonly RED: 0x1903;
|
|
23258
23349
|
readonly RGB8: 0x8051;
|
|
23259
|
-
readonly RGBA8: 0x8058;
|
|
23260
23350
|
readonly RGB10_A2: 0x8059;
|
|
23261
23351
|
readonly TEXTURE_BINDING_3D: 0x806A;
|
|
23262
23352
|
readonly UNPACK_SKIP_IMAGES: 0x806D;
|
|
@@ -23767,6 +23857,7 @@ declare var WebGL2RenderingContext: {
|
|
|
23767
23857
|
readonly RENDERBUFFER: 0x8D41;
|
|
23768
23858
|
readonly RGBA4: 0x8056;
|
|
23769
23859
|
readonly RGB5_A1: 0x8057;
|
|
23860
|
+
readonly RGBA8: 0x8058;
|
|
23770
23861
|
readonly RGB565: 0x8D62;
|
|
23771
23862
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
23772
23863
|
readonly STENCIL_INDEX8: 0x8D48;
|
|
@@ -23825,19 +23916,19 @@ interface WebGL2RenderingContextBase {
|
|
|
23825
23916
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
|
|
23826
23917
|
clearBufferfi(buffer: GLenum, drawbuffer: GLint, depth: GLfloat, stencil: GLint): void;
|
|
23827
23918
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
|
|
23828
|
-
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Float32List, srcOffset?:
|
|
23919
|
+
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Float32List, srcOffset?: number): void;
|
|
23829
23920
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
|
|
23830
|
-
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Int32List, srcOffset?:
|
|
23921
|
+
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Int32List, srcOffset?: number): void;
|
|
23831
23922
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
|
|
23832
|
-
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?:
|
|
23923
|
+
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;
|
|
23833
23924
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */
|
|
23834
23925
|
clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
|
|
23835
23926
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */
|
|
23836
23927
|
compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
|
|
23837
|
-
compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?:
|
|
23928
|
+
compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
|
|
23838
23929
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */
|
|
23839
23930
|
compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;
|
|
23840
|
-
compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, srcData: ArrayBufferView, srcOffset?:
|
|
23931
|
+
compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
|
|
23841
23932
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyBufferSubData) */
|
|
23842
23933
|
copyBufferSubData(readTarget: GLenum, writeTarget: GLenum, readOffset: GLintptr, writeOffset: GLintptr, size: GLsizeiptr): void;
|
|
23843
23934
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyTexSubImage3D) */
|
|
@@ -23883,7 +23974,7 @@ interface WebGL2RenderingContextBase {
|
|
|
23883
23974
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */
|
|
23884
23975
|
getActiveUniforms(program: WebGLProgram, uniformIndices: GLuint[], pname: GLenum): any;
|
|
23885
23976
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getBufferSubData) */
|
|
23886
|
-
getBufferSubData(target: GLenum, srcByteOffset: GLintptr, dstBuffer: ArrayBufferView, dstOffset?:
|
|
23977
|
+
getBufferSubData(target: GLenum, srcByteOffset: GLintptr, dstBuffer: ArrayBufferView, dstOffset?: number, length?: GLuint): void;
|
|
23887
23978
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getFragDataLocation) */
|
|
23888
23979
|
getFragDataLocation(program: WebGLProgram, name: string): GLint;
|
|
23889
23980
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getIndexedParameter) */
|
|
@@ -23934,7 +24025,7 @@ interface WebGL2RenderingContextBase {
|
|
|
23934
24025
|
texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;
|
|
23935
24026
|
texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
23936
24027
|
texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView | null): void;
|
|
23937
|
-
texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset:
|
|
24028
|
+
texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset: number): void;
|
|
23938
24029
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage2D) */
|
|
23939
24030
|
texStorage2D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;
|
|
23940
24031
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage3D) */
|
|
@@ -23942,39 +24033,39 @@ interface WebGL2RenderingContextBase {
|
|
|
23942
24033
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texSubImage3D) */
|
|
23943
24034
|
texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;
|
|
23944
24035
|
texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
23945
|
-
texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView | null, srcOffset?:
|
|
24036
|
+
texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView | null, srcOffset?: number): void;
|
|
23946
24037
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */
|
|
23947
24038
|
transformFeedbackVaryings(program: WebGLProgram, varyings: string[], bufferMode: GLenum): void;
|
|
23948
24039
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23949
24040
|
uniform1ui(location: WebGLUniformLocation | null, v0: GLuint): void;
|
|
23950
24041
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23951
|
-
uniform1uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?:
|
|
24042
|
+
uniform1uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23952
24043
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23953
24044
|
uniform2ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint): void;
|
|
23954
24045
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23955
|
-
uniform2uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?:
|
|
24046
|
+
uniform2uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23956
24047
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23957
24048
|
uniform3ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint): void;
|
|
23958
24049
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23959
|
-
uniform3uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?:
|
|
24050
|
+
uniform3uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23960
24051
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23961
24052
|
uniform4ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint, v3: GLuint): void;
|
|
23962
24053
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
|
|
23963
|
-
uniform4uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?:
|
|
24054
|
+
uniform4uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23964
24055
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformBlockBinding) */
|
|
23965
24056
|
uniformBlockBinding(program: WebGLProgram, uniformBlockIndex: GLuint, uniformBlockBinding: GLuint): void;
|
|
23966
24057
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23967
|
-
uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24058
|
+
uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23968
24059
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23969
|
-
uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24060
|
+
uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23970
24061
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23971
|
-
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24062
|
+
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23972
24063
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23973
|
-
uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24064
|
+
uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23974
24065
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23975
|
-
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24066
|
+
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23976
24067
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
|
|
23977
|
-
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24068
|
+
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
23978
24069
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribDivisor) */
|
|
23979
24070
|
vertexAttribDivisor(index: GLuint, divisor: GLuint): void;
|
|
23980
24071
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */
|
|
@@ -24001,7 +24092,6 @@ interface WebGL2RenderingContextBase {
|
|
|
24001
24092
|
readonly STENCIL: 0x1802;
|
|
24002
24093
|
readonly RED: 0x1903;
|
|
24003
24094
|
readonly RGB8: 0x8051;
|
|
24004
|
-
readonly RGBA8: 0x8058;
|
|
24005
24095
|
readonly RGB10_A2: 0x8059;
|
|
24006
24096
|
readonly TEXTURE_BINDING_3D: 0x806A;
|
|
24007
24097
|
readonly UNPACK_SKIP_IMAGES: 0x806D;
|
|
@@ -24258,54 +24348,54 @@ interface WebGL2RenderingContextOverloads {
|
|
|
24258
24348
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferData) */
|
|
24259
24349
|
bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;
|
|
24260
24350
|
bufferData(target: GLenum, srcData: AllowSharedBufferSource | null, usage: GLenum): void;
|
|
24261
|
-
bufferData(target: GLenum, srcData: ArrayBufferView, usage: GLenum, srcOffset:
|
|
24351
|
+
bufferData(target: GLenum, srcData: ArrayBufferView, usage: GLenum, srcOffset: number, length?: GLuint): void;
|
|
24262
24352
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferSubData) */
|
|
24263
24353
|
bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: AllowSharedBufferSource): void;
|
|
24264
|
-
bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: ArrayBufferView, srcOffset:
|
|
24354
|
+
bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: ArrayBufferView, srcOffset: number, length?: GLuint): void;
|
|
24265
24355
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
|
|
24266
24356
|
compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
|
|
24267
|
-
compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?:
|
|
24357
|
+
compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
|
|
24268
24358
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexSubImage2D) */
|
|
24269
24359
|
compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;
|
|
24270
|
-
compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, srcData: ArrayBufferView, srcOffset?:
|
|
24360
|
+
compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
|
|
24271
24361
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/readPixels) */
|
|
24272
24362
|
readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView | null): void;
|
|
24273
24363
|
readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, offset: GLintptr): void;
|
|
24274
|
-
readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView, dstOffset:
|
|
24364
|
+
readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView, dstOffset: number): void;
|
|
24275
24365
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texImage2D) */
|
|
24276
24366
|
texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pixels: ArrayBufferView | null): void;
|
|
24277
24367
|
texImage2D(target: GLenum, level: GLint, internalformat: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
24278
24368
|
texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;
|
|
24279
24369
|
texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
24280
|
-
texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset:
|
|
24370
|
+
texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset: number): void;
|
|
24281
24371
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texSubImage2D) */
|
|
24282
24372
|
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView | null): void;
|
|
24283
24373
|
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
24284
24374
|
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;
|
|
24285
24375
|
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;
|
|
24286
|
-
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset:
|
|
24376
|
+
texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView, srcOffset: number): void;
|
|
24287
24377
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24288
|
-
uniform1fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?:
|
|
24378
|
+
uniform1fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24289
24379
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24290
|
-
uniform1iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?:
|
|
24380
|
+
uniform1iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24291
24381
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24292
|
-
uniform2fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?:
|
|
24382
|
+
uniform2fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24293
24383
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24294
|
-
uniform2iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?:
|
|
24384
|
+
uniform2iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24295
24385
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24296
|
-
uniform3fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?:
|
|
24386
|
+
uniform3fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24297
24387
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24298
|
-
uniform3iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?:
|
|
24388
|
+
uniform3iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24299
24389
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24300
|
-
uniform4fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?:
|
|
24390
|
+
uniform4fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24301
24391
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
|
|
24302
|
-
uniform4iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?:
|
|
24392
|
+
uniform4iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24303
24393
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
|
|
24304
|
-
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24394
|
+
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24305
24395
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
|
|
24306
|
-
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24396
|
+
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24307
24397
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
|
|
24308
|
-
uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?:
|
|
24398
|
+
uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
|
|
24309
24399
|
}
|
|
24310
24400
|
|
|
24311
24401
|
/**
|
|
@@ -24674,6 +24764,7 @@ declare var WebGLRenderingContext: {
|
|
|
24674
24764
|
readonly RENDERBUFFER: 0x8D41;
|
|
24675
24765
|
readonly RGBA4: 0x8056;
|
|
24676
24766
|
readonly RGB5_A1: 0x8057;
|
|
24767
|
+
readonly RGBA8: 0x8058;
|
|
24677
24768
|
readonly RGB565: 0x8D62;
|
|
24678
24769
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
24679
24770
|
readonly STENCIL_INDEX8: 0x8D48;
|
|
@@ -25249,6 +25340,7 @@ interface WebGLRenderingContextBase {
|
|
|
25249
25340
|
readonly RENDERBUFFER: 0x8D41;
|
|
25250
25341
|
readonly RGBA4: 0x8056;
|
|
25251
25342
|
readonly RGB5_A1: 0x8057;
|
|
25343
|
+
readonly RGBA8: 0x8058;
|
|
25252
25344
|
readonly RGB565: 0x8D62;
|
|
25253
25345
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
25254
25346
|
readonly STENCIL_INDEX8: 0x8D48;
|
|
@@ -25574,13 +25666,13 @@ interface WebTransportDatagramDuplexStream {
|
|
|
25574
25666
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) */
|
|
25575
25667
|
incomingHighWaterMark: number;
|
|
25576
25668
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingMaxAge) */
|
|
25577
|
-
incomingMaxAge: number;
|
|
25669
|
+
incomingMaxAge: number | null;
|
|
25578
25670
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */
|
|
25579
25671
|
readonly maxDatagramSize: number;
|
|
25580
25672
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) */
|
|
25581
25673
|
outgoingHighWaterMark: number;
|
|
25582
25674
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingMaxAge) */
|
|
25583
|
-
outgoingMaxAge: number;
|
|
25675
|
+
outgoingMaxAge: number | null;
|
|
25584
25676
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/readable) */
|
|
25585
25677
|
readonly readable: ReadableStream;
|
|
25586
25678
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable) */
|
|
@@ -25614,7 +25706,7 @@ declare var WebTransportError: {
|
|
|
25614
25706
|
*
|
|
25615
25707
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent)
|
|
25616
25708
|
*/
|
|
25617
|
-
interface WheelEvent
|
|
25709
|
+
interface WheelEvent extends MouseEvent {
|
|
25618
25710
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaMode) */
|
|
25619
25711
|
readonly deltaMode: number;
|
|
25620
25712
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX) */
|
|
@@ -25640,6 +25732,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
|
|
|
25640
25732
|
"DOMContentLoaded": Event;
|
|
25641
25733
|
"devicemotion": DeviceMotionEvent;
|
|
25642
25734
|
"deviceorientation": DeviceOrientationEvent;
|
|
25735
|
+
"deviceorientationabsolute": DeviceOrientationEvent;
|
|
25643
25736
|
"gamepadconnected": GamepadEvent;
|
|
25644
25737
|
"gamepaddisconnected": GamepadEvent;
|
|
25645
25738
|
"orientationchange": Event;
|
|
@@ -25728,6 +25821,12 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
25728
25821
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
|
|
25729
25822
|
*/
|
|
25730
25823
|
ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
|
|
25824
|
+
/**
|
|
25825
|
+
* Available only in secure contexts.
|
|
25826
|
+
*
|
|
25827
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
|
|
25828
|
+
*/
|
|
25829
|
+
ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
|
|
25731
25830
|
/**
|
|
25732
25831
|
* @deprecated
|
|
25733
25832
|
*
|
|
@@ -25972,7 +26071,11 @@ interface WindowEventHandlers {
|
|
|
25972
26071
|
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
|
|
25973
26072
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
|
|
25974
26073
|
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
|
|
25975
|
-
/**
|
|
26074
|
+
/**
|
|
26075
|
+
* @deprecated
|
|
26076
|
+
*
|
|
26077
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
|
|
26078
|
+
*/
|
|
25976
26079
|
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
25977
26080
|
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
25978
26081
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -26507,44 +26610,44 @@ declare var XSLTProcessor: {
|
|
|
26507
26610
|
|
|
26508
26611
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
26509
26612
|
interface Console {
|
|
26510
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26613
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
26511
26614
|
assert(condition?: boolean, ...data: any[]): void;
|
|
26512
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26615
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
26513
26616
|
clear(): void;
|
|
26514
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26617
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
26515
26618
|
count(label?: string): void;
|
|
26516
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26619
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
26517
26620
|
countReset(label?: string): void;
|
|
26518
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26621
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
26519
26622
|
debug(...data: any[]): void;
|
|
26520
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26623
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
26521
26624
|
dir(item?: any, options?: any): void;
|
|
26522
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26625
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
26523
26626
|
dirxml(...data: any[]): void;
|
|
26524
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26627
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
26525
26628
|
error(...data: any[]): void;
|
|
26526
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26629
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
26527
26630
|
group(...data: any[]): void;
|
|
26528
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26631
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
26529
26632
|
groupCollapsed(...data: any[]): void;
|
|
26530
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26633
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
26531
26634
|
groupEnd(): void;
|
|
26532
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26635
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
26533
26636
|
info(...data: any[]): void;
|
|
26534
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26637
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
26535
26638
|
log(...data: any[]): void;
|
|
26536
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26639
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
26537
26640
|
table(tabularData?: any, properties?: string[]): void;
|
|
26538
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26641
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
26539
26642
|
time(label?: string): void;
|
|
26540
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26643
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
26541
26644
|
timeEnd(label?: string): void;
|
|
26542
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26645
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
26543
26646
|
timeLog(label?: string, ...data: any[]): void;
|
|
26544
26647
|
timeStamp(label?: string): void;
|
|
26545
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26648
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
26546
26649
|
trace(...data: any[]): void;
|
|
26547
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26650
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
26548
26651
|
warn(...data: any[]): void;
|
|
26549
26652
|
}
|
|
26550
26653
|
|
|
@@ -26552,10 +26655,13 @@ declare var console: Console;
|
|
|
26552
26655
|
|
|
26553
26656
|
/** Holds useful CSS-related methods. No object with this interface are implemented: it contains only static methods and therefore is a utilitarian interface. */
|
|
26554
26657
|
declare namespace CSS {
|
|
26658
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static) */
|
|
26659
|
+
var highlights: HighlightRegistry;
|
|
26555
26660
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26556
26661
|
function Hz(value: number): CSSUnitValue;
|
|
26557
26662
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26558
26663
|
function Q(value: number): CSSUnitValue;
|
|
26664
|
+
function cap(value: number): CSSUnitValue;
|
|
26559
26665
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26560
26666
|
function ch(value: number): CSSUnitValue;
|
|
26561
26667
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
@@ -26602,8 +26708,10 @@ declare namespace CSS {
|
|
|
26602
26708
|
function fr(value: number): CSSUnitValue;
|
|
26603
26709
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26604
26710
|
function grad(value: number): CSSUnitValue;
|
|
26711
|
+
function ic(value: number): CSSUnitValue;
|
|
26605
26712
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26606
26713
|
function kHz(value: number): CSSUnitValue;
|
|
26714
|
+
function lh(value: number): CSSUnitValue;
|
|
26607
26715
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26608
26716
|
function lvb(value: number): CSSUnitValue;
|
|
26609
26717
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
@@ -26632,10 +26740,15 @@ declare namespace CSS {
|
|
|
26632
26740
|
function px(value: number): CSSUnitValue;
|
|
26633
26741
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26634
26742
|
function rad(value: number): CSSUnitValue;
|
|
26743
|
+
function rcap(value: number): CSSUnitValue;
|
|
26744
|
+
function rch(value: number): CSSUnitValue;
|
|
26635
26745
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/registerProperty_static) */
|
|
26636
26746
|
function registerProperty(definition: PropertyDefinition): void;
|
|
26637
26747
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26638
26748
|
function rem(value: number): CSSUnitValue;
|
|
26749
|
+
function rex(value: number): CSSUnitValue;
|
|
26750
|
+
function ric(value: number): CSSUnitValue;
|
|
26751
|
+
function rlh(value: number): CSSUnitValue;
|
|
26639
26752
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26640
26753
|
function s(value: number): CSSUnitValue;
|
|
26641
26754
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static) */
|
|
@@ -26732,11 +26845,11 @@ declare namespace WebAssembly {
|
|
|
26732
26845
|
var Module: {
|
|
26733
26846
|
prototype: Module;
|
|
26734
26847
|
new(bytes: BufferSource): Module;
|
|
26735
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/
|
|
26848
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/customSections_static) */
|
|
26736
26849
|
customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];
|
|
26737
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/
|
|
26850
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/exports_static) */
|
|
26738
26851
|
exports(moduleObject: Module): ModuleExportDescriptor[];
|
|
26739
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/
|
|
26852
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Module/imports_static) */
|
|
26740
26853
|
imports(moduleObject: Module): ModuleImportDescriptor[];
|
|
26741
26854
|
};
|
|
26742
26855
|
|
|
@@ -26817,16 +26930,16 @@ declare namespace WebAssembly {
|
|
|
26817
26930
|
type Imports = Record<string, ModuleImports>;
|
|
26818
26931
|
type ModuleImports = Record<string, ImportValue>;
|
|
26819
26932
|
type ValueType = keyof ValueTypeMap;
|
|
26820
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/
|
|
26933
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compile_static) */
|
|
26821
26934
|
function compile(bytes: BufferSource): Promise<Module>;
|
|
26822
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/
|
|
26935
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/compileStreaming_static) */
|
|
26823
26936
|
function compileStreaming(source: Response | PromiseLike<Response>): Promise<Module>;
|
|
26824
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/
|
|
26937
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiate_static) */
|
|
26825
26938
|
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
26826
26939
|
function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
|
|
26827
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/
|
|
26940
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/instantiateStreaming_static) */
|
|
26828
26941
|
function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
|
26829
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/
|
|
26942
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/validate_static) */
|
|
26830
26943
|
function validate(bytes: BufferSource): boolean;
|
|
26831
26944
|
}
|
|
26832
26945
|
|
|
@@ -27333,6 +27446,12 @@ declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | nul
|
|
|
27333
27446
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
|
|
27334
27447
|
*/
|
|
27335
27448
|
declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
|
|
27449
|
+
/**
|
|
27450
|
+
* Available only in secure contexts.
|
|
27451
|
+
*
|
|
27452
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
|
|
27453
|
+
*/
|
|
27454
|
+
declare var ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
|
|
27336
27455
|
/**
|
|
27337
27456
|
* @deprecated
|
|
27338
27457
|
*
|
|
@@ -27516,7 +27635,9 @@ declare function toString(): string;
|
|
|
27516
27635
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
|
|
27517
27636
|
*/
|
|
27518
27637
|
declare function dispatchEvent(event: Event): boolean;
|
|
27638
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
|
|
27519
27639
|
declare function cancelAnimationFrame(handle: number): void;
|
|
27640
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
|
|
27520
27641
|
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
|
|
27521
27642
|
/**
|
|
27522
27643
|
* Fires when the user aborts the download.
|
|
@@ -27535,8 +27656,10 @@ declare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) |
|
|
|
27535
27656
|
declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
27536
27657
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
|
|
27537
27658
|
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
|
|
27538
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27659
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
|
|
27539
27660
|
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
|
|
27661
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
|
|
27662
|
+
declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
|
|
27540
27663
|
/**
|
|
27541
27664
|
* Fires when the object loses the input focus.
|
|
27542
27665
|
* @param ev The focus event.
|
|
@@ -27674,7 +27797,7 @@ declare var onfocus: ((this: Window, ev: FocusEvent) => any) | null;
|
|
|
27674
27797
|
declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
|
|
27675
27798
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
|
|
27676
27799
|
declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
|
|
27677
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27800
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
|
|
27678
27801
|
declare var oninput: ((this: Window, ev: Event) => any) | null;
|
|
27679
27802
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
|
|
27680
27803
|
declare var oninvalid: ((this: Window, ev: Event) => any) | null;
|
|
@@ -27728,7 +27851,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
|
|
|
27728
27851
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
|
|
27729
27852
|
*/
|
|
27730
27853
|
declare var onloadstart: ((this: Window, ev: Event) => any) | null;
|
|
27731
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
27854
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
|
|
27732
27855
|
declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
|
|
27733
27856
|
/**
|
|
27734
27857
|
* Fires when the user clicks the object with either mouse button.
|
|
@@ -27984,7 +28107,11 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
|
|
|
27984
28107
|
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
27985
28108
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
|
|
27986
28109
|
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
27987
|
-
/**
|
|
28110
|
+
/**
|
|
28111
|
+
* @deprecated
|
|
28112
|
+
*
|
|
28113
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
|
|
28114
|
+
*/
|
|
27988
28115
|
declare var onunload: ((this: Window, ev: Event) => any) | null;
|
|
27989
28116
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
|
|
27990
28117
|
declare var localStorage: Storage;
|
|
@@ -28059,7 +28186,7 @@ type ConstrainDouble = number | ConstrainDoubleRange;
|
|
|
28059
28186
|
type ConstrainULong = number | ConstrainULongRange;
|
|
28060
28187
|
type DOMHighResTimeStamp = number;
|
|
28061
28188
|
type EpochTimeStamp = number;
|
|
28062
|
-
type EventListenerOrEventListenerObject
|
|
28189
|
+
type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
|
|
28063
28190
|
type FileSystemWriteChunkType = BufferSource | Blob | string | WriteParams;
|
|
28064
28191
|
type Float32List = Float32Array | GLfloat[];
|
|
28065
28192
|
type FormDataEntryValue = File | string;
|
|
@@ -28173,6 +28300,7 @@ type GamepadMappingType = "" | "standard" | "xr-standard";
|
|
|
28173
28300
|
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|
|
28174
28301
|
type HardwareAcceleration = "no-preference" | "prefer-hardware" | "prefer-software";
|
|
28175
28302
|
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
|
|
28303
|
+
type HighlightType = "grammar-error" | "highlight" | "spelling-error";
|
|
28176
28304
|
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
|
28177
28305
|
type IDBRequestReadyState = "done" | "pending";
|
|
28178
28306
|
type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
@@ -28242,7 +28370,7 @@ type RTCSctpTransportState = "closed" | "connected" | "connecting";
|
|
|
28242
28370
|
type RTCSdpType = "answer" | "offer" | "pranswer" | "rollback";
|
|
28243
28371
|
type RTCSignalingState = "closed" | "have-local-offer" | "have-local-pranswer" | "have-remote-offer" | "have-remote-pranswer" | "stable";
|
|
28244
28372
|
type RTCStatsIceCandidatePairState = "failed" | "frozen" | "in-progress" | "inprogress" | "succeeded" | "waiting";
|
|
28245
|
-
type RTCStatsType = "candidate-pair" | "certificate" | "codec" | "data-channel" | "inbound-rtp" | "local-candidate" | "media-source" | "outbound-rtp" | "peer-connection" | "remote-candidate" | "remote-inbound-rtp" | "remote-outbound-rtp" | "transport";
|
|
28373
|
+
type RTCStatsType = "candidate-pair" | "certificate" | "codec" | "data-channel" | "inbound-rtp" | "local-candidate" | "media-playout" | "media-source" | "outbound-rtp" | "peer-connection" | "remote-candidate" | "remote-inbound-rtp" | "remote-outbound-rtp" | "transport";
|
|
28246
28374
|
type ReadableStreamReaderMode = "byob";
|
|
28247
28375
|
type ReadableStreamType = "bytes";
|
|
28248
28376
|
type ReadyState = "closed" | "ended" | "open";
|
|
@@ -28253,6 +28381,7 @@ type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-
|
|
|
28253
28381
|
type RequestCredentials = "include" | "omit" | "same-origin";
|
|
28254
28382
|
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
|
|
28255
28383
|
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
|
|
28384
|
+
type RequestPriority = "auto" | "high" | "low";
|
|
28256
28385
|
type RequestRedirect = "error" | "follow" | "manual";
|
|
28257
28386
|
type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
|
|
28258
28387
|
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
|