UNPKG

@squareboat/nest-cache

Version:

The cache package for your NestJS Applications

7 lines (6 loc) 240 B
import { CacheDriver } from "./interfaces"; export declare class Cache { static store(store?: string): CacheDriver; static genKey(obj: Record<string, any>): string; } export declare function CacheStore(store?: string): CacheDriver;