(loadedMillis: number)
| 306 | |
| 307 | /** @internal */ |
| 308 | export const makeEntryStats = (loadedMillis: number): Cache.EntryStats => ({ |
| 309 | loadedMillis |
| 310 | }) |
| 311 | |
| 312 | class CacheImpl<in out Key, in out Value, in out Error> implements Cache.Cache<Key, Value, Error> { |
| 313 | readonly [CacheTypeId] = cacheVariance |
no outgoing calls
no test coverage detected