Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/e8dcd3f089ed7c1ac2863fe5b6ec5dca26a5f82392d948fdf4b4b90bbf8d9841cbaf66986f0caa4858da85a1009350bf4a6c1c872bc9a15d6e6a4f9dbdcd20
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

39 lines
945 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import FlowResult_ from '../../types/lhr/flow-result';
import * as Settings from '../../types/lhr/settings';
// Import to augment querySelector/querySelectorAll with stricter type checking.
import '../../types/query-selector';
import '../../report/types/html-renderer';
declare global {
interface Window {
__LIGHTHOUSE_FLOW_JSON__: FlowResult_;
__initLighthouseFlowReport__: () => void;
}
// Expose global types in LH namespace.
module LH {
export type ConfigSettings = Settings.ConfigSettings;
export interface FlowReportOptions {
getReportHtml?: (flowResult: FlowResult_) => string;
saveAsGist?: (flowResult: FlowResult_) => void;
}
export interface HashState {
currentLhr: Result;
index: number;
anchor: string|null;
}
export import FlowResult = FlowResult_;
}
}
export {};