Javascript – Can't access 'createSyncAccessHandle' on type FileSystemFileHandle
Property 'createSyncAccessHandle' does not exist on type 'FileSystemFileHandle'.ts(2339) const root = await navigator.storage.getDirectory(); const File1 = await root.getFileHandle('file.txt', { create: true }); const accessHandle = await File1.createSyncAccessHandle(); Based on the docs we have createSyncAccessHandle method but is not found, whether…