Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/d248855c48c85b018534278adff15761205aaf98abb9505ce29059283b28c1e60e49644b63227aed368438eb97f01b5387a40107785bf80bf00ca8d1ab8af1
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

16 lines
613 B
Text

import type { TypeCheckResult } from './typescript/runTypeCheck';
export declare function verifyTypeScriptSetup({ dir, distDir, cacheDir, intentDirs, tsconfigPath, typeCheckPreflight, disableStaticImages, hasAppDir, hasPagesDir, isolatedDevBuild, }: {
dir: string;
distDir: string;
cacheDir?: string;
tsconfigPath: string | undefined;
intentDirs: string[];
typeCheckPreflight: boolean;
disableStaticImages: boolean;
hasAppDir: boolean;
hasPagesDir: boolean;
isolatedDevBuild: boolean | undefined;
}): Promise<{
result?: TypeCheckResult;
version: string | null;
}>;