UNPKG

redis-for-nestjs-v8

Version:

This is a clone of https://github.com/GyanendroKh/nestjs-redis#nest8-fix this fix by skunight. You probably shouldn't use this, since I only did this to work around the work aournd. Yea.

9 lines (8 loc) 286 B
import { Redis } from 'ioredis'; import { RedisClient } from './redis-client.provider'; export declare class RedisService { private readonly redisClient; constructor(redisClient: RedisClient); getClient(name?: string): Redis; getClients(): Map<string, Redis>; }