import type { MemoryCache } from 'cache-manager'; import type { RedisCache } from '../../services/cache/redis.cache-manager'; export type TaggedRedisCache = RedisCache & { kind: 'redis'; }; export type TaggedMemoryCache = MemoryCache & { kind: 'memory'; }; export type Hash = Record; export type MaybeHash = Hash | undefined;