File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
export type { Store , StoreConfig , Stores } from 'cache-manager'
2
2
export { redisStore } from './redis'
3
+ export type { RedisStore , RedisClusterConfig } from './redis'
3
4
export * from './manager'
4
5
export { memoryStore } from './memory'
5
6
export type { MemoryStore , MemoryCache , MemoryConfig } from './memory'
Original file line number Diff line number Diff line change 1
1
import type { RedisOptions } from 'ioredis'
2
2
import { Redis } from 'ioredis'
3
3
import type { Config } from 'cache-manager'
4
+ import type { RedisStore } from 'cache-manager-ioredis-yet'
4
5
import { RedisClusterConfig , redisInsStore } from 'cache-manager-ioredis-yet'
5
6
6
7
export function redisStore (
@@ -22,3 +23,7 @@ export {
22
23
RedisClusterConfig ,
23
24
redisInsStore ,
24
25
}
26
+
27
+ export type {
28
+ RedisStore ,
29
+ }
Original file line number Diff line number Diff line change 1
- import type { Keyv } from 'keyv'
2
-
3
- export type Store = Keyv
You can’t perform that action at this time.
0 commit comments