You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
15 lines
432 B
TypeScript
15 lines
432 B
TypeScript
import RedisClient from './lib/client';
|
|
import RedisCluster from './lib/cluster';
|
|
|
|
export { RedisClientType, RedisClientOptions } from './lib/client';
|
|
|
|
export const createClient = RedisClient.create;
|
|
|
|
export const commandOptions = RedisClient.commandOptions;
|
|
|
|
export { RedisClusterType, RedisClusterOptions } from './lib/cluster';
|
|
|
|
export const createCluster = RedisCluster.create;
|
|
|
|
export { defineScript } from './lib/lua-script';
|