Returns the cached value associated with the given key, if present.
(key: K)
| 13 | has(key: K): boolean; |
| 14 | /** Returns the cached value associated with the given key, if present. */ |
| 15 | get(key: K): V | undefined; |
| 16 | /** Stores a value in the cache under the given key. */ |
| 17 | set(key: K, val: V): unknown; |
| 18 | /** Removes the value associated with the given key from the cache. */ |
no outgoing calls