@@ -201,6 +201,9 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
201
201
interface CheckVisibilityOptions {
202
202
checkOpacity?: boolean;
203
203
checkVisibilityCSS?: boolean;
204
+ contentVisibilityAuto?: boolean;
205
+ opacityProperty?: boolean;
206
+ visibilityProperty?: boolean;
204
207
}
205
208
206
209
interface ClientQueryOptions {
@@ -8712,7 +8715,7 @@ interface Gamepad {
8712
8715
readonly mapping: GamepadMappingType;
8713
8716
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
8714
8717
readonly timestamp: DOMHighResTimeStamp;
8715
- readonly vibrationActuator: GamepadHapticActuator | null ;
8718
+ readonly vibrationActuator: GamepadHapticActuator;
8716
8719
}
8717
8720
8718
8721
declare var Gamepad: {
@@ -8762,8 +8765,6 @@ declare var GamepadEvent: {
8762
8765
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
8763
8766
*/
8764
8767
interface GamepadHapticActuator {
8765
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/type) */
8766
- readonly type: GamepadHapticActuatorType;
8767
8768
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
8768
8769
reset(): Promise<GamepadHapticsResult>;
8769
8770
}
@@ -9474,6 +9475,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9474
9475
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
9475
9476
*/
9476
9477
name: string;
9478
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
9477
9479
ping: string;
9478
9480
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy) */
9479
9481
referrerPolicy: string;
@@ -9551,6 +9553,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
9551
9553
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
9552
9554
*/
9553
9555
noHref: boolean;
9556
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
9554
9557
ping: string;
9555
9558
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy) */
9556
9559
referrerPolicy: string;
@@ -10146,7 +10149,11 @@ declare var HTMLElement: {
10146
10149
interface HTMLEmbedElement extends HTMLElement {
10147
10150
/** @deprecated */
10148
10151
align: string;
10149
- /** Sets or retrieves the height of the object. */
10152
+ /**
10153
+ * Sets or retrieves the height of the object.
10154
+ *
10155
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/height)
10156
+ */
10150
10157
height: string;
10151
10158
/**
10152
10159
* Sets or retrieves the name of the object.
@@ -10156,7 +10163,11 @@ interface HTMLEmbedElement extends HTMLElement {
10156
10163
/** Sets or retrieves a URL to be loaded by the object. */
10157
10164
src: string;
10158
10165
type: string;
10159
- /** Sets or retrieves the width of the object. */
10166
+ /**
10167
+ * Sets or retrieves the width of the object.
10168
+ *
10169
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
10170
+ */
10160
10171
width: string;
10161
10172
getSVGDocument(): Document | null;
10162
10173
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13451,11 +13462,13 @@ interface HTMLVideoElement extends HTMLMediaElement {
13451
13462
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
13452
13463
*/
13453
13464
width: number;
13465
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback) */
13454
13466
cancelVideoFrameCallback(handle: number): void;
13455
13467
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
13456
13468
getVideoPlaybackQuality(): VideoPlaybackQuality;
13457
13469
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
13458
13470
requestPictureInPicture(): Promise<PictureInPictureWindow>;
13471
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback) */
13459
13472
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
13460
13473
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
13461
13474
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -14537,6 +14550,29 @@ declare var KeyframeEffect: {
14537
14550
new(source: KeyframeEffect): KeyframeEffect;
14538
14551
};
14539
14552
14553
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
14554
+ interface LargestContentfulPaint extends PerformanceEntry {
14555
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
14556
+ readonly element: Element | null;
14557
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
14558
+ readonly id: string;
14559
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
14560
+ readonly loadTime: DOMHighResTimeStamp;
14561
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
14562
+ readonly renderTime: DOMHighResTimeStamp;
14563
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
14564
+ readonly size: number;
14565
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
14566
+ readonly url: string;
14567
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
14568
+ toJSON(): any;
14569
+ }
14570
+
14571
+ declare var LargestContentfulPaint: {
14572
+ prototype: LargestContentfulPaint;
14573
+ new(): LargestContentfulPaint;
14574
+ };
14575
+
14540
14576
interface LinkStyle {
14541
14577
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
14542
14578
readonly sheet: CSSStyleSheet | null;
@@ -28275,7 +28311,6 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
28275
28311
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
28276
28312
type FontFaceSetLoadStatus = "loaded" | "loading";
28277
28313
type FullscreenNavigationUI = "auto" | "hide" | "show";
28278
- type GamepadHapticActuatorType = "vibration";
28279
28314
type GamepadHapticEffectType = "dual-rumble";
28280
28315
type GamepadHapticsResult = "complete" | "preempted";
28281
28316
type GamepadMappingType = "" | "standard" | "xr-standard";
0 commit comments