UNPKG

@lucidcms/core

Version:

The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.

13 lines (12 loc) 516 B
import { KVAdapterInstance } from "../types.mjs"; //#region src/libs/kv/adapters/passthrough.d.ts /** * Passthrough KV adapter implementation. * * This adapter is a no-op implementation of both KV adapter call shapes. * It does not perform any actual key-value operations and returns as if the operation was successful and that there is no cache. */ declare const passthroughKVAdapter: () => KVAdapterInstance; //#endregion export { passthroughKVAdapter as default }; //# sourceMappingURL=passthrough.d.mts.map