(entry: any)
| 324 | } |
| 325 | |
| 326 | function createDirectoryItem(entry: any): DirectoryDropItem { |
| 327 | return { |
| 328 | kind: 'directory', |
| 329 | name: entry.name, |
| 330 | getEntries: () => getEntries(entry) |
| 331 | }; |
| 332 | } |
| 333 | |
| 334 | async function* getEntries( |
| 335 | item: FileSystemDirectoryEntry |
no test coverage detected