@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
11 lines (10 loc) • 389 B
text/typescript
import { KVAdapterInstance } from "./types.mjs";
import { Config } from "../../types/config.mjs";
//#region src/libs/kv/get-adapter.d.ts
/**
* Returns the ideal KV adapter based on config and the runtime environment
*/
declare const getKVAdapter: (config: Config) => Promise<KVAdapterInstance>;
//#endregion
export { getKVAdapter as default };
//# sourceMappingURL=get-adapter.d.mts.map