Skip to content

Commit 7c93639

Browse files
authored
🤖 Update core dependencies
1 parent f4e507c commit 7c93639

File tree

2 files changed

+80
-57
lines changed

2 files changed

+80
-57
lines changed

baselines/dom.generated.d.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14537,6 +14537,29 @@ declare var KeyframeEffect: {
1453714537
new(source: KeyframeEffect): KeyframeEffect;
1453814538
};
1453914539

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+
1454014563
interface LinkStyle {
1454114564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
1454214565
readonly sheet: CSSStyleSheet | null;

package-lock.json

Lines changed: 57 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)