File tree Expand file tree Collapse file tree 2 files changed +80
-57
lines changed Expand file tree Collapse file tree 2 files changed +80
-57
lines changed Original file line number Diff line number Diff line change @@ -14537,6 +14537,29 @@ declare var KeyframeEffect: {
14537
14537
new(source: KeyframeEffect): KeyframeEffect;
14538
14538
};
14539
14539
14540
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
14541
+ interface LargestContentfulPaint extends PerformanceEntry {
14542
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
14543
+ readonly element: Element | null;
14544
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
14545
+ readonly id: string;
14546
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
14547
+ readonly loadTime: DOMHighResTimeStamp;
14548
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
14549
+ readonly renderTime: DOMHighResTimeStamp;
14550
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
14551
+ readonly size: number;
14552
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
14553
+ readonly url: string;
14554
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
14555
+ toJSON(): any;
14556
+ }
14557
+
14558
+ declare var LargestContentfulPaint: {
14559
+ prototype: LargestContentfulPaint;
14560
+ new(): LargestContentfulPaint;
14561
+ };
14562
+
14540
14563
interface LinkStyle {
14541
14564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
14542
14565
readonly sheet: CSSStyleSheet | null;
You can’t perform that action at this time.
0 commit comments