Get cached value, or null if not found/expired
(key: string)
| 28 | export interface LRUCache<T> { |
| 29 | /** Get cached value, or null if not found/expired */ |
| 30 | get(key: string): T | null; |
| 31 | /** Get the full entry with metadata, or null if not found/expired */ |
| 32 | getEntry(key: string): LRUCacheEntry<T> | null; |
| 33 | /** Store a value in the cache */ |
no outgoing calls