elearning/Frontend-Learner/node_modules/@nuxt/nitro-server/dist/runtime/utils/cache.d.ts
2026-01-13 10:48:02 +07:00

8 lines
375 B
TypeScript

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;