Files
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

7 lines
221 B
TypeScript

type Callback = (...args: any[]) => Promise<any>;
export declare function unstable_cache<T extends Callback>(cb: T, keyParts?: string[], options?: {
revalidate?: number | false;
tags?: string[];
}): T;
export {};