(endpoint: string, options?: Record<string, unknown>)
| 137 | } |
| 138 | |
| 139 | protected removeCache(endpoint: string, options?: Record<string, unknown>) { |
| 140 | const cacheKey = this.serializeCacheKey(endpoint, { |
| 141 | ...options, |
| 142 | }); |
| 143 | this.cache?.del(cacheKey); |
| 144 | } |
| 145 | |
| 146 | private serializeCacheKey( |
| 147 | endpoint: string, |
no test coverage detected