| 3 | export type ImageMap = { [s: string]: HTMLImageElement; }; |
| 4 | |
| 5 | export class ImageRepository { |
| 6 | private static repository: ImageMap = {}; |
| 7 | |
| 8 | public static storeImage(id: string, image: HTMLImageElement) { |
nothing calls this directly
no outgoing calls
no test coverage detected