| 4 | import { downloadImage } from '../utils/fileUtils'; |
| 5 | |
| 6 | interface ResultDisplayProps { |
| 7 | content: GeneratedContent; |
| 8 | onUseImageAsInput: (imageUrl: string) => void; |
| 9 | onImageClick: (imageUrl: string) => void; |
| 10 | originalImageUrl: string | null; |
| 11 | } |
| 12 | |
| 13 | type ViewMode = 'result' | 'side-by-side' | 'slider'; |
| 14 | type TwoStepViewMode = 'result' | 'grid' | 'slider'; |
nothing calls this directly
no outgoing calls
no test coverage detected