/** * Module Loader Cache Utilities * * Provides hash generation and cache factory functions. * Module caches are now pod-level singletons (see src/cache/module-cache.ts) * to ensure caches persist across requests within the same pod. * * @module rendering/orchestrator/module-loader/cache */ export { createEsmCache, createModuleCache } from "../../../cache/module-cache.js"; export declare function generateHash(str: string): Promise; //# sourceMappingURL=cache.d.ts.map