(cacheKey: string)
| 802 | } |
| 803 | |
| 804 | override get(cacheKey: string): ClientSideCacheEntry | undefined { |
| 805 | if (this.#disabled) { |
| 806 | return undefined; |
| 807 | } |
| 808 | |
| 809 | return super.get(cacheKey); |
| 810 | } |
| 811 | |
| 812 | override has(cacheKey: string): boolean { |
| 813 | if (this.#disabled) { |