Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
33
node_modules/next/dist/build/static-paths/app.d.ts
generated
vendored
Normal file
33
node_modules/next/dist/build/static-paths/app.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
import type { AppPageModule } from '../../server/route-modules/app-page/module';
|
||||
import type { AppSegment } from '../segment-config/app/app-segments';
|
||||
import type { StaticPathsResult } from './types';
|
||||
import type { IncrementalCache } from '../../server/lib/incremental-cache';
|
||||
import type { NextConfigComplete } from '../../server/config-shared';
|
||||
/**
|
||||
* Builds the static paths for an app using `generateStaticParams`.
|
||||
*
|
||||
* @param params - The parameters for the build.
|
||||
* @returns The static paths.
|
||||
*/
|
||||
export declare function buildAppStaticPaths({ dir, page, distDir, dynamicIO, authInterrupts, segments, isrFlushToDisk, cacheHandler, cacheLifeProfiles, requestHeaders, cacheHandlers, maxMemoryCacheSize, fetchCacheKeyPrefix, nextConfigOutput, ComponentMod, isRoutePPREnabled, buildId, rootParamKeys, }: {
|
||||
dir: string;
|
||||
page: string;
|
||||
dynamicIO: boolean;
|
||||
authInterrupts: boolean;
|
||||
segments: AppSegment[];
|
||||
distDir: string;
|
||||
isrFlushToDisk?: boolean;
|
||||
fetchCacheKeyPrefix?: string;
|
||||
cacheHandler?: string;
|
||||
cacheHandlers?: NextConfigComplete['experimental']['cacheHandlers'];
|
||||
cacheLifeProfiles?: {
|
||||
[profile: string]: import('../../server/use-cache/cache-life').CacheLife;
|
||||
};
|
||||
maxMemoryCacheSize?: number;
|
||||
requestHeaders: IncrementalCache['requestHeaders'];
|
||||
nextConfigOutput: 'standalone' | 'export' | undefined;
|
||||
ComponentMod: AppPageModule;
|
||||
isRoutePPREnabled: boolean;
|
||||
buildId: string;
|
||||
rootParamKeys: readonly string[];
|
||||
}): Promise<Partial<StaticPathsResult>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue