(filePath: string)
| 13 | 'png', 'jpg', 'jpeg', 'gif', 'bmp', 'webp', 'svg', 'ico', 'avif', |
| 14 | ]) |
| 15 | |
| 16 | function isImageFile(filePath: string) { |
| 17 | const ext = filePath.split('.').pop()?.toLowerCase() |
| 18 | return ext ? IMAGE_EXTENSIONS.has(ext) : false |
| 19 | } |
| 20 | |
| 21 | type OpenTab = { |