| 1 | import { ICache } from './cache'; |
| 2 | |
| 3 | interface ICacheEntry { |
| 4 | value: any; |
| 5 | expiry: number; |
| 6 | } |
| 7 | |
| 8 | export class InMemoryCache implements ICache { |
| 9 | private inMemoryDb: Map<string, ICacheEntry>; |
nothing calls this directly
no outgoing calls
no test coverage detected