Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/9c1b97e63e005f72d96e2e32eb491cf6d58185ee6813fcb5c00d0a1a30979ab0bef8be088c44f44c052e0021c40b9a2b5baabed5411e5408b241c40f731996
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

38 lines
884 B
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type FS from 'node:fs';
import type Path from 'node:path';
import type {ScreenRecorder} from './node/ScreenRecorder.js';
/**
* @internal
*/
export const isNode = !!(typeof process !== 'undefined' && process.version);
export interface EnvironmentDependencies {
fs: typeof FS;
path?: typeof Path;
ScreenRecorder: typeof ScreenRecorder;
}
/**
* Holder for environment dependencies. These dependencies cannot
* be used during the module instantiation.
*/
export const environment: {
value: EnvironmentDependencies;
} = {
value: {
get fs(): typeof FS {
throw new Error('fs is not available in this environment');
},
get ScreenRecorder(): typeof ScreenRecorder {
throw new Error('ScreenRecorder is not available in this environment');
},
},
};