* Gets the items under `name` key from the cache.
(name: string)
| 4 | * Gets the items under `name` key from the cache. |
| 5 | */ |
| 6 | get<T = any>(name: string): T | Promise<T | undefined> | undefined; |
| 7 | |
| 8 | /** |
| 9 | * Sets the item to the cache. `origin` is used for cache invalidation and should reflect the change in data. |
no outgoing calls
no test coverage detected