* TypeScript declarations for the File Handling API's LaunchQueue * @see https://developer.chrome.com/docs/capabilities/web-apis/file-handling
| 9 | */ |
| 10 | |
| 11 | interface LaunchParams { |
| 12 | /** The target URL that was launched (may contain query params for protocol handlers) */ |
| 13 | targetURL?: string |
| 14 | /** File handles from file_handlers launches */ |
| 15 | files?: FileSystemFileHandle[] |
| 16 | } |
| 17 | |
| 18 | interface LaunchQueue { |
| 19 | /** Set a consumer function to handle launch events */ |
nothing calls this directly
no outgoing calls
no test coverage detected