Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/27ca4860b59dab8cca264cf9e29ad222d38965c65e1e393d7f0f2bb662617b4a408fc6bae73d40c771b3ed46f48ec6406117e9072a0131416d7bed4b890f91
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

35 lines
1.1 KiB
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare global {
var isDevtools: boolean | undefined;
var isLightrider: boolean | undefined;
// Some functions defined in node are stringified and run in the browser.
// Ensure those functions are working with the correct browser environment.
interface Window {
// Cached native functions/objects for use in case the page overwrites them.
// See: `executionContext.cacheNativesOnNewDocument`.
__nativePromise: PromiseConstructor;
__nativePerformance: Performance;
__nativeFetch: typeof fetch,
__nativeURL: typeof URL;
__ElementMatches: Element['matches'];
__HTMLElementBoundingClientRect: HTMLElement['getBoundingClientRect'];
/** Used for monitoring long tasks in the test page. */
____lastLongTask?: number;
/** Used by FullPageScreenshot gatherer. */
__lighthouseNodesDontTouchOrAllVarianceGoesAway: Map<Element, string>;
__lighthouseExecutionContextUniqueIdentifier?: number;
/** Injected into the page when the `--debug` flag is used. */
continueLighthouseRun(): void;
}
}
export {};