UNPKG

@midwayjs/cache-manager

Version:
7 lines 367 B
import type { Config, Store } from './base'; import { IMidwayContainer } from '@midwayjs/core'; export interface RedisStore extends Store { readonly isCacheable: (value: unknown) => boolean; } export declare function createRedisStore(instanceName: string): (options: Config, container: IMidwayContainer) => Promise<RedisStore>; //# sourceMappingURL=store.d.ts.map