import { CacheDriverInterface } from "../types.mjs"; import { BaseCacheEngine } from "./BaseCacheEngine.mjs"; //#region ../cache/src/drivers/PlainSessionStorageDriver.d.ts declare class PlainSessionStorageDriver extends BaseCacheEngine implements CacheDriverInterface { /** * Set the storage engine * * `sessionStorage` is synchronous; `BaseCacheEngine` wraps every call * to it in `Promise.resolve(...)` so this driver exposes the same * async contract as the IndexedDB one. */ storage: Storage; } //#endregion export { PlainSessionStorageDriver }; //# sourceMappingURL=PlainSessionStorageDriver.d.mts.map