create project
This commit is contained in:
9
kitabcitab/node_modules/next/dist/server/lib/incremental-cache/fetch-cache.d.ts
generated
vendored
Normal file
9
kitabcitab/node_modules/next/dist/server/lib/incremental-cache/fetch-cache.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from './';
|
||||
export default class FetchCache implements CacheHandler {
|
||||
private headers;
|
||||
private cacheEndpoint;
|
||||
private debug;
|
||||
constructor(ctx: CacheHandlerContext);
|
||||
get(key: string, fetchCache?: boolean): Promise<CacheHandlerValue | null>;
|
||||
set(key: string, data: CacheHandlerValue['value'], fetchCache?: boolean): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user