* Sets the item to the cache. `origin` is used for cache invalidation and should reflect the change in data.
(name: string, data: any, origin: string, expiration?: number)
| 9 | * Sets the item to the cache. `origin` is used for cache invalidation and should reflect the change in data. |
| 10 | */ |
| 11 | set(name: string, data: any, origin: string, expiration?: number): void | Promise<void>; |
| 12 | |
| 13 | /** |
| 14 | * Removes the item from cache. |
no outgoing calls
no test coverage detected