UNPKG

website-auditfy

Version:

> Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y

19 lines 817 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FirstMeaningfulPaintRule = void 0; const lighthouse_helper_1 = require("../../../linters/lighthouse.helper"); class FirstMeaningfulPaintRule { constructor(dom, lightHouse) { this.id = 'first-meaningful-paint'; this.tags = ['performance']; this.description = 'First Meaningful Paint'; this.ruleUrl = 'https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/'; this.dom = dom; this.lightHouse = lightHouse; } check() { return lighthouse_helper_1.LighthouseHelper.identifyRule(this.id, this.ruleFlow, this.lightHouse); } } exports.FirstMeaningfulPaintRule = FirstMeaningfulPaintRule; //# sourceMappingURL=first-meaningful-paint.rule.js.map