website-auditfy
Version:
> Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y
19 lines • 814 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NetworkServerLatencyRule = void 0;
const lighthouse_helper_1 = require("../../../linters/lighthouse.helper");
class NetworkServerLatencyRule {
constructor(dom, lightHouse) {
this.id = 'network-server-latency';
this.tags = ['performance'];
this.description = 'Server Backend Latencies';
this.ruleUrl = 'https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall';
this.dom = dom;
this.lightHouse = lightHouse;
}
check() {
return lighthouse_helper_1.LighthouseHelper.identifyRule(this.id, this.ruleFlow, this.lightHouse);
}
}
exports.NetworkServerLatencyRule = NetworkServerLatencyRule;
//# sourceMappingURL=network-server-latency.rule.js.map