UNPKG

website-auditfy

Version:

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

19 lines 802 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MaxPotentialFidRule = void 0; const lighthouse_helper_1 = require("../../../linters/lighthouse.helper"); class MaxPotentialFidRule { constructor(dom, lightHouse) { this.id = 'max-potential-fid'; this.tags = ['performance']; this.description = 'Max Potential First Input Delay'; this.ruleUrl = 'https://developer.chrome.com/docs/lighthouse/performance/lighthouse-max-potential-fid/'; this.dom = dom; this.lightHouse = lightHouse; } check() { return lighthouse_helper_1.LighthouseHelper.identifyRule(this.id, this.ruleFlow, this.lightHouse); } } exports.MaxPotentialFidRule = MaxPotentialFidRule; //# sourceMappingURL=max-potential-fid.rule.js.map