@squareboat/nest-cache
Version:
The cache package for your NestJS Applications
8 lines (7 loc) • 326 B
TypeScript
import { DynamicModule } from '@nestjs/common';
import { CacheAsyncOptions, CacheOptions } from './interfaces';
export declare class CacheModule {
static register(options: CacheOptions): DynamicModule;
static registerAsync(options: CacheAsyncOptions): DynamicModule;
private static createStorageOptionsProvider;
}