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>
12 lines
461 B
Text
12 lines
461 B
Text
import type { NextConfigComplete } from '../server/config-shared';
|
|
import type { Telemetry } from '../telemetry/storage';
|
|
import type { Span } from '../trace';
|
|
export declare function startTypeChecking({ cacheDir, config, dir, nextBuildSpan, pagesDir, telemetry, appDir, }: {
|
|
cacheDir: string;
|
|
config: NextConfigComplete;
|
|
dir: string;
|
|
nextBuildSpan: Span;
|
|
pagesDir?: string;
|
|
telemetry: Telemetry;
|
|
appDir?: string;
|
|
}): Promise<void>;
|