You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
export { RedisModules, RedisFunctions, RedisScripts, RespVersions, TypeMapping/*, CommandPolicies*/, RedisArgument } from './lib/RESP/types';
|
|
export { RESP_TYPES } from './lib/RESP/decoder';
|
|
export { VerbatimString } from './lib/RESP/verbatim-string';
|
|
export { defineScript } from './lib/lua-script';
|
|
// export * from './lib/errors';
|
|
|
|
import RedisClient, { RedisClientOptions, RedisClientType } from './lib/client';
|
|
export { RedisClientOptions, RedisClientType };
|
|
export const createClient = RedisClient.create;
|
|
|
|
import { RedisClientPool, RedisPoolOptions, RedisClientPoolType } from './lib/client/pool';
|
|
export { RedisClientPoolType, RedisPoolOptions };
|
|
export const createClientPool = RedisClientPool.create;
|
|
|
|
import RedisCluster, { RedisClusterOptions, RedisClusterType } from './lib/cluster';
|
|
export { RedisClusterType, RedisClusterOptions };
|
|
export const createCluster = RedisCluster.create;
|
|
|
|
// export { GeoReplyWith } from './lib/commands/generic-transformers';
|
|
|
|
// export { SetOptions } from './lib/commands/SET';
|
|
|
|
// export { RedisFlushModes } from './lib/commands/FLUSHALL';
|