(input: Input)
| 161 | }, |
| 162 | |
| 163 | preload(input: Input): void { |
| 164 | // Prevent access outside of render. |
| 165 | readContext(CacheContext); |
| 166 | |
| 167 | const key = hashInput(input); |
| 168 | accessResult(resource, fetch, input, key); |
| 169 | }, |
| 170 | |
| 171 | write(key: Key, value: Value): void { |
| 172 | const entriesForResource = getEntriesForResource(resource); |
nothing calls this directly
no test coverage detected