Files
Webklar.com/node_modules/next/dist/lib/find-pages-dir.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

7 lines
263 B
TypeScript

export declare const existsSync: (f: string) => boolean;
export declare function findDir(dir: string, name: 'pages' | 'app'): string | null;
export declare function findPagesDir(dir: string): {
pagesDir: string | undefined;
appDir: string | undefined;
};