Stores a value in the cache under the given key.
(key: K, val: V)
| 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. */ |
| 19 | delete(key: K): unknown; |
| 20 | } |
no outgoing calls
no test coverage detected