Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(config: CacheConfig) {
super();
this._cache = new LRUMap(config.cache_size);
// @ts-ignore
this._cache.items = new BigMap(config.max_big_map_size);
}