(params: CacheSafeParams | null)
| 73 | let lastCacheSafeParams: CacheSafeParams | null = null |
| 74 | |
| 75 | export function saveCacheSafeParams(params: CacheSafeParams | null): void { |
| 76 | lastCacheSafeParams = params |
| 77 | } |
| 78 | |
| 79 | export function getLastCacheSafeParams(): CacheSafeParams | null { |
| 80 | return lastCacheSafeParams |