Rocky_Mountain_Vending/.pnpm-store/v10/files/38/7e46aa4155a731005014a00dd22a96dddc5539d9cdbd0c867bcefaa5b61905ffcb952f968a4053dab773417dec1576b0b1d397a8fc9bd21c55ea589a901cf7
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

8 lines
379 B
Text

export interface TypeCheckResult {
hasWarnings: boolean;
warnings?: string[];
inputFilesCount: number;
totalFilesCount: number;
incremental: boolean;
}
export declare function runTypeCheck(typescript: typeof import('typescript'), baseDir: string, distDir: string, tsConfigPath: string, cacheDir?: string, isAppDirEnabled?: boolean): Promise<TypeCheckResult>;