* Retrieves a cached value by key. * * @param key - The cache key * @returns The cached value or undefined if not found
(key: string)
| 35 | * @returns The cached value or undefined if not found |
| 36 | */ |
| 37 | get(key: string): T | undefined { |
| 38 | return this.cache.get(key) |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Stores a value in the cache. |
no outgoing calls