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

23
node_modules/next/dist/server/use-cache/handlers.d.ts generated vendored Normal file
View File

@@ -0,0 +1,23 @@
import type { CacheHandler } from '../lib/cache-handlers/types';
/**
* Initialize the cache handlers.
* @returns `true` if the cache handlers were initialized, `false` if they were already initialized.
*/
export declare function initializeCacheHandlers(): boolean;
/**
* Get a cache handler by kind.
* @param kind - The kind of cache handler to get.
* @returns The cache handler, or `undefined` if it is not initialized or does not exist.
*/
export declare function getCacheHandler(kind: string): CacheHandler | undefined;
/**
* Get an iterator over the cache handlers.
* @returns An iterator over the cache handlers, or `undefined` if they are not initialized.
*/
export declare function getCacheHandlers(): SetIterator<CacheHandler> | undefined;
/**
* Set a cache handler by kind.
* @param kind - The kind of cache handler to set.
* @param cacheHandler - The cache handler to set.
*/
export declare function setCacheHandler(kind: string, cacheHandler: CacheHandler): void;