| 12 | |
| 13 | declare global { |
| 14 | interface Window { |
| 15 | BoxedWineConfig: { |
| 16 | consoleLog?: (log: string) => void; |
| 17 | isRunning?: boolean; |
| 18 | urlParams: string; |
| 19 | }; |
| 20 | BoxedWineShell: (onLoad: () => void) => void; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | const getExeName = (files: Unzipped): string | undefined => { |
nothing calls this directly
no outgoing calls
no test coverage detected