Fix RedisClient import (#2183)
parent
d9ced885e1
commit
efd9e7a5c7
@ -1,8 +1,8 @@
|
|||||||
import { Store } from 'cache-manager';
|
import { Store } from 'cache-manager';
|
||||||
import Redis from 'redis';
|
import { RedisClient } from 'redis';
|
||||||
|
|
||||||
export interface RedisStore extends Store {
|
export interface RedisStore extends Store {
|
||||||
getClient: () => Redis.RedisClient;
|
getClient: () => RedisClient;
|
||||||
isCacheableValue: (value: any) => boolean;
|
isCacheableValue: (value: any) => boolean;
|
||||||
name: 'redis';
|
name: 'redis';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue