lighthouse 12.0.0-dev.20240519 → 12.0.0-dev.20240521

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "12.0.0-dev.20240519",
4
+ "version": "12.0.0-dev.20240521",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {
@@ -191,6 +191,7 @@ declare module Artifacts {
191
191
  boundingRect: Rect,
192
192
  snippet: string,
193
193
  nodeLabel: string,
194
+ explanation?: string,
194
195
  }
195
196
 
196
197
  interface RuleExecutionError {
@@ -103,6 +103,8 @@ declare module Result {
103
103
  score: number|null;
104
104
  /** An array of references to all the audit members of this category. */
105
105
  auditRefs: AuditRef[];
106
+ /** An array of all the modes supported by the category. */
107
+ supportedModes?: Result.GatherMode[];
106
108
  }
107
109
 
108
110
  interface AuditRef {