mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
1 changed files with 2 additions and 2 deletions
@ -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