()
| 10 | |
| 11 | // Helper function to check File System Access API support |
| 12 | const isFileSystemAccessSupported = (): boolean => { |
| 13 | return 'showOpenFilePicker' in window && 'FileSystemFileHandle' in window; |
| 14 | }; |
| 15 | |
| 16 | // File picker configuration |
| 17 | const FILE_PICKER_CONFIG = { |