interface ICacheInstance {
    clear(): void;
    get(key: string): any;
    set(key: string, value: any): void;
}

Methods

Methods