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.
7 lines (6 loc) • 334 B
TypeScript
import { DynamicModule } from '@nestjs/common';
import { RedisModuleAsyncOptions, RedisModuleOptions } from './redis.interface';
export declare class RedisModule {
static register(options: RedisModuleOptions | RedisModuleOptions[]): DynamicModule;
static forRootAsync(options: RedisModuleAsyncOptions): DynamicModule;
}