"use strict"; /** * File system operations for prompt cache (Browser version). * * This stub is used in browser builds via the package.json browser field. * File operations are not supported in browser environments. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.dumpCache = dumpCache; exports.loadCache = loadCache; /** * Dump cache entries to a JSON file. * @throws Error - Always throws in browser environments. */ function dumpCache(_filePath, _entries) { throw new Error("dump() is not supported in browser environments."); } /** * Load cache entries from a JSON file. * @throws Error - Always throws in browser environments. */ function loadCache(_filePath) { throw new Error("load() is not supported in browser environments."); }