elearning/Frontend-Learner/node_modules/@nuxt/nitro-server/dist/runtime/utils/cache.d.ts

9 lines
375 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
export declare const payloadCache: any;
export declare const islandCache: any;
export declare const islandPropCache: any;
export declare const sharedPrerenderPromises: Map<string, Promise<any>> | null;
export declare const sharedPrerenderCache: {
get<T = unknown>(key: string): Promise<T> | undefined;
set<T>(key: string, value: Promise<T>): Promise<void>;
} | null;