( imageFile: File | undefined, imageName: string, enabled: boolean )
| 97 | * @returns The thumbnail URL or null |
| 98 | */ |
| 99 | export function useThumbnail( |
| 100 | imageFile: File | undefined, |
| 101 | imageName: string, |
| 102 | enabled: boolean |
| 103 | ): string | null { |
| 104 | return thumbnailCache.useCache(imageFile, imageName, enabled); |
| 105 | } |
no outgoing calls
no test coverage detected