@typescript-deploys/pr-build 5.5.0-pr-58007-11 → 5.5.0-pr-55887-34
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.asynciterable.d.ts +0 -5
- package/lib/lib.dom.d.ts +33 -211
- package/lib/lib.dom.iterable.d.ts +0 -8
- package/lib/lib.es2021.weakref.d.ts +1 -1
- package/lib/lib.esnext.collection.d.ts +0 -77
- package/lib/lib.esnext.d.ts +0 -1
- package/lib/lib.webworker.asynciterable.d.ts +0 -5
- package/lib/lib.webworker.d.ts +6 -20
- package/lib/lib.webworker.iterable.d.ts +0 -5
- package/lib/tsc.js +4800 -7077
- package/lib/tsserver.js +10 -5
- package/lib/typescript.d.ts +70 -210
- package/lib/typescript.js +7715 -10662
- package/lib/typingsInstaller.js +2 -1
- package/package.json +18 -18
- package/lib/lib.esnext.string.d.ts +0 -29
|
@@ -26,8 +26,3 @@ interface FileSystemDirectoryHandle {
|
|
|
26
26
|
keys(): AsyncIterableIterator<string>;
|
|
27
27
|
values(): AsyncIterableIterator<FileSystemHandle>;
|
|
28
28
|
}
|
|
29
|
-
|
|
30
|
-
interface ReadableStream<R = any> {
|
|
31
|
-
[Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
|
32
|
-
values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
|
33
|
-
}
|
package/lib/lib.dom.d.ts
CHANGED
|
@@ -219,9 +219,6 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
|
|
|
219
219
|
interface CheckVisibilityOptions {
|
|
220
220
|
checkOpacity?: boolean;
|
|
221
221
|
checkVisibilityCSS?: boolean;
|
|
222
|
-
contentVisibilityAuto?: boolean;
|
|
223
|
-
opacityProperty?: boolean;
|
|
224
|
-
visibilityProperty?: boolean;
|
|
225
222
|
}
|
|
226
223
|
|
|
227
224
|
interface ClientQueryOptions {
|
|
@@ -288,10 +285,6 @@ interface ConstrainULongRange extends ULongRange {
|
|
|
288
285
|
ideal?: number;
|
|
289
286
|
}
|
|
290
287
|
|
|
291
|
-
interface ContentVisibilityAutoStateChangeEventInit extends EventInit {
|
|
292
|
-
skipped?: boolean;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
288
|
interface ConvolverOptions extends AudioNodeOptions {
|
|
296
289
|
buffer?: AudioBuffer | null;
|
|
297
290
|
disableNormalization?: boolean;
|
|
@@ -581,8 +574,6 @@ interface GainOptions extends AudioNodeOptions {
|
|
|
581
574
|
|
|
582
575
|
interface GamepadEffectParameters {
|
|
583
576
|
duration?: number;
|
|
584
|
-
leftTrigger?: number;
|
|
585
|
-
rightTrigger?: number;
|
|
586
577
|
startDelay?: number;
|
|
587
578
|
strongMagnitude?: number;
|
|
588
579
|
weakMagnitude?: number;
|
|
@@ -1385,8 +1376,8 @@ interface RTCIceCandidateInit {
|
|
|
1385
1376
|
}
|
|
1386
1377
|
|
|
1387
1378
|
interface RTCIceCandidatePair {
|
|
1388
|
-
local
|
|
1389
|
-
remote
|
|
1379
|
+
local?: RTCIceCandidate;
|
|
1380
|
+
remote?: RTCIceCandidate;
|
|
1390
1381
|
}
|
|
1391
1382
|
|
|
1392
1383
|
interface RTCIceCandidatePairStats extends RTCStats {
|
|
@@ -1646,17 +1637,6 @@ interface ReadableStreamGetReaderOptions {
|
|
|
1646
1637
|
mode?: ReadableStreamReaderMode;
|
|
1647
1638
|
}
|
|
1648
1639
|
|
|
1649
|
-
interface ReadableStreamIteratorOptions {
|
|
1650
|
-
/**
|
|
1651
|
-
* Asynchronously iterates over the chunks in the stream's internal queue.
|
|
1652
|
-
*
|
|
1653
|
-
* Asynchronously iterating over the stream will lock it, preventing any other consumer from acquiring a reader. The lock will be released if the async iterator's return() method is called, e.g. by breaking out of the loop.
|
|
1654
|
-
*
|
|
1655
|
-
* By default, calling the async iterator's return() method will also cancel the stream. To prevent this, use the stream's values() method, passing true for the preventCancel option.
|
|
1656
|
-
*/
|
|
1657
|
-
preventCancel?: boolean;
|
|
1658
|
-
}
|
|
1659
|
-
|
|
1660
1640
|
interface ReadableStreamReadDoneResult<T> {
|
|
1661
1641
|
done: true;
|
|
1662
1642
|
value?: T;
|
|
@@ -1788,22 +1768,21 @@ interface ScrollToOptions extends ScrollOptions {
|
|
|
1788
1768
|
interface SecurityPolicyViolationEventInit extends EventInit {
|
|
1789
1769
|
blockedURI?: string;
|
|
1790
1770
|
columnNumber?: number;
|
|
1791
|
-
disposition
|
|
1792
|
-
documentURI
|
|
1793
|
-
effectiveDirective
|
|
1771
|
+
disposition: SecurityPolicyViolationEventDisposition;
|
|
1772
|
+
documentURI: string;
|
|
1773
|
+
effectiveDirective: string;
|
|
1794
1774
|
lineNumber?: number;
|
|
1795
|
-
originalPolicy
|
|
1775
|
+
originalPolicy: string;
|
|
1796
1776
|
referrer?: string;
|
|
1797
1777
|
sample?: string;
|
|
1798
1778
|
sourceFile?: string;
|
|
1799
|
-
statusCode
|
|
1800
|
-
violatedDirective
|
|
1779
|
+
statusCode: number;
|
|
1780
|
+
violatedDirective: string;
|
|
1801
1781
|
}
|
|
1802
1782
|
|
|
1803
1783
|
interface ShadowRootInit {
|
|
1804
1784
|
delegatesFocus?: boolean;
|
|
1805
1785
|
mode: ShadowRootMode;
|
|
1806
|
-
serializable?: boolean;
|
|
1807
1786
|
slotAssignment?: SlotAssignmentMode;
|
|
1808
1787
|
}
|
|
1809
1788
|
|
|
@@ -2228,8 +2207,6 @@ interface ARIAMixin {
|
|
|
2228
2207
|
ariaAtomic: string | null;
|
|
2229
2208
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
|
|
2230
2209
|
ariaAutoComplete: string | null;
|
|
2231
|
-
ariaBrailleLabel: string | null;
|
|
2232
|
-
ariaBrailleRoleDescription: string | null;
|
|
2233
2210
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
|
|
2234
2211
|
ariaBusy: string | null;
|
|
2235
2212
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) */
|
|
@@ -2362,8 +2339,6 @@ declare var AbortSignal: {
|
|
|
2362
2339
|
new(): AbortSignal;
|
|
2363
2340
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
|
2364
2341
|
abort(reason?: any): AbortSignal;
|
|
2365
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
|
2366
|
-
any(signals: AbortSignal[]): AbortSignal;
|
|
2367
2342
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
|
2368
2343
|
timeout(milliseconds: number): AbortSignal;
|
|
2369
2344
|
};
|
|
@@ -3813,16 +3788,6 @@ declare var CSSScale: {
|
|
|
3813
3788
|
new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
|
|
3814
3789
|
};
|
|
3815
3790
|
|
|
3816
|
-
interface CSSScopeRule extends CSSGroupingRule {
|
|
3817
|
-
readonly end: string | null;
|
|
3818
|
-
readonly start: string | null;
|
|
3819
|
-
}
|
|
3820
|
-
|
|
3821
|
-
declare var CSSScopeRule: {
|
|
3822
|
-
prototype: CSSScopeRule;
|
|
3823
|
-
new(): CSSScopeRule;
|
|
3824
|
-
};
|
|
3825
|
-
|
|
3826
3791
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew) */
|
|
3827
3792
|
interface CSSSkew extends CSSTransformComponent {
|
|
3828
3793
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax) */
|
|
@@ -3858,15 +3823,6 @@ declare var CSSSkewY: {
|
|
|
3858
3823
|
new(ay: CSSNumericValue): CSSSkewY;
|
|
3859
3824
|
};
|
|
3860
3825
|
|
|
3861
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStartingStyleRule) */
|
|
3862
|
-
interface CSSStartingStyleRule extends CSSGroupingRule {
|
|
3863
|
-
}
|
|
3864
|
-
|
|
3865
|
-
declare var CSSStartingStyleRule: {
|
|
3866
|
-
prototype: CSSStartingStyleRule;
|
|
3867
|
-
new(): CSSStartingStyleRule;
|
|
3868
|
-
};
|
|
3869
|
-
|
|
3870
3826
|
/**
|
|
3871
3827
|
* An object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
|
|
3872
3828
|
*
|
|
@@ -4092,7 +4048,6 @@ interface CSSStyleDeclaration {
|
|
|
4092
4048
|
clipRule: string;
|
|
4093
4049
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
|
|
4094
4050
|
color: string;
|
|
4095
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-interpolation) */
|
|
4096
4051
|
colorInterpolation: string;
|
|
4097
4052
|
colorInterpolationFilters: string;
|
|
4098
4053
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
|
|
@@ -4137,8 +4092,6 @@ interface CSSStyleDeclaration {
|
|
|
4137
4092
|
containerType: string;
|
|
4138
4093
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
|
|
4139
4094
|
content: string;
|
|
4140
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */
|
|
4141
|
-
contentVisibility: string;
|
|
4142
4095
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
|
|
4143
4096
|
counterIncrement: string;
|
|
4144
4097
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
|
|
@@ -4640,8 +4593,6 @@ interface CSSStyleDeclaration {
|
|
|
4640
4593
|
textUnderlinePosition: string;
|
|
4641
4594
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
|
|
4642
4595
|
textWrap: string;
|
|
4643
|
-
textWrapMode: string;
|
|
4644
|
-
textWrapStyle: string;
|
|
4645
4596
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
|
|
4646
4597
|
top: string;
|
|
4647
4598
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
|
|
@@ -4656,8 +4607,6 @@ interface CSSStyleDeclaration {
|
|
|
4656
4607
|
transformStyle: string;
|
|
4657
4608
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
|
|
4658
4609
|
transition: string;
|
|
4659
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-behavior) */
|
|
4660
|
-
transitionBehavior: string;
|
|
4661
4610
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
|
|
4662
4611
|
transitionDelay: string;
|
|
4663
4612
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
|
|
@@ -5079,8 +5028,6 @@ interface CSSStyleDeclaration {
|
|
|
5079
5028
|
webkitUserSelect: string;
|
|
5080
5029
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
|
|
5081
5030
|
whiteSpace: string;
|
|
5082
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space-collapse) */
|
|
5083
|
-
whiteSpaceCollapse: string;
|
|
5084
5031
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
|
|
5085
5032
|
widows: string;
|
|
5086
5033
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
|
|
@@ -5099,8 +5046,6 @@ interface CSSStyleDeclaration {
|
|
|
5099
5046
|
y: string;
|
|
5100
5047
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
|
5101
5048
|
zIndex: string;
|
|
5102
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/zoom) */
|
|
5103
|
-
zoom: string;
|
|
5104
5049
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
|
5105
5050
|
getPropertyPriority(property: string): string;
|
|
5106
5051
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyValue) */
|
|
@@ -5864,17 +5809,6 @@ declare var ConstantSourceNode: {
|
|
|
5864
5809
|
new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
|
|
5865
5810
|
};
|
|
5866
5811
|
|
|
5867
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent) */
|
|
5868
|
-
interface ContentVisibilityAutoStateChangeEvent extends Event {
|
|
5869
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped) */
|
|
5870
|
-
readonly skipped: boolean;
|
|
5871
|
-
}
|
|
5872
|
-
|
|
5873
|
-
declare var ContentVisibilityAutoStateChangeEvent: {
|
|
5874
|
-
prototype: ContentVisibilityAutoStateChangeEvent;
|
|
5875
|
-
new(type: string, eventInitDict?: ContentVisibilityAutoStateChangeEventInit): ContentVisibilityAutoStateChangeEvent;
|
|
5876
|
-
};
|
|
5877
|
-
|
|
5878
5812
|
/**
|
|
5879
5813
|
* An AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect. A ConvolverNode always has exactly one input and one output.
|
|
5880
5814
|
*
|
|
@@ -6036,16 +5970,6 @@ declare var CustomEvent: {
|
|
|
6036
5970
|
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
|
|
6037
5971
|
};
|
|
6038
5972
|
|
|
6039
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomStateSet) */
|
|
6040
|
-
interface CustomStateSet {
|
|
6041
|
-
forEach(callbackfn: (value: string, key: string, parent: CustomStateSet) => void, thisArg?: any): void;
|
|
6042
|
-
}
|
|
6043
|
-
|
|
6044
|
-
declare var CustomStateSet: {
|
|
6045
|
-
prototype: CustomStateSet;
|
|
6046
|
-
new(): CustomStateSet;
|
|
6047
|
-
};
|
|
6048
|
-
|
|
6049
5973
|
/**
|
|
6050
5974
|
* An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
|
|
6051
5975
|
*
|
|
@@ -7234,7 +7158,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7234
7158
|
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
|
|
7235
7159
|
createEvent(eventInterface: "CloseEvent"): CloseEvent;
|
|
7236
7160
|
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
|
|
7237
|
-
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
|
|
7238
7161
|
createEvent(eventInterface: "CustomEvent"): CustomEvent;
|
|
7239
7162
|
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
|
|
7240
7163
|
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
|
@@ -7496,7 +7419,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
7496
7419
|
declare var Document: {
|
|
7497
7420
|
prototype: Document;
|
|
7498
7421
|
new(): Document;
|
|
7499
|
-
parseHTMLUnsafe(html: string): Document;
|
|
7500
7422
|
};
|
|
7501
7423
|
|
|
7502
7424
|
/**
|
|
@@ -7947,7 +7869,6 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7947
7869
|
setAttributeNode(attr: Attr): Attr | null;
|
|
7948
7870
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
|
|
7949
7871
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
7950
|
-
setHTMLUnsafe(html: string): void;
|
|
7951
7872
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
|
|
7952
7873
|
setPointerCapture(pointerId: number): void;
|
|
7953
7874
|
/**
|
|
@@ -8012,8 +7933,6 @@ interface ElementInternals extends ARIAMixin {
|
|
|
8012
7933
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
|
|
8013
7934
|
*/
|
|
8014
7935
|
readonly shadowRoot: ShadowRoot | null;
|
|
8015
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states) */
|
|
8016
|
-
readonly states: CustomStateSet;
|
|
8017
7936
|
/**
|
|
8018
7937
|
* Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
|
|
8019
7938
|
*
|
|
@@ -8792,6 +8711,7 @@ declare var GainNode: {
|
|
|
8792
8711
|
|
|
8793
8712
|
/**
|
|
8794
8713
|
* This Gamepad API interface defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.
|
|
8714
|
+
* Available only in secure contexts.
|
|
8795
8715
|
*
|
|
8796
8716
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad)
|
|
8797
8717
|
*/
|
|
@@ -8810,7 +8730,7 @@ interface Gamepad {
|
|
|
8810
8730
|
readonly mapping: GamepadMappingType;
|
|
8811
8731
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
|
|
8812
8732
|
readonly timestamp: DOMHighResTimeStamp;
|
|
8813
|
-
readonly vibrationActuator: GamepadHapticActuator;
|
|
8733
|
+
readonly vibrationActuator: GamepadHapticActuator | null;
|
|
8814
8734
|
}
|
|
8815
8735
|
|
|
8816
8736
|
declare var Gamepad: {
|
|
@@ -8820,6 +8740,7 @@ declare var Gamepad: {
|
|
|
8820
8740
|
|
|
8821
8741
|
/**
|
|
8822
8742
|
* An individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.
|
|
8743
|
+
* Available only in secure contexts.
|
|
8823
8744
|
*
|
|
8824
8745
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton)
|
|
8825
8746
|
*/
|
|
@@ -8839,6 +8760,7 @@ declare var GamepadButton: {
|
|
|
8839
8760
|
|
|
8840
8761
|
/**
|
|
8841
8762
|
* This Gamepad API interface contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected and Window.gamepaddisconnected are fired in response to.
|
|
8763
|
+
* Available only in secure contexts.
|
|
8842
8764
|
*
|
|
8843
8765
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent)
|
|
8844
8766
|
*/
|
|
@@ -8858,6 +8780,8 @@ declare var GamepadEvent: {
|
|
|
8858
8780
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
|
|
8859
8781
|
*/
|
|
8860
8782
|
interface GamepadHapticActuator {
|
|
8783
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/type) */
|
|
8784
|
+
readonly type: GamepadHapticActuatorType;
|
|
8861
8785
|
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
|
|
8862
8786
|
reset(): Promise<GamepadHapticsResult>;
|
|
8863
8787
|
}
|
|
@@ -9568,7 +9492,6 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9568
9492
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
|
|
9569
9493
|
*/
|
|
9570
9494
|
name: string;
|
|
9571
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
|
|
9572
9495
|
ping: string;
|
|
9573
9496
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy) */
|
|
9574
9497
|
referrerPolicy: string;
|
|
@@ -9646,7 +9569,6 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
9646
9569
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
|
|
9647
9570
|
*/
|
|
9648
9571
|
noHref: boolean;
|
|
9649
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
|
|
9650
9572
|
ping: string;
|
|
9651
9573
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy) */
|
|
9652
9574
|
referrerPolicy: string;
|
|
@@ -10242,11 +10164,7 @@ declare var HTMLElement: {
|
|
|
10242
10164
|
interface HTMLEmbedElement extends HTMLElement {
|
|
10243
10165
|
/** @deprecated */
|
|
10244
10166
|
align: string;
|
|
10245
|
-
/**
|
|
10246
|
-
* Sets or retrieves the height of the object.
|
|
10247
|
-
*
|
|
10248
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/height)
|
|
10249
|
-
*/
|
|
10167
|
+
/** Sets or retrieves the height of the object. */
|
|
10250
10168
|
height: string;
|
|
10251
10169
|
/**
|
|
10252
10170
|
* Sets or retrieves the name of the object.
|
|
@@ -10256,11 +10174,7 @@ interface HTMLEmbedElement extends HTMLElement {
|
|
|
10256
10174
|
/** Sets or retrieves a URL to be loaded by the object. */
|
|
10257
10175
|
src: string;
|
|
10258
10176
|
type: string;
|
|
10259
|
-
/**
|
|
10260
|
-
* Sets or retrieves the width of the object.
|
|
10261
|
-
*
|
|
10262
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
|
|
10263
|
-
*/
|
|
10177
|
+
/** Sets or retrieves the width of the object. */
|
|
10264
10178
|
width: string;
|
|
10265
10179
|
getSVGDocument(): Document | null;
|
|
10266
10180
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -10833,7 +10747,6 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10833
10747
|
*/
|
|
10834
10748
|
align: string;
|
|
10835
10749
|
allow: string;
|
|
10836
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
|
|
10837
10750
|
allowFullscreen: boolean;
|
|
10838
10751
|
/**
|
|
10839
10752
|
* Retrieves the document object of the page or frame.
|
|
@@ -10860,7 +10773,6 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10860
10773
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
|
|
10861
10774
|
*/
|
|
10862
10775
|
height: string;
|
|
10863
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
|
|
10864
10776
|
loading: string;
|
|
10865
10777
|
/**
|
|
10866
10778
|
* Sets or retrieves a URI to a long description of the object.
|
|
@@ -11100,11 +11012,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11100
11012
|
checked: boolean;
|
|
11101
11013
|
/** Sets or retrieves the state of the check box or radio button. */
|
|
11102
11014
|
defaultChecked: boolean;
|
|
11103
|
-
/**
|
|
11104
|
-
* Sets or retrieves the initial contents of the object.
|
|
11105
|
-
*
|
|
11106
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
|
|
11107
|
-
*/
|
|
11015
|
+
/** Sets or retrieves the initial contents of the object. */
|
|
11108
11016
|
defaultValue: string;
|
|
11109
11017
|
dirName: string;
|
|
11110
11018
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
|
@@ -11163,25 +11071,12 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11163
11071
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
|
|
11164
11072
|
*/
|
|
11165
11073
|
readonly list: HTMLDataListElement | null;
|
|
11166
|
-
/**
|
|
11167
|
-
* Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
|
|
11168
|
-
*
|
|
11169
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
|
|
11170
|
-
*/
|
|
11074
|
+
/** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
|
|
11171
11075
|
max: string;
|
|
11172
|
-
/**
|
|
11173
|
-
* Sets or retrieves the maximum number of characters that the user can enter in a text control.
|
|
11174
|
-
*
|
|
11175
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
|
|
11176
|
-
*/
|
|
11076
|
+
/** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
|
|
11177
11077
|
maxLength: number;
|
|
11178
|
-
/**
|
|
11179
|
-
* Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
|
|
11180
|
-
*
|
|
11181
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
|
|
11182
|
-
*/
|
|
11078
|
+
/** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
|
|
11183
11079
|
min: string;
|
|
11184
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
|
|
11185
11080
|
minLength: number;
|
|
11186
11081
|
/**
|
|
11187
11082
|
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
|
|
@@ -11212,28 +11107,16 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11212
11107
|
required: boolean;
|
|
11213
11108
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
|
|
11214
11109
|
selectionDirection: "forward" | "backward" | "none" | null;
|
|
11215
|
-
/**
|
|
11216
|
-
* Gets or sets the end position or offset of a text selection.
|
|
11217
|
-
*
|
|
11218
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
|
|
11219
|
-
*/
|
|
11110
|
+
/** Gets or sets the end position or offset of a text selection. */
|
|
11220
11111
|
selectionEnd: number | null;
|
|
11221
|
-
/**
|
|
11222
|
-
* Gets or sets the starting position or offset of a text selection.
|
|
11223
|
-
*
|
|
11224
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionStart)
|
|
11225
|
-
*/
|
|
11112
|
+
/** Gets or sets the starting position or offset of a text selection. */
|
|
11226
11113
|
selectionStart: number | null;
|
|
11227
11114
|
size: number;
|
|
11228
11115
|
/** The address or URL of the a media resource that is to be considered. */
|
|
11229
11116
|
src: string;
|
|
11230
11117
|
/** Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field. */
|
|
11231
11118
|
step: string;
|
|
11232
|
-
/**
|
|
11233
|
-
* Returns the content type of the object.
|
|
11234
|
-
*
|
|
11235
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/type)
|
|
11236
|
-
*/
|
|
11119
|
+
/** Returns the content type of the object. */
|
|
11237
11120
|
type: string;
|
|
11238
11121
|
/**
|
|
11239
11122
|
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
|
@@ -11252,11 +11135,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11252
11135
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
|
|
11253
11136
|
*/
|
|
11254
11137
|
readonly validity: ValidityState;
|
|
11255
|
-
/**
|
|
11256
|
-
* Returns the value of the data at the cursor's current position.
|
|
11257
|
-
*
|
|
11258
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
|
|
11259
|
-
*/
|
|
11138
|
+
/** Returns the value of the data at the cursor's current position. */
|
|
11260
11139
|
value: string;
|
|
11261
11140
|
/** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
|
|
11262
11141
|
valueAsDate: Date | null;
|
|
@@ -11816,31 +11695,16 @@ declare var HTMLMenuElement: {
|
|
|
11816
11695
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
|
|
11817
11696
|
*/
|
|
11818
11697
|
interface HTMLMetaElement extends HTMLElement {
|
|
11819
|
-
/**
|
|
11820
|
-
* Gets or sets meta-information to associate with httpEquiv or name.
|
|
11821
|
-
*
|
|
11822
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/content)
|
|
11823
|
-
*/
|
|
11698
|
+
/** Gets or sets meta-information to associate with httpEquiv or name. */
|
|
11824
11699
|
content: string;
|
|
11825
|
-
/**
|
|
11826
|
-
* Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.
|
|
11827
|
-
*
|
|
11828
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/httpEquiv)
|
|
11829
|
-
*/
|
|
11700
|
+
/** Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header. */
|
|
11830
11701
|
httpEquiv: string;
|
|
11831
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media) */
|
|
11832
11702
|
media: string;
|
|
11833
|
-
/**
|
|
11834
|
-
* Sets or retrieves the value specified in the content attribute of the meta object.
|
|
11835
|
-
*
|
|
11836
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/name)
|
|
11837
|
-
*/
|
|
11703
|
+
/** Sets or retrieves the value specified in the content attribute of the meta object. */
|
|
11838
11704
|
name: string;
|
|
11839
11705
|
/**
|
|
11840
11706
|
* Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
|
|
11841
11707
|
* @deprecated
|
|
11842
|
-
*
|
|
11843
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)
|
|
11844
11708
|
*/
|
|
11845
11709
|
scheme: string;
|
|
11846
11710
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -12052,7 +11916,6 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
12052
11916
|
type: string;
|
|
12053
11917
|
/**
|
|
12054
11918
|
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
|
12055
|
-
* @deprecated
|
|
12056
11919
|
*
|
|
12057
11920
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
|
|
12058
11921
|
*/
|
|
@@ -12607,7 +12470,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
12607
12470
|
*
|
|
12608
12471
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
|
|
12609
12472
|
*/
|
|
12610
|
-
readonly type:
|
|
12473
|
+
readonly type: string;
|
|
12611
12474
|
/**
|
|
12612
12475
|
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
|
12613
12476
|
*
|
|
@@ -12719,7 +12582,6 @@ declare var HTMLSlotElement: {
|
|
|
12719
12582
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement)
|
|
12720
12583
|
*/
|
|
12721
12584
|
interface HTMLSourceElement extends HTMLElement {
|
|
12722
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
|
|
12723
12585
|
height: number;
|
|
12724
12586
|
/**
|
|
12725
12587
|
* Gets or sets the intended media type of the media source.
|
|
@@ -12743,7 +12605,6 @@ interface HTMLSourceElement extends HTMLElement {
|
|
|
12743
12605
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
|
|
12744
12606
|
*/
|
|
12745
12607
|
type: string;
|
|
12746
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
|
|
12747
12608
|
width: number;
|
|
12748
12609
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
12749
12610
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -13385,11 +13246,7 @@ interface HTMLTextAreaElement extends HTMLElement {
|
|
|
13385
13246
|
selectionStart: number;
|
|
13386
13247
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
|
|
13387
13248
|
readonly textLength: number;
|
|
13388
|
-
/**
|
|
13389
|
-
* Retrieves the type of control.
|
|
13390
|
-
*
|
|
13391
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/type)
|
|
13392
|
-
*/
|
|
13249
|
+
/** Retrieves the type of control. */
|
|
13393
13250
|
readonly type: string;
|
|
13394
13251
|
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
|
13395
13252
|
readonly validationMessage: string;
|
|
@@ -13612,13 +13469,11 @@ interface HTMLVideoElement extends HTMLMediaElement {
|
|
|
13612
13469
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
|
|
13613
13470
|
*/
|
|
13614
13471
|
width: number;
|
|
13615
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback) */
|
|
13616
13472
|
cancelVideoFrameCallback(handle: number): void;
|
|
13617
13473
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
|
|
13618
13474
|
getVideoPlaybackQuality(): VideoPlaybackQuality;
|
|
13619
13475
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
|
|
13620
13476
|
requestPictureInPicture(): Promise<PictureInPictureWindow>;
|
|
13621
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback) */
|
|
13622
13477
|
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
|
|
13623
13478
|
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
13624
13479
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -14700,29 +14555,6 @@ declare var KeyframeEffect: {
|
|
|
14700
14555
|
new(source: KeyframeEffect): KeyframeEffect;
|
|
14701
14556
|
};
|
|
14702
14557
|
|
|
14703
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
|
|
14704
|
-
interface LargestContentfulPaint extends PerformanceEntry {
|
|
14705
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
|
|
14706
|
-
readonly element: Element | null;
|
|
14707
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
|
|
14708
|
-
readonly id: string;
|
|
14709
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
|
|
14710
|
-
readonly loadTime: DOMHighResTimeStamp;
|
|
14711
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
|
|
14712
|
-
readonly renderTime: DOMHighResTimeStamp;
|
|
14713
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
|
|
14714
|
-
readonly size: number;
|
|
14715
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
|
|
14716
|
-
readonly url: string;
|
|
14717
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
|
|
14718
|
-
toJSON(): any;
|
|
14719
|
-
}
|
|
14720
|
-
|
|
14721
|
-
declare var LargestContentfulPaint: {
|
|
14722
|
-
prototype: LargestContentfulPaint;
|
|
14723
|
-
new(): LargestContentfulPaint;
|
|
14724
|
-
};
|
|
14725
|
-
|
|
14726
14558
|
interface LinkStyle {
|
|
14727
14559
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
|
|
14728
14560
|
readonly sheet: CSSStyleSheet | null;
|
|
@@ -21560,8 +21392,6 @@ interface ShadowRootEventMap {
|
|
|
21560
21392
|
|
|
21561
21393
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
|
|
21562
21394
|
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
|
|
21563
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
|
|
21564
|
-
readonly clonable: boolean;
|
|
21565
21395
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
|
|
21566
21396
|
readonly delegatesFocus: boolean;
|
|
21567
21397
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
|
|
@@ -21571,7 +21401,6 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
|
|
|
21571
21401
|
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
|
|
21572
21402
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
|
|
21573
21403
|
readonly slotAssignment: SlotAssignmentMode;
|
|
21574
|
-
setHTMLUnsafe(html: string): void;
|
|
21575
21404
|
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
|
|
21576
21405
|
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
21577
21406
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -26092,11 +25921,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
26092
25921
|
readonly window: Window & typeof globalThis;
|
|
26093
25922
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
|
26094
25923
|
alert(message?: any): void;
|
|
26095
|
-
/**
|
|
26096
|
-
* @deprecated
|
|
26097
|
-
*
|
|
26098
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
|
|
26099
|
-
*/
|
|
25924
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
|
|
26100
25925
|
blur(): void;
|
|
26101
25926
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
|
26102
25927
|
cancelIdleCallback(handle: number): void;
|
|
@@ -27721,11 +27546,7 @@ declare var visualViewport: VisualViewport | null;
|
|
|
27721
27546
|
declare var window: Window & typeof globalThis;
|
|
27722
27547
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
|
27723
27548
|
declare function alert(message?: any): void;
|
|
27724
|
-
/**
|
|
27725
|
-
* @deprecated
|
|
27726
|
-
*
|
|
27727
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
|
|
27728
|
-
*/
|
|
27549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
|
|
27729
27550
|
declare function blur(): void;
|
|
27730
27551
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
|
27731
27552
|
declare function cancelIdleCallback(handle: number): void;
|
|
@@ -28472,7 +28293,8 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
|
|
28472
28293
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
|
28473
28294
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
|
28474
28295
|
type FullscreenNavigationUI = "auto" | "hide" | "show";
|
|
28475
|
-
type
|
|
28296
|
+
type GamepadHapticActuatorType = "vibration";
|
|
28297
|
+
type GamepadHapticEffectType = "dual-rumble";
|
|
28476
28298
|
type GamepadHapticsResult = "complete" | "preempted";
|
|
28477
28299
|
type GamepadMappingType = "" | "standard" | "xr-standard";
|
|
28478
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";
|
|
@@ -20,11 +20,6 @@ and limitations under the License.
|
|
|
20
20
|
/// Window Iterable APIs
|
|
21
21
|
/////////////////////////////
|
|
22
22
|
|
|
23
|
-
interface AbortSignal {
|
|
24
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
|
25
|
-
any(signals: Iterable<AbortSignal>): AbortSignal;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
23
|
interface AudioParam {
|
|
29
24
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime) */
|
|
30
25
|
setValueCurveAtTime(values: Iterable<number>, startTime: number, duration: number): AudioParam;
|
|
@@ -88,9 +83,6 @@ interface CanvasPathDrawingStyles {
|
|
|
88
83
|
setLineDash(segments: Iterable<number>): void;
|
|
89
84
|
}
|
|
90
85
|
|
|
91
|
-
interface CustomStateSet extends Set<string> {
|
|
92
|
-
}
|
|
93
|
-
|
|
94
86
|
interface DOMRectList {
|
|
95
87
|
[Symbol.iterator](): IterableIterator<DOMRect>;
|
|
96
88
|
}
|
|
@@ -60,7 +60,7 @@ interface FinalizationRegistry<T> {
|
|
|
60
60
|
* @param unregisterToken The token that was used as the unregisterToken argument when calling
|
|
61
61
|
* register to register the target value.
|
|
62
62
|
*/
|
|
63
|
-
unregister(unregisterToken: WeakKey):
|
|
63
|
+
unregister(unregisterToken: WeakKey): void;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
interface FinalizationRegistryConstructor {
|