inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

16
node_modules/next/dist/build/templates/app-page.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import type { LoaderTree } from '../../server/lib/app-dir-module';
import { AppPageRouteModule } from '../../server/route-modules/app-page/module.compiled';
/**
* The tree created in next-app-loader that holds component segments and modules
* and I've updated it.
*/
declare const tree: LoaderTree;
declare const pages: any;
export { tree, pages };
export { default as GlobalError } from 'VAR_MODULE_GLOBAL_ERROR';
export declare const __next_app__: {
require: (id: string | number) => unknown;
loadChunk: (id: string | number) => Promise<unknown>;
};
export * from '../../server/app-render/entry-base';
export declare const routeModule: AppPageRouteModule;