UNPKG

@ngx-toolkit/cache

Version:

Angular cache with Universal support

10 lines (9 loc) 268 B
import { Cache } from '../cache.model'; export declare class NoOpCache implements Cache { readonly name: string; constructor(name: string); clear(): void; evict(key: string): void; get<T>(key: string): T; put<T>(key: string, value: T): void; }