next
Version:
The React Framework
16 lines (15 loc) • 540 B
TypeScript
import type { TypeCheckResult } from './typescript/runTypeCheck';
export declare function verifyTypeScriptSetup({ dir, distDir, cacheDir, intentDirs, tsconfigPath, typeCheckPreflight, disableStaticImages, hasAppDir, hasPagesDir, }: {
dir: string;
distDir: string;
cacheDir?: string;
tsconfigPath: string;
intentDirs: string[];
typeCheckPreflight: boolean;
disableStaticImages: boolean;
hasAppDir: boolean;
hasPagesDir: boolean;
}): Promise<{
result?: TypeCheckResult;
version: string | null;
}>;