UNPKG

@allgemein/moduls

Version:

Commons-moduls handles and manages contextual moduls for complex and modular applications.

9 lines (8 loc) 162 B
/** * Implementation for a cache interface */ export interface ICache { get(key: string): any; set(key: string, value: any): void; clear(): void; }