/** * Redis Platform Adapters * * Runtime-agnostic Redis adapter interface and implementation. * Uses the npm `redis` client on both Deno and Node.js runtimes. * * @module platform/adapters/redis */ export type { NodeRedisClient, NodeRedisModule } from "./types.js"; export type { RedisAdapter } from "./interface.js"; export { NodeRedisAdapter } from "./node.js"; export { clearModuleCache, getRedisModule } from "./modules.js"; export { arrayToObject } from "./utils.js"; //# sourceMappingURL=index.d.ts.map