(state, imageName)
| 45 | return getMaskFile(state.loadedFiles?.imageFiles, imageName) ?? null; |
| 46 | }, |
| 47 | getMaskSync(state, imageName) { |
| 48 | return getMaskFile(state.loadedFiles?.imageFiles, imageName); |
| 49 | }, |
| 50 | async prefetchImages() { |
| 51 | // Local files don't need prefetching. |
| 52 | }, |
nothing calls this directly
no test coverage detected