/opt/canhelp/node_modules/next/dist/server/lib/incremental-cache
NameSizeModeActions
file-system-cache.d.ts10680644editdlrm
file-system-cache.js170770644editdlrm
file-system-cache.js.map249910644editdlrm
index.d.ts38510644editdlrm
index.js208250644editdlrm
index.js.map336410644editdlrm
memory-cache.external.d.ts1820644editdlrm
memory-cache.external.js16630644editdlrm
memory-cache.external.js.map24330644editdlrm
shared-cache-controls.external.d.ts18240644editdlrm
shared-cache-controls.external.js27820644editdlrm
shared-cache-controls.external.js.map42730644editdlrm
tags-manifest.external.d.ts1950644editdlrm
tags-manifest.external.js7940644editdlrm
tags-manifest.external.js.map9850644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.d.ts (1068B)
import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from '.'; import type { CacheFs } from '../../../shared/lib/utils'; import { type IncrementalCacheValue, type SetIncrementalFetchCacheContext, type SetIncrementalResponseCacheContext } from '../../response-cache'; type FileSystemCacheContext = Omit & { fs: CacheFs; serverDistDir: string; }; export default class FileSystemCache implements CacheHandler { private fs; private flushToDisk?; private serverDistDir; private revalidatedTags; private static debug; private static memoryCache; constructor(ctx: FileSystemCacheContext); resetRequestCache(): void; revalidateTag(...args: Parameters): Promise; get(...args: Parameters): Promise; set(key: string, data: IncrementalCacheValue | null, ctx: SetIncrementalFetchCacheContext | SetIncrementalResponseCacheContext): Promise; private getFilePath; } export {};