UNPKG

@squareboat/nest-cache

Version:

The cache package for your NestJS Applications

7 lines (6 loc) 227 B
import { OnModuleInit } from "@nestjs/common"; import { CacheDriver } from "./interfaces"; export declare class CacheService implements OnModuleInit { static stores: Record<string, CacheDriver>; onModuleInit(): void; }