interface Cache<T> {
    content: { [cacheKey: string]: T };
    resetCacheContent: () => void;
}

Type Parameters

  • T

Properties

content: { [cacheKey: string]: T }
resetCacheContent: () => void