.
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
export type BuildManifest = {
|
||||
devFiles: readonly string[];
|
||||
polyfillFiles: readonly string[];
|
||||
lowPriorityFiles: readonly string[];
|
||||
rootMainFiles: readonly string[];
|
||||
rootMainFilesTree: {
|
||||
[appRoute: string]: readonly string[];
|
||||
};
|
||||
pages: {
|
||||
'/_app': readonly string[];
|
||||
[page: string]: readonly string[];
|
||||
};
|
||||
};
|
||||
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];
|
||||
Reference in New Issue
Block a user