Rocky_Mountain_Vending/.pnpm-store/v10/files/02/fd0277b32cbbd190ec182317d6d35a67f5519c248b112f3169dbbdb40b0424cf5e234633681433785bd078217fb0bebb636fc28348c7c750897a2a56f03305
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

58 lines
2.4 KiB
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { Result as AuditResult } from "../../types/lhr/audit-result";
import { ReportUIFeatures } from "../renderer/report-ui-features.js";
declare module Renderer {
function renderReport(lhr: AuditResult, options?: Options): HTMLElement;
interface Options {
/**
* Disables automatically applying dark mode based on `prefers-color-scheme: dark`. Dark mode can still
* be manually applied by assigning the class `lh-dark` to the report element.
*/
disableDarkMode?: boolean;
/** Disables the fireworks animation that plays when all core categories have a 100 score. */
disableFireworks?: boolean;
/**
* Disable dark mode and fireworks.
* @deprecated Use `disableDarkMode` and `disableFireworks` instead.
*/
disableAutoDarkModeAndFireworks?: boolean;
/** Disable the topbar UI component */
omitTopbar?: boolean;
/** Prevent injection of report styles. Set to true if these styles are already included by the environment. */
omitGlobalStyles?: boolean;
/** Ensure the report occupies the entire viewport. This option should be enabled if the report represents the entire page content (i.e. standalone HTML & viewer app) */
occupyEntireViewport?: boolean;
/**
* Convert report anchor links to a different format.
* Flow report uses this to convert `#seo` to `#index=0&anchor=seo`.
*/
onPageAnchorRendered?: (link: HTMLAnchorElement) => void;
/** If defined, `Save as HTML` option is shown in dropdown menu. */
getStandaloneReportHTML?: () => string;
/** If defined, renderer will call this instead of `self.print()` */
onPrintOverride?: (rootEl: HTMLElement) => Promise<void>;
/** If defined, renderer will call this instead of using a `<a download>.click()>` to trigger a JSON/HTML download. Blob will be either json or html. */
onSaveFileOverride?: (blob: Blob, suggestedFilename: string) => Promise<void>;
/**
* If defined, adds a `View Trace` button to the report, and calls this callback when clicked.
* The callback should do something to present the user with a visualization of the trace
* data, which can be gotten from the artifacts.
*/
onViewTrace?: () => void;
/**
* Called when the performance audits/insights are swapped out.
* TODO(v13): remove
*/
_onSwapHook?: () => void;
}
}
export default Renderer;