You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
335 B
8 lines
335 B
import type { PageExtensions } from '../build/page-extensions-type';
|
|
export declare function verifyRootLayout({ dir, appDir, tsconfigPath, pagePath, pageExtensions, }: {
|
|
dir: string;
|
|
appDir: string;
|
|
tsconfigPath: string;
|
|
pagePath: string;
|
|
pageExtensions: PageExtensions;
|
|
}): Promise<[boolean, string | undefined]>;
|
|
|