Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
16
node_modules/next/dist/server/get-page-files.d.ts
generated
vendored
Normal file
16
node_modules/next/dist/server/get-page-files.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
export type BuildManifest = {
|
||||
devFiles: readonly string[];
|
||||
ampDevFiles: readonly string[];
|
||||
polyfillFiles: readonly string[];
|
||||
lowPriorityFiles: readonly string[];
|
||||
rootMainFiles: readonly string[];
|
||||
rootMainFilesTree: {
|
||||
[appRoute: string]: readonly string[];
|
||||
};
|
||||
pages: {
|
||||
'/_app': readonly string[];
|
||||
[page: string]: readonly string[];
|
||||
};
|
||||
ampFirstPages: readonly string[];
|
||||
};
|
||||
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];
|
||||
Loading…
Add table
Add a link
Reference in a new issue