Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,14 @@
type Callback = (...args: any[]) => Promise<any>;
/**
* This function allows you to cache the results of expensive operations, like database queries, and reuse them across multiple requests.
*
* Read more: [Next.js Docs: `unstable_cache`](https://nextjs.org/docs/app/api-reference/functions/unstable_cache)
*/
export declare function unstable_cache<T extends Callback>(cb: T, keyParts?: string[], options?: {
/**
* The revalidation interval in seconds.
*/
revalidate?: number | false;
tags?: string[];
}): T;
export {};