(...args: Args)
| 112 | }; |
| 113 | |
| 114 | const del = async (...args: Args) => { |
| 115 | const key = buildKey(...args); |
| 116 | |
| 117 | memCache.delete(key); |
| 118 | |
| 119 | const cacheManager = await getCacheManager(); |
| 120 | await cacheManager.delete(key); |
| 121 | }; |
| 122 | |
| 123 | return { get, del, update }; |
| 124 | } |
nothing calls this directly
no test coverage detected