realtime-leaderboard
Version:
Real-time powerful leaderboard with Redis
18 lines • 463 B
TypeScript
export declare enum RedisClientType {
RedisClient = "RedisClient",
Redis = "Redis"
}
export declare class CustomRedisClient {
type: RedisClientType;
zrange: Function;
zadd: Function;
zscore: Function;
zrevrange: Function;
zrevrank: Function;
zremrangebyrank: Function;
zcount: Function;
constructor(redisClient: any);
private static getClientType;
private init;
}
//# sourceMappingURL=CustomRedisClient.d.ts.map