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>
17 lines
433 B
Text
17 lines
433 B
Text
type AnonymousMeta = {
|
|
systemPlatform: NodeJS.Platform;
|
|
systemRelease: string;
|
|
systemArchitecture: string;
|
|
cpuCount: number;
|
|
cpuModel: string | null;
|
|
cpuSpeed: number | null;
|
|
memoryInMb: number;
|
|
isDocker: boolean;
|
|
isNowDev: boolean;
|
|
isWsl: boolean;
|
|
isCI: boolean;
|
|
ciName: string | null;
|
|
nextVersion: string;
|
|
};
|
|
export declare function getAnonymousMeta(): AnonymousMeta;
|
|
export {};
|