website-auditfy
Version:
> Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y
18 lines • 672 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NetworkRequestsRule = void 0;
const lighthouse_helper_1 = require("../../../linters/lighthouse.helper");
class NetworkRequestsRule {
constructor(dom, lightHouse) {
this.id = 'network-requests';
this.tags = ['performance'];
this.description = 'Network Requests';
this.dom = dom;
this.lightHouse = lightHouse;
}
check() {
return lighthouse_helper_1.LighthouseHelper.identifyRule(this.id, this.ruleFlow, this.lightHouse);
}
}
exports.NetworkRequestsRule = NetworkRequestsRule;
//# sourceMappingURL=network-requests.rule.js.map