lighthouse 9.5.0-dev.20230118 → 9.5.0-dev.20230119
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/cli/bin.d.ts +5 -0
- package/cli/cli-flags.d.ts +258 -0
- package/cli/commands/commands.d.ts +4 -0
- package/cli/commands/list-audits.d.ts +2 -0
- package/cli/commands/list-locales.d.ts +2 -0
- package/cli/commands/list-trace-categories.d.ts +2 -0
- package/cli/index.d.ts +3 -0
- package/cli/printer.d.ts +28 -0
- package/cli/run.d.ts +24 -0
- package/cli/sentry-prompt.d.ts +5 -0
- package/cli/test/smokehouse/config/exclusions.d.ts +12 -0
- package/cli/test/smokehouse/core-tests.d.ts +4 -0
- package/cli/test/smokehouse/frontends/back-compat-util.d.ts +16 -0
- package/cli/test/smokehouse/frontends/lib.d.ts +8 -0
- package/cli/test/smokehouse/frontends/node.d.ts +2 -0
- package/cli/test/smokehouse/frontends/smokehouse-bin.d.ts +3 -0
- package/cli/test/smokehouse/lib/child-process-error.d.ts +21 -0
- package/cli/test/smokehouse/lib/concurrent-mapper.d.ts +78 -0
- package/cli/test/smokehouse/lib/local-console.d.ts +33 -0
- package/cli/test/smokehouse/lighthouse-runners/bundle.d.ts +16 -0
- package/cli/test/smokehouse/lighthouse-runners/cli.d.ts +18 -0
- package/cli/test/smokehouse/lighthouse-runners/devtools.d.ts +23 -0
- package/cli/test/smokehouse/report-assert-test.d.ts +2 -0
- package/cli/test/smokehouse/report-assert.d.ts +50 -0
- package/cli/test/smokehouse/smokehouse.d.ts +35 -0
- package/cli/test/smokehouse/version-check-test.d.ts +2 -0
- package/cli/test/smokehouse/version-check.d.ts +15 -0
- package/core/audits/accessibility/accesskeys.d.ts +10 -0
- package/core/audits/accessibility/aria-allowed-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-command-name.d.ts +10 -0
- package/core/audits/accessibility/aria-hidden-body.d.ts +10 -0
- package/core/audits/accessibility/aria-hidden-focus.d.ts +10 -0
- package/core/audits/accessibility/aria-input-field-name.d.ts +10 -0
- package/core/audits/accessibility/aria-meter-name.d.ts +10 -0
- package/core/audits/accessibility/aria-progressbar-name.d.ts +10 -0
- package/core/audits/accessibility/aria-required-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-required-children.d.ts +10 -0
- package/core/audits/accessibility/aria-required-parent.d.ts +10 -0
- package/core/audits/accessibility/aria-roles.d.ts +10 -0
- package/core/audits/accessibility/aria-toggle-field-name.d.ts +10 -0
- package/core/audits/accessibility/aria-tooltip-name.d.ts +10 -0
- package/core/audits/accessibility/aria-treeitem-name.d.ts +10 -0
- package/core/audits/accessibility/aria-valid-attr-value.d.ts +10 -0
- package/core/audits/accessibility/aria-valid-attr.d.ts +10 -0
- package/core/audits/accessibility/axe-audit.d.ts +17 -0
- package/core/audits/accessibility/button-name.d.ts +10 -0
- package/core/audits/accessibility/bypass.d.ts +10 -0
- package/core/audits/accessibility/color-contrast.d.ts +10 -0
- package/core/audits/accessibility/definition-list.d.ts +10 -0
- package/core/audits/accessibility/dlitem.d.ts +10 -0
- package/core/audits/accessibility/document-title.d.ts +10 -0
- package/core/audits/accessibility/duplicate-id-active.d.ts +10 -0
- package/core/audits/accessibility/duplicate-id-aria.d.ts +10 -0
- package/core/audits/accessibility/form-field-multiple-labels.d.ts +10 -0
- package/core/audits/accessibility/frame-title.d.ts +10 -0
- package/core/audits/accessibility/heading-order.d.ts +10 -0
- package/core/audits/accessibility/html-has-lang.d.ts +10 -0
- package/core/audits/accessibility/html-lang-valid.d.ts +10 -0
- package/core/audits/accessibility/image-alt.d.ts +10 -0
- package/core/audits/accessibility/input-image-alt.d.ts +10 -0
- package/core/audits/accessibility/label.d.ts +10 -0
- package/core/audits/accessibility/link-name.d.ts +10 -0
- package/core/audits/accessibility/list.d.ts +10 -0
- package/core/audits/accessibility/listitem.d.ts +10 -0
- package/core/audits/accessibility/manual/custom-controls-labels.d.ts +8 -0
- package/core/audits/accessibility/manual/custom-controls-roles.d.ts +8 -0
- package/core/audits/accessibility/manual/focus-traps.d.ts +8 -0
- package/core/audits/accessibility/manual/focusable-controls.d.ts +8 -0
- package/core/audits/accessibility/manual/interactive-element-affordance.d.ts +8 -0
- package/core/audits/accessibility/manual/logical-tab-order.d.ts +8 -0
- package/core/audits/accessibility/manual/managed-focus.d.ts +8 -0
- package/core/audits/accessibility/manual/offscreen-content-hidden.d.ts +9 -0
- package/core/audits/accessibility/manual/use-landmarks.d.ts +8 -0
- package/core/audits/accessibility/manual/visual-order-follows-dom.d.ts +8 -0
- package/core/audits/accessibility/meta-refresh.d.ts +10 -0
- package/core/audits/accessibility/meta-viewport.d.ts +10 -0
- package/core/audits/accessibility/object-alt.d.ts +10 -0
- package/core/audits/accessibility/tabindex.d.ts +10 -0
- package/core/audits/accessibility/td-headers-attr.d.ts +10 -0
- package/core/audits/accessibility/th-has-data-cells.d.ts +10 -0
- package/core/audits/accessibility/valid-lang.d.ts +10 -0
- package/core/audits/accessibility/video-caption.d.ts +10 -0
- package/core/audits/audit.d.ts +150 -0
- package/core/audits/audit.js +1 -0
- package/core/audits/autocomplete.d.ts +36 -0
- package/core/audits/bf-cache.d.ts +21 -0
- package/core/audits/bootup-time.d.ts +26 -0
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +82 -0
- package/core/audits/byte-efficiency/duplicated-javascript.d.ts +52 -0
- package/core/audits/byte-efficiency/efficient-animated-content.d.ts +23 -0
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +99 -0
- package/core/audits/byte-efficiency/modern-image-formats.d.ts +38 -0
- package/core/audits/byte-efficiency/offscreen-images.d.ts +75 -0
- package/core/audits/byte-efficiency/render-blocking-resources.d.ts +55 -0
- package/core/audits/byte-efficiency/total-byte-weight.d.ts +21 -0
- package/core/audits/byte-efficiency/unminified-css.d.ts +36 -0
- package/core/audits/byte-efficiency/unminified-javascript.d.ts +37 -0
- package/core/audits/byte-efficiency/unused-css-rules.d.ts +16 -0
- package/core/audits/byte-efficiency/unused-javascript.d.ts +27 -0
- package/core/audits/byte-efficiency/uses-long-cache-ttl.d.ts +61 -0
- package/core/audits/byte-efficiency/uses-optimized-images.d.ts +33 -0
- package/core/audits/byte-efficiency/uses-responsive-images-snapshot.d.ts +16 -0
- package/core/audits/byte-efficiency/uses-responsive-images.d.ts +45 -0
- package/core/audits/byte-efficiency/uses-text-compression.d.ts +14 -0
- package/core/audits/content-width.d.ts +17 -0
- package/core/audits/critical-request-chains.d.ts +44 -0
- package/core/audits/csp-xss.d.ts +51 -0
- package/core/audits/deprecations.d.ts +19 -0
- package/core/audits/diagnostics.d.ts +11 -0
- package/core/audits/dobetterweb/charset.d.ts +19 -0
- package/core/audits/dobetterweb/doctype.d.ts +21 -0
- package/core/audits/dobetterweb/dom-size.d.ts +26 -0
- package/core/audits/dobetterweb/geolocation-on-start.d.ts +16 -0
- package/core/audits/dobetterweb/inspector-issues.d.ts +45 -0
- package/core/audits/dobetterweb/js-libraries.d.ts +15 -0
- package/core/audits/dobetterweb/no-document-write.d.ts +16 -0
- package/core/audits/dobetterweb/notification-on-start.d.ts +16 -0
- package/core/audits/dobetterweb/password-inputs-can-be-pasted-into.d.ts +15 -0
- package/core/audits/dobetterweb/uses-http2.d.ts +69 -0
- package/core/audits/dobetterweb/uses-passive-event-listeners.d.ts +16 -0
- package/core/audits/errors-in-console.d.ts +31 -0
- package/core/audits/final-screenshot.d.ts +11 -0
- package/core/audits/font-display.d.ts +32 -0
- package/core/audits/image-aspect-ratio.d.ts +30 -0
- package/core/audits/image-size-responsive.d.ts +28 -0
- package/core/audits/installable-manifest.d.ts +118 -0
- package/core/audits/is-on-https.d.ts +23 -0
- package/core/audits/largest-contentful-paint-element.d.ts +14 -0
- package/core/audits/layout-shift-elements.d.ts +15 -0
- package/core/audits/lcp-lazy-loaded.d.ts +21 -0
- package/core/audits/long-tasks.d.ts +16 -0
- package/core/audits/main-thread-tasks.d.ts +11 -0
- package/core/audits/mainthread-work-breakdown.d.ts +28 -0
- package/core/audits/manual/manual-audit.d.ts +13 -0
- package/core/audits/manual/pwa-cross-browser.d.ts +12 -0
- package/core/audits/manual/pwa-each-page-has-url.d.ts +12 -0
- package/core/audits/manual/pwa-page-transitions.d.ts +12 -0
- package/core/audits/maskable-icon.d.ts +25 -0
- package/core/audits/metrics/cumulative-layout-shift.d.ts +21 -0
- package/core/audits/metrics/experimental-interaction-to-next-paint.d.ts +21 -0
- package/core/audits/metrics/first-contentful-paint-3g.d.ts +15 -0
- package/core/audits/metrics/first-contentful-paint.d.ts +25 -0
- package/core/audits/metrics/first-meaningful-paint.d.ts +28 -0
- package/core/audits/metrics/interactive.d.ts +31 -0
- package/core/audits/metrics/largest-contentful-paint.d.ts +25 -0
- package/core/audits/metrics/max-potential-fid.d.ts +23 -0
- package/core/audits/metrics/speed-index.d.ts +27 -0
- package/core/audits/metrics/total-blocking-time.d.ts +32 -0
- package/core/audits/metrics.d.ts +11 -0
- package/core/audits/multi-check-audit.d.ts +28 -0
- package/core/audits/network-requests.d.ts +11 -0
- package/core/audits/network-rtt.d.ts +15 -0
- package/core/audits/network-server-latency.d.ts +15 -0
- package/core/audits/no-unload-listeners.d.ts +16 -0
- package/core/audits/non-composited-animations.d.ts +21 -0
- package/core/audits/oopif-iframe-test-audit.d.ts +14 -0
- package/core/audits/performance-budget.d.ts +39 -0
- package/core/audits/predictive-perf.d.ts +11 -0
- package/core/audits/preload-fonts.d.ts +29 -0
- package/core/audits/preload-lcp-image.d.ts +67 -0
- package/core/audits/redirects.d.ts +33 -0
- package/core/audits/resource-summary.d.ts +16 -0
- package/core/audits/screenshot-thumbnails.d.ts +32 -0
- package/core/audits/script-elements-test-audit.d.ts +14 -0
- package/core/audits/script-treemap-data.d.ts +42 -0
- package/core/audits/seo/canonical.d.ts +51 -0
- package/core/audits/seo/crawlable-anchors.d.ts +16 -0
- package/core/audits/seo/font-size.d.ts +24 -0
- package/core/audits/seo/hreflang.d.ts +28 -0
- package/core/audits/seo/http-status-code.d.ts +16 -0
- package/core/audits/seo/is-crawlable.d.ts +38 -0
- package/core/audits/seo/link-text.d.ts +16 -0
- package/core/audits/seo/manual/structured-data.d.ts +12 -0
- package/core/audits/seo/meta-description.d.ts +16 -0
- package/core/audits/seo/plugins.d.ts +15 -0
- package/core/audits/seo/robots-txt.d.ts +18 -0
- package/core/audits/seo/tap-targets.d.ts +50 -0
- package/core/audits/server-response-time.d.ts +21 -0
- package/core/audits/service-worker.d.ts +46 -0
- package/core/audits/splash-screen.d.ts +37 -0
- package/core/audits/themed-omnibox.d.ts +42 -0
- package/core/audits/third-party-facades.d.ts +41 -0
- package/core/audits/third-party-summary.d.ts +58 -0
- package/core/audits/timing-budget.d.ts +43 -0
- package/core/audits/unsized-images.d.ts +39 -0
- package/core/audits/user-timings.d.ts +43 -0
- package/core/audits/uses-rel-preconnect.d.ts +37 -0
- package/core/audits/uses-rel-preload.d.ts +61 -0
- package/core/audits/valid-source-maps.d.ts +27 -0
- package/core/audits/viewport.d.ts +17 -0
- package/core/audits/violation-audit.d.ts +14 -0
- package/core/audits/work-during-interaction.d.ts +82 -0
- package/core/computed/computed-artifact.d.ts +15 -0
- package/core/computed/critical-request-chains.d.ts +40 -0
- package/core/computed/image-records.d.ts +24 -0
- package/core/computed/js-bundles.d.ts +13 -0
- package/core/computed/load-simulator.d.ts +28 -0
- package/core/computed/main-resource.d.ts +25 -0
- package/core/computed/main-thread-tasks.d.ts +15 -0
- package/core/computed/manifest-values.d.ts +24 -0
- package/core/computed/metrics/cumulative-layout-shift.d.ts +53 -0
- package/core/computed/metrics/first-contentful-paint-all-frames.d.ts +19 -0
- package/core/computed/metrics/first-contentful-paint.d.ts +15 -0
- package/core/computed/metrics/first-meaningful-paint.d.ts +15 -0
- package/core/computed/metrics/interactive.d.ts +61 -0
- package/core/computed/metrics/lantern-first-contentful-paint.d.ts +48 -0
- package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +12 -0
- package/core/computed/metrics/lantern-interactive.d.ts +31 -0
- package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +25 -0
- package/core/computed/metrics/lantern-max-potential-fid.d.ts +30 -0
- package/core/computed/metrics/lantern-metric.d.ts +78 -0
- package/core/computed/metrics/lantern-speed-index.d.ts +38 -0
- package/core/computed/metrics/lantern-total-blocking-time.d.ts +31 -0
- package/core/computed/metrics/largest-contentful-paint-all-frames.d.ts +20 -0
- package/core/computed/metrics/largest-contentful-paint.d.ts +15 -0
- package/core/computed/metrics/max-potential-fid.d.ts +15 -0
- package/core/computed/metrics/metric.d.ts +38 -0
- package/core/computed/metrics/navigation-metric.d.ts +16 -0
- package/core/computed/metrics/responsiveness.d.ts +87 -0
- package/core/computed/metrics/speed-index.d.ts +10 -0
- package/core/computed/metrics/tbt-utils.d.ts +18 -0
- package/core/computed/metrics/timing-summary.d.ts +46 -0
- package/core/computed/metrics/total-blocking-time.d.ts +23 -0
- package/core/computed/module-duplication.d.ts +37 -0
- package/core/computed/network-analysis.d.ts +20 -0
- package/core/computed/network-records.d.ts +15 -0
- package/core/computed/network-records.js +1 -0
- package/core/computed/page-dependency-graph.d.ts +88 -0
- package/core/computed/processed-navigation.d.ts +15 -0
- package/core/computed/processed-trace.d.ts +14 -0
- package/core/computed/resource-summary.d.ts +44 -0
- package/core/computed/screenshots.d.ts +20 -0
- package/core/computed/speedline.d.ts +15 -0
- package/core/computed/unused-css.d.ts +62 -0
- package/core/computed/unused-javascript-summary.d.ts +71 -0
- package/core/computed/user-timings.d.ts +31 -0
- package/core/computed/viewport-meta.d.ts +35 -0
- package/core/config/budget.d.ts +74 -0
- package/core/config/config-helpers.d.ts +94 -0
- package/core/config/config-plugin.d.ts +46 -0
- package/core/config/config.d.ts +28 -0
- package/core/config/constants.d.ts +86 -0
- package/core/config/default-config.d.ts +5 -0
- package/core/config/default-config.js +1 -0
- package/core/config/desktop-config.d.ts +5 -0
- package/core/config/desktop-config.js +1 -0
- package/core/config/experimental-config.d.ts +13 -0
- package/core/config/filters.d.ts +83 -0
- package/core/config/full-config.d.ts +9 -0
- package/core/config/lr-desktop-config.d.ts +4 -0
- package/core/config/lr-mobile-config.d.ts +9 -0
- package/core/config/metrics-to-audits.d.ts +19 -0
- package/core/config/perf-config.d.ts +9 -0
- package/core/config/validation.d.ts +77 -0
- package/core/gather/base-artifacts.d.ts +16 -0
- package/core/gather/base-gatherer.d.ts +72 -0
- package/core/gather/base-gatherer.js +2 -0
- package/core/gather/driver/dom.d.ts +20 -0
- package/core/gather/driver/environment.d.ts +35 -0
- package/core/gather/driver/execution-context.d.ts +101 -0
- package/core/gather/driver/execution-context.js +1 -7
- package/core/gather/driver/navigation.d.ts +33 -0
- package/core/gather/driver/network-monitor.d.ts +82 -0
- package/core/gather/driver/network.d.ts +10 -0
- package/core/gather/driver/prepare.d.ts +46 -0
- package/core/gather/driver/service-workers.d.ts +16 -0
- package/core/gather/driver/storage.d.ts +24 -0
- package/core/gather/driver/target-manager.d.ts +61 -0
- package/core/gather/driver/wait-for-condition.d.ts +116 -0
- package/core/gather/driver/wait-for-condition.js +3 -2
- package/core/gather/driver.d.ts +30 -0
- package/core/gather/fetcher.d.ts +63 -0
- package/core/gather/fetcher.js +2 -0
- package/core/gather/gatherers/accessibility.d.ts +23 -0
- package/core/gather/gatherers/anchor-elements.d.ts +10 -0
- package/core/gather/gatherers/bf-cache-failures.d.ts +43 -0
- package/core/gather/gatherers/cache-contents.d.ts +11 -0
- package/core/gather/gatherers/console-messages.d.ts +39 -0
- package/core/gather/gatherers/css-usage.d.ts +39 -0
- package/core/gather/gatherers/devtools-log-compat.d.ts +13 -0
- package/core/gather/gatherers/devtools-log.d.ts +48 -0
- package/core/gather/gatherers/dobetterweb/doctype.d.ts +10 -0
- package/core/gather/gatherers/dobetterweb/domstats.d.ts +10 -0
- package/core/gather/gatherers/dobetterweb/optimized-images.d.ts +61 -0
- package/core/gather/gatherers/dobetterweb/password-inputs-with-prevented-paste.d.ts +10 -0
- package/core/gather/gatherers/dobetterweb/response-compression.d.ts +30 -0
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.d.ts +53 -0
- package/core/gather/gatherers/full-page-screenshot.d.ts +35 -0
- package/core/gather/gatherers/gatherer.d.ts +46 -0
- package/core/gather/gatherers/global-listeners.d.ts +27 -0
- package/core/gather/gatherers/iframe-elements.d.ts +11 -0
- package/core/gather/gatherers/image-elements.d.ts +35 -0
- package/core/gather/gatherers/inputs.d.ts +10 -0
- package/core/gather/gatherers/inspector-issues.d.ts +38 -0
- package/core/gather/gatherers/installability-errors.d.ts +17 -0
- package/core/gather/gatherers/js-usage.d.ts +22 -0
- package/core/gather/gatherers/link-elements.d.ts +39 -0
- package/core/gather/gatherers/main-document-content.d.ts +27 -0
- package/core/gather/gatherers/meta-elements.d.ts +10 -0
- package/core/gather/gatherers/network-user-agent.d.ts +18 -0
- package/core/gather/gatherers/script-elements.d.ts +26 -0
- package/core/gather/gatherers/scripts.d.ts +27 -0
- package/core/gather/gatherers/seo/embedded-content.d.ts +10 -0
- package/core/gather/gatherers/seo/font-size.d.ts +131 -0
- package/core/gather/gatherers/seo/robots-txt.d.ts +10 -0
- package/core/gather/gatherers/seo/tap-targets.d.ts +21 -0
- package/core/gather/gatherers/service-worker.d.ts +16 -0
- package/core/gather/gatherers/source-maps.d.ts +50 -0
- package/core/gather/gatherers/stacks.d.ts +38 -0
- package/core/gather/gatherers/trace-compat.d.ts +13 -0
- package/core/gather/gatherers/trace-elements.d.ts +83 -0
- package/core/gather/gatherers/trace.d.ts +23 -0
- package/core/gather/gatherers/viewport-dimensions.d.ts +10 -0
- package/core/gather/gatherers/web-app-manifest.d.ts +32 -0
- package/core/gather/navigation-runner.d.ts +92 -0
- package/core/gather/runner-helpers.d.ts +39 -0
- package/core/gather/session.d.ts +50 -0
- package/core/gather/snapshot-runner.d.ts +10 -0
- package/core/gather/timespan-runner.d.ts +12 -0
- package/core/index.d.cts +4 -0
- package/core/index.d.ts +88 -0
- package/core/index.js +2 -0
- package/core/legacy/config/config.d.ts +107 -0
- package/core/legacy/config/legacy-default-config.d.ts +4 -0
- package/core/legacy/gather/connections/connection.d.ts +75 -0
- package/core/legacy/gather/connections/connection.js +1 -0
- package/core/legacy/gather/connections/cri.d.ts +27 -0
- package/core/legacy/gather/connections/raw.d.ts +20 -0
- package/core/legacy/gather/driver.d.ts +214 -0
- package/core/legacy/gather/driver.js +1 -0
- package/core/legacy/gather/gather-runner.d.ts +166 -0
- package/core/lib/arbitrary-equality-map.d.ts +47 -0
- package/core/lib/asset-saver.d.ts +101 -0
- package/core/lib/axe.d.ts +2 -0
- package/core/lib/bf-cache-strings.d.ts +121 -0
- package/core/lib/cdt/Common.d.ts +3 -0
- package/core/lib/cdt/Platform.d.ts +26 -0
- package/core/lib/cdt/SDK.d.ts +2 -0
- package/core/lib/cdt/generated/ParsedURL.d.ts +28 -0
- package/core/lib/cdt/generated/SourceMap.d.ts +100 -0
- package/core/lib/csp-evaluator.d.ts +41 -0
- package/core/lib/dependency-graph/base-node.d.ts +161 -0
- package/core/lib/dependency-graph/cpu-node.d.ts +34 -0
- package/core/lib/dependency-graph/cpu-node.js +1 -0
- package/core/lib/dependency-graph/network-node.d.ts +43 -0
- package/core/lib/dependency-graph/network-node.js +1 -0
- package/core/lib/dependency-graph/simulator/connection-pool.d.ts +58 -0
- package/core/lib/dependency-graph/simulator/connection-pool.js +1 -0
- package/core/lib/dependency-graph/simulator/dns-cache.d.ts +42 -0
- package/core/lib/dependency-graph/simulator/dns-cache.js +2 -0
- package/core/lib/dependency-graph/simulator/network-analyzer.d.ts +166 -0
- package/core/lib/dependency-graph/simulator/simulator-timing-map.d.ts +153 -0
- package/core/lib/dependency-graph/simulator/simulator-timing-map.js +2 -2
- package/core/lib/dependency-graph/simulator/simulator.d.ts +154 -0
- package/core/lib/dependency-graph/simulator/simulator.js +3 -2
- package/core/lib/dependency-graph/simulator/tcp-connection.d.ts +89 -0
- package/core/lib/deprecations-strings.d.ts +66 -0
- package/core/lib/emulation.d.ts +43 -0
- package/core/lib/i18n/i18n.d.ts +81 -0
- package/core/lib/icons.d.ts +22 -0
- package/core/lib/lantern-trace-saver.d.ts +20 -0
- package/core/lib/lh-env.d.ts +2 -0
- package/core/lib/lh-error.d.ts +328 -0
- package/core/lib/lh-trace-processor.d.ts +5 -0
- package/core/lib/manifest-parser.d.ts +186 -0
- package/core/lib/median-run.d.ts +17 -0
- package/core/lib/minification-estimator.d.ts +9 -0
- package/core/lib/minify-devtoolslog.d.ts +6 -0
- package/core/lib/minify-trace.d.ts +6 -0
- package/core/lib/navigation-error.d.ts +39 -0
- package/core/lib/network-recorder.d.ts +115 -0
- package/core/lib/network-request.d.ts +245 -0
- package/core/lib/network-request.js +1 -0
- package/core/lib/page-functions.d.ts +149 -0
- package/core/lib/proto-preprocessor.d.ts +13 -0
- package/core/lib/rect-helpers.d.ts +100 -0
- package/core/lib/script-helpers.d.ts +17 -0
- package/core/lib/sentry.d.ts +32 -0
- package/core/lib/stack-packs.d.ts +16 -0
- package/core/lib/statistics.d.ts +28 -0
- package/core/lib/tappable-rects.d.ts +8 -0
- package/core/lib/third-party-web.d.ts +32 -0
- package/core/lib/timing-trace-saver.d.ts +21 -0
- package/core/lib/tracehouse/cpu-profile-model.d.ts +228 -0
- package/core/lib/tracehouse/main-thread-tasks.d.ts +162 -0
- package/core/lib/tracehouse/main-thread-tasks.js +1 -0
- package/core/lib/tracehouse/task-groups.d.ts +66 -0
- package/core/lib/tracehouse/task-summary.d.ts +18 -0
- package/core/lib/tracehouse/trace-processor.d.ts +275 -0
- package/core/lib/traces/metric-trace-events.d.ts +65 -0
- package/core/lib/url-utils.d.ts +100 -0
- package/core/runner.d.ts +109 -0
- package/core/scoring.d.ts +26 -0
- package/core/user-flow.d.ts +106 -0
- package/core/user-flow.js +1 -0
- package/core/util.d.cts +230 -0
- package/eslint-local-rules.d.cts +6 -0
- package/esm-utils.d.ts +14 -0
- package/flow-report/api.d.ts +7 -0
- package/flow-report/clients/standalone.d.ts +7 -0
- package/flow-report/src/app.d.ts +11 -0
- package/flow-report/src/common.d.ts +20 -0
- package/flow-report/src/header.d.ts +10 -0
- package/flow-report/src/help-dialog.d.ts +10 -0
- package/flow-report/src/i18n/i18n.d.ts +209 -0
- package/flow-report/src/i18n/localized-strings.d.ts +9 -0
- package/flow-report/src/i18n/ui-strings.d.ts +48 -0
- package/flow-report/src/icons.d.ts +18 -0
- package/flow-report/src/sidebar/flow.d.ts +8 -0
- package/flow-report/src/sidebar/sidebar.d.ts +17 -0
- package/flow-report/src/summary/category.d.ts +19 -0
- package/flow-report/src/summary/summary.d.ts +18 -0
- package/flow-report/src/topbar.d.ts +15 -0
- package/flow-report/src/util.d.ts +30 -0
- package/flow-report/src/wrappers/category-score.d.ts +12 -0
- package/flow-report/src/wrappers/markdown.d.ts +10 -0
- package/flow-report/src/wrappers/report.d.ts +10 -0
- package/flow-report/src/wrappers/styles.d.ts +8 -0
- package/flow-report/test/app-test.d.ts +7 -0
- package/flow-report/test/common-test.d.ts +7 -0
- package/flow-report/test/flow-report-pptr-test.d.ts +7 -0
- package/flow-report/test/header-test.d.ts +7 -0
- package/flow-report/test/sample-flow.d.ts +7 -0
- package/flow-report/test/setup/env-setup.d.ts +11 -0
- package/flow-report/test/sidebar/flow-test.d.ts +7 -0
- package/flow-report/test/sidebar/sidebar-test.d.ts +7 -0
- package/flow-report/test/summary/category-test.d.ts +7 -0
- package/flow-report/test/summary/summary-test.d.ts +7 -0
- package/flow-report/test/topbar-test.d.ts +7 -0
- package/flow-report/test/util-test.d.ts +7 -0
- package/flow-report/test/wrappers/category-score-test.d.ts +7 -0
- package/flow-report/test/wrappers/markdown-test.d.ts +7 -0
- package/flow-report/tsconfig.json +1 -1
- package/package.json +5 -2
- package/report/clients/bundle.d.ts +6 -0
- package/report/clients/standalone.d.ts +2 -0
- package/report/generator/file-namer.d.ts +35 -0
- package/report/generator/flow-report-assets.d.ts +9 -0
- package/report/generator/report-assets.d.ts +8 -0
- package/report/generator/report-generator.d.ts +59 -0
- package/report/renderer/api.d.ts +31 -0
- package/report/renderer/category-renderer.d.ts +176 -0
- package/report/renderer/components.d.ts +10 -0
- package/report/renderer/crc-details-renderer.d.ts +73 -0
- package/report/renderer/details-renderer.d.ts +141 -0
- package/report/renderer/dom.d.ts +125 -0
- package/report/renderer/drop-down-menu.d.ts +70 -0
- package/report/renderer/element-screenshot-renderer.d.ts +79 -0
- package/report/renderer/features-util.d.ts +13 -0
- package/report/renderer/i18n.d.ts +106 -0
- package/report/renderer/logger.d.ts +47 -0
- package/report/renderer/open-tab.d.ts +19 -0
- package/report/renderer/performance-category-renderer.d.ts +56 -0
- package/report/renderer/pwa-category-renderer.d.ts +55 -0
- package/report/renderer/report-renderer.d.ts +57 -0
- package/report/renderer/report-ui-features.d.ts +71 -0
- package/report/renderer/snippet-renderer.d.ts +85 -0
- package/report/renderer/swap-locale-feature.d.ts +31 -0
- package/report/renderer/text-encoding.d.ts +26 -0
- package/report/renderer/topbar-features.d.ts +82 -0
- package/report/renderer/util.d.ts +230 -0
- package/report/test-assets/faux-psi.d.ts +34 -0
- package/report/types/augment-dom.d.ts +1 -1
- package/root.d.ts +3 -0
- package/shared/localization/format.d.ts +106 -0
- package/shared/localization/i18n-module.d.ts +4 -0
- package/shared/localization/locales.d.ts +7 -0
- package/shared/localization/swap-flow-locale.d.ts +6 -0
- package/shared/localization/swap-locale.d.ts +39 -0
- package/shared/type-verifiers.d.ts +23 -0
- package/third-party/axe/valid-langs.d.ts +9 -0
- package/types/artifacts.d.ts +40 -38
- package/types/audit.d.ts +6 -6
- package/types/config.d.ts +3 -3
- package/types/externs.d.ts +7 -3
- package/types/gatherer.d.ts +27 -21
- package/types/{cssstyle/index.d.ts → internal/cssstyle.d.ts} +0 -0
- package/types/{enquirer.d.ts → internal/enquirer.d.ts} +0 -0
- package/types/{es-main.d.ts → internal/es-main.d.ts} +0 -0
- package/types/internal/global.d.ts +15 -0
- package/types/{http-link-header/index.d.ts → internal/http-link-header.d.ts} +0 -0
- package/types/{jsonlint-mod.d.ts → internal/jsonlint-mod.d.ts} +0 -0
- package/types/{lighthouse-logger/index.d.ts → internal/lighthouse-logger.d.ts} +0 -0
- package/types/{lookup-closest-locale/index.d.ts → internal/lookup-closest-locale.d.ts} +3 -1
- package/types/{metaviewport-parser/index.d.ts → internal/metaviewport-parser.d.ts} +0 -0
- package/types/{node-fetch.d.ts → internal/node-fetch.d.ts} +0 -0
- package/types/{node.d.ts → internal/node.d.ts} +0 -0
- package/types/{parse-cache-control/index.d.ts → internal/parse-cache-control.d.ts} +0 -0
- package/types/{pretty-json-stringify/index.d.ts → internal/pretty-json-stringify.d.ts} +0 -0
- package/types/{query-selector.d.ts → internal/query-selector.d.ts} +1 -1
- package/types/{rollup-plugin-postprocess.d.ts → internal/rollup-plugin-postprocess.d.ts} +0 -0
- package/types/{smokehouse.d.ts → internal/smokehouse.d.ts} +3 -3
- package/types/{test.d.ts → internal/test.d.ts} +0 -0
- package/types/lh.d.ts +81 -0
- package/types/lh.js +13 -0
- package/types/lhr/audit-details.d.ts +2 -2
- package/types/lhr/audit-result.d.ts +2 -2
- package/types/lhr/flow-result.d.ts +1 -1
- package/types/lhr/lhr.d.ts +2 -2
- package/types/lhr/settings.d.ts +1 -1
- package/types/lhr/treemap.d.ts +2 -2
- package/types/protocol.d.ts +8 -3
- package/types/puppeteer.d.ts +11 -6
- package/types/user-flow.d.ts +14 -5
- package/types/global-lh.d.ts +0 -85
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export default RenderBlockingResources;
|
|
2
|
+
export type Simulator = import('../../lib/dependency-graph/simulator/simulator').Simulator;
|
|
3
|
+
export type Node = import('../../lib/dependency-graph/base-node.js').Node;
|
|
4
|
+
export type NetworkNode = typeof import("../../lib/dependency-graph/network-node.js");
|
|
5
|
+
declare class RenderBlockingResources extends Audit {
|
|
6
|
+
/**
|
|
7
|
+
* @param {LH.Artifacts} artifacts
|
|
8
|
+
* @param {LH.Audit.Context} context
|
|
9
|
+
* @return {Promise<{wastedMs: number, results: Array<{url: string, totalBytes: number, wastedMs: number}>}>}
|
|
10
|
+
*/
|
|
11
|
+
static computeResults(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<{
|
|
12
|
+
wastedMs: number;
|
|
13
|
+
results: {
|
|
14
|
+
url: string;
|
|
15
|
+
totalBytes: number;
|
|
16
|
+
wastedMs: number;
|
|
17
|
+
}[];
|
|
18
|
+
}>;
|
|
19
|
+
/**
|
|
20
|
+
* Estimates how much faster this page would reach FCP if we inlined all the used CSS from the
|
|
21
|
+
* render blocking stylesheets and deferred all the scripts. This is more conservative than
|
|
22
|
+
* removing all the assets and more aggressive than inlining everything.
|
|
23
|
+
*
|
|
24
|
+
* *Most* of the time, scripts in the head are there accidentally/due to lack of awareness
|
|
25
|
+
* rather than necessity, so we're comfortable with this balance. In the worst case, we're telling
|
|
26
|
+
* devs that they should be able to get to a reasonable first paint without JS, which is not a bad
|
|
27
|
+
* thing.
|
|
28
|
+
*
|
|
29
|
+
* @param {Simulator} simulator
|
|
30
|
+
* @param {Node} fcpGraph
|
|
31
|
+
* @param {Set<string>} deferredIds
|
|
32
|
+
* @param {Map<string, number>} wastedCssBytesByUrl
|
|
33
|
+
* @param {LH.Artifacts.DetectedStack[]} Stacks
|
|
34
|
+
* @return {number}
|
|
35
|
+
*/
|
|
36
|
+
static estimateSavingsWithGraphs(simulator: Simulator, fcpGraph: Node, deferredIds: Set<string>, wastedCssBytesByUrl: Map<string, number>, Stacks: LH.Artifacts.DetectedStack[]): number;
|
|
37
|
+
/**
|
|
38
|
+
* @param {LH.Artifacts} artifacts
|
|
39
|
+
* @param {LH.Audit.Context} context
|
|
40
|
+
* @return {Promise<Map<string, number>>}
|
|
41
|
+
*/
|
|
42
|
+
static computeWastedCSSBytes(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<Map<string, number>>;
|
|
43
|
+
/**
|
|
44
|
+
* @param {LH.Artifacts} artifacts
|
|
45
|
+
* @param {LH.Audit.Context} context
|
|
46
|
+
* @return {Promise<LH.Audit.Product>}
|
|
47
|
+
*/
|
|
48
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
49
|
+
}
|
|
50
|
+
export namespace UIStrings {
|
|
51
|
+
const title: string;
|
|
52
|
+
const description: string;
|
|
53
|
+
}
|
|
54
|
+
import { Audit } from "../audit.js";
|
|
55
|
+
//# sourceMappingURL=render-blocking-resources.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export default TotalByteWeight;
|
|
2
|
+
declare class TotalByteWeight extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @return {LH.Audit.ScoreOptions}
|
|
5
|
+
*/
|
|
6
|
+
static get defaultOptions(): import("../../../types/audit.js").default.ScoreOptions;
|
|
7
|
+
/**
|
|
8
|
+
* @param {LH.Artifacts} artifacts
|
|
9
|
+
* @param {LH.Audit.Context} context
|
|
10
|
+
* @return {Promise<LH.Audit.Product>}
|
|
11
|
+
*/
|
|
12
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
13
|
+
}
|
|
14
|
+
export namespace UIStrings {
|
|
15
|
+
const title: string;
|
|
16
|
+
const failureTitle: string;
|
|
17
|
+
const description: string;
|
|
18
|
+
const displayValue: string;
|
|
19
|
+
}
|
|
20
|
+
import { Audit } from "../audit.js";
|
|
21
|
+
//# sourceMappingURL=total-byte-weight.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export default UnminifiedCSS;
|
|
2
|
+
/**
|
|
3
|
+
* @fileOverview
|
|
4
|
+
*/
|
|
5
|
+
declare class UnminifiedCSS extends ByteEfficiencyAudit {
|
|
6
|
+
/**
|
|
7
|
+
* Computes the total length of the meaningful tokens (CSS excluding comments and whitespace).
|
|
8
|
+
*
|
|
9
|
+
* @param {string} content
|
|
10
|
+
* @return {number}
|
|
11
|
+
*/
|
|
12
|
+
static computeTokenLength(content: string): number;
|
|
13
|
+
/**
|
|
14
|
+
* @param {LH.Artifacts.CSSStyleSheetInfo} stylesheet
|
|
15
|
+
* @param {LH.Artifacts.NetworkRequest|undefined} networkRecord
|
|
16
|
+
* @return {{url: string, totalBytes: number, wastedBytes: number, wastedPercent: number}}
|
|
17
|
+
*/
|
|
18
|
+
static computeWaste(stylesheet: LH.Artifacts.CSSStyleSheetInfo, networkRecord: LH.Artifacts.NetworkRequest | undefined): {
|
|
19
|
+
url: string;
|
|
20
|
+
totalBytes: number;
|
|
21
|
+
wastedBytes: number;
|
|
22
|
+
wastedPercent: number;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @param {LH.Artifacts} artifacts
|
|
26
|
+
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
|
|
27
|
+
* @return {import('./byte-efficiency-audit.js').ByteEfficiencyProduct}
|
|
28
|
+
*/
|
|
29
|
+
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>): import('./byte-efficiency-audit.js').ByteEfficiencyProduct;
|
|
30
|
+
}
|
|
31
|
+
export namespace UIStrings {
|
|
32
|
+
const title: string;
|
|
33
|
+
const description: string;
|
|
34
|
+
}
|
|
35
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
36
|
+
//# sourceMappingURL=unminified-css.d.ts.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export default UnminifiedJavaScript;
|
|
2
|
+
/**
|
|
3
|
+
* @fileOverview Estimates minification savings by determining the ratio of parseable JS tokens to the
|
|
4
|
+
* length of the entire string. Though simple, this method is quite accurate at identifying whether
|
|
5
|
+
* a script was already minified and offers a relatively conservative minification estimate (our two
|
|
6
|
+
* primary goals).
|
|
7
|
+
*
|
|
8
|
+
* This audit only examines scripts that were independent network requests and not inlined or eval'd.
|
|
9
|
+
*
|
|
10
|
+
* See https://github.com/GoogleChrome/lighthouse/pull/3950#issue-277887798 for stats on accuracy.
|
|
11
|
+
*/
|
|
12
|
+
declare class UnminifiedJavaScript extends ByteEfficiencyAudit {
|
|
13
|
+
/**
|
|
14
|
+
* @param {string} scriptContent
|
|
15
|
+
* @param {string} displayUrl
|
|
16
|
+
* @param {LH.Artifacts.NetworkRequest|undefined} networkRecord
|
|
17
|
+
* @return {{url: string, totalBytes: number, wastedBytes: number, wastedPercent: number}}
|
|
18
|
+
*/
|
|
19
|
+
static computeWaste(scriptContent: string, displayUrl: string, networkRecord: LH.Artifacts.NetworkRequest | undefined): {
|
|
20
|
+
url: string;
|
|
21
|
+
totalBytes: number;
|
|
22
|
+
wastedBytes: number;
|
|
23
|
+
wastedPercent: number;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @param {LH.Artifacts} artifacts
|
|
27
|
+
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
|
|
28
|
+
* @return {import('./byte-efficiency-audit.js').ByteEfficiencyProduct}
|
|
29
|
+
*/
|
|
30
|
+
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>): import('./byte-efficiency-audit.js').ByteEfficiencyProduct;
|
|
31
|
+
}
|
|
32
|
+
export namespace UIStrings {
|
|
33
|
+
const title: string;
|
|
34
|
+
const description: string;
|
|
35
|
+
}
|
|
36
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
37
|
+
//# sourceMappingURL=unminified-javascript.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default UnusedCSSRules;
|
|
2
|
+
declare class UnusedCSSRules extends ByteEfficiencyAudit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Artifacts.NetworkRequest[]} _
|
|
6
|
+
* @param {LH.Audit.Context} context
|
|
7
|
+
* @return {Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>}
|
|
8
|
+
*/
|
|
9
|
+
static audit_(artifacts: LH.Artifacts, _: LH.Artifacts.NetworkRequest[], context: LH.Audit.Context): Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>;
|
|
10
|
+
}
|
|
11
|
+
export namespace UIStrings {
|
|
12
|
+
const title: string;
|
|
13
|
+
const description: string;
|
|
14
|
+
}
|
|
15
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
16
|
+
//# sourceMappingURL=unused-css-rules.d.ts.map
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export default UnusedJavaScript;
|
|
2
|
+
export type WasteData = {
|
|
3
|
+
unusedByIndex: Uint8Array;
|
|
4
|
+
unusedLength: number;
|
|
5
|
+
contentLength: number;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* @typedef WasteData
|
|
9
|
+
* @property {Uint8Array} unusedByIndex
|
|
10
|
+
* @property {number} unusedLength
|
|
11
|
+
* @property {number} contentLength
|
|
12
|
+
*/
|
|
13
|
+
declare class UnusedJavaScript extends ByteEfficiencyAudit {
|
|
14
|
+
/**
|
|
15
|
+
* @param {LH.Artifacts} artifacts
|
|
16
|
+
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
|
|
17
|
+
* @param {LH.Audit.Context} context
|
|
18
|
+
* @return {Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>}
|
|
19
|
+
*/
|
|
20
|
+
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>, context: LH.Audit.Context): Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>;
|
|
21
|
+
}
|
|
22
|
+
export namespace UIStrings {
|
|
23
|
+
const title: string;
|
|
24
|
+
const description: string;
|
|
25
|
+
}
|
|
26
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
27
|
+
//# sourceMappingURL=unused-javascript.d.ts.map
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/// <reference path="../../../../../types/internal/parse-cache-control.d.ts" />
|
|
2
|
+
export default CacheHeaders;
|
|
3
|
+
declare class CacheHeaders extends Audit {
|
|
4
|
+
/**
|
|
5
|
+
* @return {LH.Audit.ScoreOptions}
|
|
6
|
+
*/
|
|
7
|
+
static get defaultOptions(): import("../../../types/audit.js").default.ScoreOptions;
|
|
8
|
+
/**
|
|
9
|
+
* Computes the percent likelihood that a return visit will be within the cache lifetime, based on
|
|
10
|
+
* Chrome UMA stats see the note below.
|
|
11
|
+
* @param {number} maxAgeInSeconds
|
|
12
|
+
* @return {number}
|
|
13
|
+
*/
|
|
14
|
+
static getCacheHitProbability(maxAgeInSeconds: number): number;
|
|
15
|
+
/**
|
|
16
|
+
* Return max-age if defined, otherwise expires header if defined, and null if not.
|
|
17
|
+
* @param {Map<string, string>} headers
|
|
18
|
+
* @param {ReturnType<typeof parseCacheControl>} cacheControl
|
|
19
|
+
* @return {?number}
|
|
20
|
+
*/
|
|
21
|
+
static computeCacheLifetimeInSeconds(headers: Map<string, string>, cacheControl: ReturnType<typeof parseCacheControl>): number | null;
|
|
22
|
+
/**
|
|
23
|
+
* Given a network record, returns whether we believe the asset is cacheable, i.e. it was a network
|
|
24
|
+
* request that satisifed the conditions:
|
|
25
|
+
*
|
|
26
|
+
* 1. Has a cacheable status code
|
|
27
|
+
* 2. Has a resource type that corresponds to static assets (image, script, stylesheet, etc).
|
|
28
|
+
*
|
|
29
|
+
* Allowing assets with a query string is debatable, PSI considered them non-cacheable with a similar
|
|
30
|
+
* caveat.
|
|
31
|
+
*
|
|
32
|
+
* TODO: Investigate impact in HTTPArchive, experiment with this policy to see what changes.
|
|
33
|
+
*
|
|
34
|
+
* @param {LH.Artifacts.NetworkRequest} record
|
|
35
|
+
* @return {boolean}
|
|
36
|
+
*/
|
|
37
|
+
static isCacheableAsset(record: LH.Artifacts.NetworkRequest): boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Returns true if headers suggest a record should not be cached for a long time.
|
|
40
|
+
* @param {Map<string, string>} headers
|
|
41
|
+
* @param {ReturnType<typeof parseCacheControl>} cacheControl
|
|
42
|
+
* @return {boolean}
|
|
43
|
+
*/
|
|
44
|
+
static shouldSkipRecord(headers: Map<string, string>, cacheControl: ReturnType<typeof parseCacheControl>): boolean;
|
|
45
|
+
/**
|
|
46
|
+
* @param {LH.Artifacts} artifacts
|
|
47
|
+
* @param {LH.Audit.Context} context
|
|
48
|
+
* @return {Promise<LH.Audit.Product>}
|
|
49
|
+
*/
|
|
50
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
51
|
+
}
|
|
52
|
+
export namespace UIStrings {
|
|
53
|
+
const title: string;
|
|
54
|
+
const failureTitle: string;
|
|
55
|
+
const description: string;
|
|
56
|
+
const displayValue: string;
|
|
57
|
+
}
|
|
58
|
+
import { Audit } from "../audit.js";
|
|
59
|
+
import parseCacheControl from "parse-cache-control";
|
|
60
|
+
import { NetworkRequest } from "../../lib/network-request.js";
|
|
61
|
+
//# sourceMappingURL=uses-long-cache-ttl.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export default UsesOptimizedImages;
|
|
2
|
+
declare class UsesOptimizedImages extends ByteEfficiencyAudit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {{originalSize: number, jpegSize: number}} image
|
|
5
|
+
* @return {{bytes: number, percent: number}}
|
|
6
|
+
*/
|
|
7
|
+
static computeSavings(image: {
|
|
8
|
+
originalSize: number;
|
|
9
|
+
jpegSize: number;
|
|
10
|
+
}): {
|
|
11
|
+
bytes: number;
|
|
12
|
+
percent: number;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @param {{naturalWidth: number, naturalHeight: number}} imageElement
|
|
16
|
+
* @return {number}
|
|
17
|
+
*/
|
|
18
|
+
static estimateJPEGSizeFromDimensions(imageElement: {
|
|
19
|
+
naturalWidth: number;
|
|
20
|
+
naturalHeight: number;
|
|
21
|
+
}): number;
|
|
22
|
+
/**
|
|
23
|
+
* @param {LH.Artifacts} artifacts
|
|
24
|
+
* @return {import('./byte-efficiency-audit.js').ByteEfficiencyProduct}
|
|
25
|
+
*/
|
|
26
|
+
static audit_(artifacts: LH.Artifacts): import('./byte-efficiency-audit.js').ByteEfficiencyProduct;
|
|
27
|
+
}
|
|
28
|
+
export namespace UIStrings {
|
|
29
|
+
const title: string;
|
|
30
|
+
const description: string;
|
|
31
|
+
}
|
|
32
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
33
|
+
//# sourceMappingURL=uses-optimized-images.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default UsesResponsiveImagesSnapshot;
|
|
2
|
+
declare class UsesResponsiveImagesSnapshot extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @return {Promise<LH.Audit.Product>}
|
|
6
|
+
*/
|
|
7
|
+
static audit(artifacts: LH.Artifacts): Promise<LH.Audit.Product>;
|
|
8
|
+
}
|
|
9
|
+
export namespace UIStrings {
|
|
10
|
+
const title: string;
|
|
11
|
+
const failureTitle: string;
|
|
12
|
+
const columnDisplayedDimensions: string;
|
|
13
|
+
const columnActualDimensions: string;
|
|
14
|
+
}
|
|
15
|
+
import { Audit } from "../audit.js";
|
|
16
|
+
//# sourceMappingURL=uses-responsive-images-snapshot.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export default UsesResponsiveImages;
|
|
2
|
+
declare class UsesResponsiveImages extends ByteEfficiencyAudit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts.ImageElement & {naturalWidth: number, naturalHeight: number}} image
|
|
5
|
+
* @param {LH.Artifacts.ViewportDimensions} ViewportDimensions
|
|
6
|
+
* @return {{width: number, height: number}};
|
|
7
|
+
*/
|
|
8
|
+
static getDisplayedDimensions(image: LH.Artifacts.ImageElement & {
|
|
9
|
+
naturalWidth: number;
|
|
10
|
+
naturalHeight: number;
|
|
11
|
+
}, ViewportDimensions: LH.Artifacts.ViewportDimensions): {
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @param {LH.Artifacts.ImageElement & {naturalWidth: number, naturalHeight: number}} image
|
|
17
|
+
* @param {LH.Artifacts.ViewportDimensions} ViewportDimensions
|
|
18
|
+
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
|
|
19
|
+
* @return {null|LH.Audit.ByteEfficiencyItem};
|
|
20
|
+
*/
|
|
21
|
+
static computeWaste(image: LH.Artifacts.ImageElement & {
|
|
22
|
+
naturalWidth: number;
|
|
23
|
+
naturalHeight: number;
|
|
24
|
+
}, ViewportDimensions: LH.Artifacts.ViewportDimensions, networkRecords: Array<LH.Artifacts.NetworkRequest>): null | LH.Audit.ByteEfficiencyItem;
|
|
25
|
+
/**
|
|
26
|
+
* @param {LH.Artifacts.ImageElement} image
|
|
27
|
+
* @return {number};
|
|
28
|
+
*/
|
|
29
|
+
static determineAllowableWaste(image: LH.Artifacts.ImageElement): number;
|
|
30
|
+
/**
|
|
31
|
+
* @param {LH.Artifacts} artifacts
|
|
32
|
+
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
|
|
33
|
+
* @param {LH.Audit.Context} context
|
|
34
|
+
* @return {Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>}
|
|
35
|
+
*/
|
|
36
|
+
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>, context: LH.Audit.Context): Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>;
|
|
37
|
+
}
|
|
38
|
+
export namespace UIStrings {
|
|
39
|
+
const title: string;
|
|
40
|
+
const description: string;
|
|
41
|
+
}
|
|
42
|
+
export const str_: (message: string, values?: Record<string, string | number> | undefined) => import("../../index.js").IcuMessage;
|
|
43
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
44
|
+
import { NetworkRequest } from "../../lib/network-request.js";
|
|
45
|
+
//# sourceMappingURL=uses-responsive-images.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export default ResponsesAreCompressed;
|
|
2
|
+
declare class ResponsesAreCompressed extends ByteEfficiencyAudit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @return {import('./byte-efficiency-audit.js').ByteEfficiencyProduct}
|
|
6
|
+
*/
|
|
7
|
+
static audit_(artifacts: LH.Artifacts): import('./byte-efficiency-audit.js').ByteEfficiencyProduct;
|
|
8
|
+
}
|
|
9
|
+
export namespace UIStrings {
|
|
10
|
+
const title: string;
|
|
11
|
+
const description: string;
|
|
12
|
+
}
|
|
13
|
+
import { ByteEfficiencyAudit } from "./byte-efficiency-audit.js";
|
|
14
|
+
//# sourceMappingURL=uses-text-compression.d.ts.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default ContentWidth;
|
|
2
|
+
declare class ContentWidth extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Audit.Context} context
|
|
6
|
+
* @return {LH.Audit.Product}
|
|
7
|
+
*/
|
|
8
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): LH.Audit.Product;
|
|
9
|
+
}
|
|
10
|
+
export namespace UIStrings {
|
|
11
|
+
const title: string;
|
|
12
|
+
const failureTitle: string;
|
|
13
|
+
const description: string;
|
|
14
|
+
const explanation: string;
|
|
15
|
+
}
|
|
16
|
+
import { Audit } from "./audit.js";
|
|
17
|
+
//# sourceMappingURL=content-width.d.ts.map
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default CriticalRequestChains;
|
|
2
|
+
declare class CriticalRequestChains extends Audit {
|
|
3
|
+
/** @typedef {{depth: number, id: string, chainDuration: number, chainTransferSize: number, node: LH.Audit.Details.SimpleCriticalRequestNode[string]}} CrcNodeInfo */
|
|
4
|
+
/**
|
|
5
|
+
* @param {LH.Audit.Details.SimpleCriticalRequestNode} tree
|
|
6
|
+
* @param {function(CrcNodeInfo): void} cb
|
|
7
|
+
*/
|
|
8
|
+
static _traverse(tree: LH.Audit.Details.SimpleCriticalRequestNode, cb: (arg0: {
|
|
9
|
+
depth: number;
|
|
10
|
+
id: string;
|
|
11
|
+
chainDuration: number;
|
|
12
|
+
chainTransferSize: number;
|
|
13
|
+
node: LH.Audit.Details.SimpleCriticalRequestNode[string];
|
|
14
|
+
}) => void): void;
|
|
15
|
+
/**
|
|
16
|
+
* Get stats about the longest initiator chain (as determined by time duration)
|
|
17
|
+
* @param {LH.Audit.Details.SimpleCriticalRequestNode} tree
|
|
18
|
+
* @return {{duration: number, length: number, transferSize: number}}
|
|
19
|
+
*/
|
|
20
|
+
static _getLongestChain(tree: LH.Audit.Details.SimpleCriticalRequestNode): {
|
|
21
|
+
duration: number;
|
|
22
|
+
length: number;
|
|
23
|
+
transferSize: number;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @param {LH.Artifacts.CriticalRequestNode} tree
|
|
27
|
+
* @return {LH.Audit.Details.SimpleCriticalRequestNode}
|
|
28
|
+
*/
|
|
29
|
+
static flattenRequests(tree: LH.Artifacts.CriticalRequestNode): LH.Audit.Details.SimpleCriticalRequestNode;
|
|
30
|
+
/**
|
|
31
|
+
* Audits the page to give a score for First Meaningful Paint.
|
|
32
|
+
* @param {LH.Artifacts} artifacts The artifacts from the gather phase.
|
|
33
|
+
* @param {LH.Audit.Context} context
|
|
34
|
+
* @return {Promise<LH.Audit.Product>}
|
|
35
|
+
*/
|
|
36
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
37
|
+
}
|
|
38
|
+
export namespace UIStrings {
|
|
39
|
+
const title: string;
|
|
40
|
+
const description: string;
|
|
41
|
+
const displayValue: string;
|
|
42
|
+
}
|
|
43
|
+
import { Audit } from "./audit.js";
|
|
44
|
+
//# sourceMappingURL=critical-request-chains.d.ts.map
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export default CspXss;
|
|
2
|
+
export type Finding = import('../lib/csp-evaluator.js').Finding;
|
|
3
|
+
declare class CspXss extends Audit {
|
|
4
|
+
/**
|
|
5
|
+
* @param {LH.Artifacts} artifacts
|
|
6
|
+
* @param {LH.Audit.Context} context
|
|
7
|
+
* @return {Promise<{cspHeaders: string[], cspMetaTags: string[]}>}
|
|
8
|
+
*/
|
|
9
|
+
static getRawCsps(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<{
|
|
10
|
+
cspHeaders: string[];
|
|
11
|
+
cspMetaTags: string[];
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* @param {Finding} finding
|
|
15
|
+
* @param {LH.IcuMessage=} severity
|
|
16
|
+
* @return {LH.Audit.Details.TableItem}
|
|
17
|
+
*/
|
|
18
|
+
static findingToTableItem(finding: Finding, severity?: LH.IcuMessage | undefined): LH.Audit.Details.TableItem;
|
|
19
|
+
/**
|
|
20
|
+
* @param {Finding[][]} syntaxFindings
|
|
21
|
+
* @param {string[]} rawCsps
|
|
22
|
+
* @return {LH.Audit.Details.TableItem[]}
|
|
23
|
+
*/
|
|
24
|
+
static constructSyntaxResults(syntaxFindings: Finding[][], rawCsps: string[]): LH.Audit.Details.TableItem[];
|
|
25
|
+
/**
|
|
26
|
+
* @param {string[]} cspHeaders
|
|
27
|
+
* @param {string[]} cspMetaTags
|
|
28
|
+
* @return {{score: number, results: LH.Audit.Details.TableItem[]}}
|
|
29
|
+
*/
|
|
30
|
+
static constructResults(cspHeaders: string[], cspMetaTags: string[]): {
|
|
31
|
+
score: number;
|
|
32
|
+
results: LH.Audit.Details.TableItem[];
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @param {LH.Artifacts} artifacts
|
|
36
|
+
* @param {LH.Audit.Context} context
|
|
37
|
+
* @return {Promise<LH.Audit.Product>}
|
|
38
|
+
*/
|
|
39
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
40
|
+
}
|
|
41
|
+
export namespace UIStrings {
|
|
42
|
+
const title: string;
|
|
43
|
+
const description: string;
|
|
44
|
+
const noCsp: string;
|
|
45
|
+
const metaTagMessage: string;
|
|
46
|
+
const columnDirective: string;
|
|
47
|
+
const columnSeverity: string;
|
|
48
|
+
const itemSeveritySyntax: string;
|
|
49
|
+
}
|
|
50
|
+
import { Audit } from "./audit.js";
|
|
51
|
+
//# sourceMappingURL=csp-xss.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default Deprecations;
|
|
2
|
+
declare class Deprecations extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Audit.Context} context
|
|
6
|
+
* @return {Promise<LH.Audit.Product>}
|
|
7
|
+
*/
|
|
8
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
9
|
+
}
|
|
10
|
+
export namespace UIStrings {
|
|
11
|
+
const title: string;
|
|
12
|
+
const failureTitle: string;
|
|
13
|
+
const description: string;
|
|
14
|
+
const displayValue: string;
|
|
15
|
+
const columnDeprecate: string;
|
|
16
|
+
const columnLine: string;
|
|
17
|
+
}
|
|
18
|
+
import { Audit } from "./audit.js";
|
|
19
|
+
//# sourceMappingURL=deprecations.d.ts.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default Diagnostics;
|
|
2
|
+
declare class Diagnostics extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Audit.Context} context
|
|
6
|
+
* @return {Promise<LH.Audit.Product>}
|
|
7
|
+
*/
|
|
8
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
9
|
+
}
|
|
10
|
+
import { Audit } from "./audit.js";
|
|
11
|
+
//# sourceMappingURL=diagnostics.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default CharsetDefined;
|
|
2
|
+
declare class CharsetDefined extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Audit.Context} context
|
|
6
|
+
* @return {Promise<LH.Audit.Product>}
|
|
7
|
+
*/
|
|
8
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
9
|
+
}
|
|
10
|
+
export namespace UIStrings {
|
|
11
|
+
const title: string;
|
|
12
|
+
const failureTitle: string;
|
|
13
|
+
const description: string;
|
|
14
|
+
}
|
|
15
|
+
export const CHARSET_HTML_REGEX: RegExp;
|
|
16
|
+
export const CHARSET_HTTP_REGEX: RegExp;
|
|
17
|
+
export const IANA_REGEX: RegExp;
|
|
18
|
+
import { Audit } from "../audit.js";
|
|
19
|
+
//# sourceMappingURL=charset.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export default Doctype;
|
|
2
|
+
declare class Doctype extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @return {LH.Audit.Product}
|
|
6
|
+
*/
|
|
7
|
+
static audit(artifacts: LH.Artifacts): LH.Audit.Product;
|
|
8
|
+
}
|
|
9
|
+
export namespace UIStrings {
|
|
10
|
+
const title: string;
|
|
11
|
+
const failureTitle: string;
|
|
12
|
+
const description: string;
|
|
13
|
+
const explanationNoDoctype: string;
|
|
14
|
+
const explanationWrongDoctype: string;
|
|
15
|
+
const explanationLimitedQuirks: string;
|
|
16
|
+
const explanationPublicId: string;
|
|
17
|
+
const explanationSystemId: string;
|
|
18
|
+
const explanationBadDoctype: string;
|
|
19
|
+
}
|
|
20
|
+
import { Audit } from "../audit.js";
|
|
21
|
+
//# sourceMappingURL=doctype.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export default DOMSize;
|
|
2
|
+
declare class DOMSize extends Audit {
|
|
3
|
+
/**
|
|
4
|
+
* @return {LH.Audit.ScoreOptions}
|
|
5
|
+
*/
|
|
6
|
+
static get defaultOptions(): import("../../../types/audit.js").default.ScoreOptions;
|
|
7
|
+
/**
|
|
8
|
+
* @param {LH.Artifacts} artifacts
|
|
9
|
+
* @param {LH.Audit.Context} context
|
|
10
|
+
* @return {LH.Audit.Product}
|
|
11
|
+
*/
|
|
12
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): LH.Audit.Product;
|
|
13
|
+
}
|
|
14
|
+
export namespace UIStrings {
|
|
15
|
+
const title: string;
|
|
16
|
+
const failureTitle: string;
|
|
17
|
+
const description: string;
|
|
18
|
+
const columnStatistic: string;
|
|
19
|
+
const columnValue: string;
|
|
20
|
+
const displayValue: string;
|
|
21
|
+
const statisticDOMElements: string;
|
|
22
|
+
const statisticDOMDepth: string;
|
|
23
|
+
const statisticDOMWidth: string;
|
|
24
|
+
}
|
|
25
|
+
import { Audit } from "../audit.js";
|
|
26
|
+
//# sourceMappingURL=dom-size.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default GeolocationOnStart;
|
|
2
|
+
declare class GeolocationOnStart extends ViolationAudit {
|
|
3
|
+
/**
|
|
4
|
+
* @param {LH.Artifacts} artifacts
|
|
5
|
+
* @param {LH.Audit.Context} context
|
|
6
|
+
* @return {Promise<LH.Audit.Product>}
|
|
7
|
+
*/
|
|
8
|
+
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
9
|
+
}
|
|
10
|
+
export namespace UIStrings {
|
|
11
|
+
const title: string;
|
|
12
|
+
const failureTitle: string;
|
|
13
|
+
const description: string;
|
|
14
|
+
}
|
|
15
|
+
import ViolationAudit from "../violation-audit.js";
|
|
16
|
+
//# sourceMappingURL=geolocation-on-start.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export default IssuesPanelEntries;
|
|
2
|
+
export type IssueSubItem = {
|
|
3
|
+
url: string;
|
|
4
|
+
};
|
|
5
|
+
export type IssueItem = {
|
|
6
|
+
issueType: string | LH.IcuMessage;
|
|
7
|
+
subItems: Array<IssueSubItem>;
|
|
8
|
+
};
|
|
9
|
+
declare class IssuesPanelEntries extends Audit {
|
|
10
|
+
/**
|
|
11
|
+
* @param {Array<LH.Crdp.Audits.MixedContentIssueDetails>} mixedContentIssues
|
|
12
|
+
* @return {LH.Audit.Details.TableItem}
|
|
13
|
+
*/
|
|
14
|
+
static getMixedContentRow(mixedContentIssues: Array<LH.Crdp.Audits.MixedContentIssueDetails>): LH.Audit.Details.TableItem;
|
|
15
|
+
/**
|
|
16
|
+
* @param {Array<LH.Crdp.Audits.CookieIssueDetails>} CookieIssues
|
|
17
|
+
* @return {LH.Audit.Details.TableItem}
|
|
18
|
+
*/
|
|
19
|
+
static getCookieRow(CookieIssues: Array<LH.Crdp.Audits.CookieIssueDetails>): LH.Audit.Details.TableItem;
|
|
20
|
+
/**
|
|
21
|
+
* @param {Array<LH.Crdp.Audits.BlockedByResponseIssueDetails>} blockedByResponseIssues
|
|
22
|
+
* @return {LH.Audit.Details.TableItem}
|
|
23
|
+
*/
|
|
24
|
+
static getBlockedByResponseRow(blockedByResponseIssues: Array<LH.Crdp.Audits.BlockedByResponseIssueDetails>): LH.Audit.Details.TableItem;
|
|
25
|
+
/**
|
|
26
|
+
* @param {Array<LH.Crdp.Audits.ContentSecurityPolicyIssueDetails>} cspIssues
|
|
27
|
+
* @return {LH.Audit.Details.TableItem}
|
|
28
|
+
*/
|
|
29
|
+
static getContentSecurityPolicyRow(cspIssues: Array<LH.Crdp.Audits.ContentSecurityPolicyIssueDetails>): LH.Audit.Details.TableItem;
|
|
30
|
+
/**
|
|
31
|
+
* @param {LH.Artifacts} artifacts
|
|
32
|
+
* @return {LH.Audit.Product}
|
|
33
|
+
*/
|
|
34
|
+
static audit(artifacts: LH.Artifacts): LH.Audit.Product;
|
|
35
|
+
}
|
|
36
|
+
export namespace UIStrings {
|
|
37
|
+
const title: string;
|
|
38
|
+
const failureTitle: string;
|
|
39
|
+
const description: string;
|
|
40
|
+
const columnIssueType: string;
|
|
41
|
+
const issueTypeBlockedByResponse: string;
|
|
42
|
+
const issueTypeHeavyAds: string;
|
|
43
|
+
}
|
|
44
|
+
import { Audit } from "../audit.js";
|
|
45
|
+
//# sourceMappingURL=inspector-issues.d.ts.map
|