@@ -13451,11 +13451,13 @@ interface HTMLVideoElement extends HTMLMediaElement {
13451
13451
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
13452
13452
*/
13453
13453
width: number;
13454
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback) */
13454
13455
cancelVideoFrameCallback(handle: number): void;
13455
13456
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
13456
13457
getVideoPlaybackQuality(): VideoPlaybackQuality;
13457
13458
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
13458
13459
requestPictureInPicture(): Promise<PictureInPictureWindow>;
13460
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback) */
13459
13461
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
13460
13462
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
13461
13463
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -14537,6 +14539,29 @@ declare var KeyframeEffect: {
14537
14539
new(source: KeyframeEffect): KeyframeEffect;
14538
14540
};
14539
14541
14542
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
14543
+ interface LargestContentfulPaint extends PerformanceEntry {
14544
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
14545
+ readonly element: Element | null;
14546
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
14547
+ readonly id: string;
14548
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
14549
+ readonly loadTime: DOMHighResTimeStamp;
14550
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
14551
+ readonly renderTime: DOMHighResTimeStamp;
14552
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
14553
+ readonly size: number;
14554
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
14555
+ readonly url: string;
14556
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
14557
+ toJSON(): any;
14558
+ }
14559
+
14560
+ declare var LargestContentfulPaint: {
14561
+ prototype: LargestContentfulPaint;
14562
+ new(): LargestContentfulPaint;
14563
+ };
14564
+
14540
14565
interface LinkStyle {
14541
14566
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
14542
14567
readonly sheet: CSSStyleSheet | null;
0 commit comments