(imageId: number)
| 102 | * Get the file path for a stored image by ID. |
| 103 | */ |
| 104 | export function getStoredImagePath(imageId: number): string | null { |
| 105 | return storedImagePaths.get(imageId) ?? null |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Clear the in-memory cache of stored image paths. |
no test coverage detected