main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import type { AppType, DocumentType, NextComponentType } from '../shared/lib/utils';
import type { ClientReferenceManifest } from '../build/webpack/plugins/flight-manifest-plugin';
import type { PageConfig, GetStaticPaths, GetServerSideProps, GetStaticProps } from 'next/types';
import type { RouteModule } from './future/route-modules/route-module';
import { BuildManifest } from './get-page-files';
export type ManifestItem = {
id: number | string;
files: string[];
};
export type ReactLoadableManifest = {
[moduleId: string]: ManifestItem;
};
export type LoadComponentsReturnType = {
Component: NextComponentType;
pageConfig: PageConfig;
buildManifest: BuildManifest;
subresourceIntegrityManifest?: Record<string, string>;
reactLoadableManifest: ReactLoadableManifest;
clientReferenceManifest?: ClientReferenceManifest;
serverActionsManifest?: any;
Document: DocumentType;
App: AppType;
getStaticProps?: GetStaticProps;
getStaticPaths?: GetStaticPaths;
getServerSideProps?: GetServerSideProps;
ComponentMod: any;
routeModule?: RouteModule;
isAppPath?: boolean;
page: string;
};
declare function loadDefaultErrorComponentsImpl(distDir: string): Promise<LoadComponentsReturnType>;
export declare const loadDefaultErrorComponents: typeof loadDefaultErrorComponentsImpl;
export {};