(details: DownloadDetails)
| 1600 | if (gameData && !gameData.presentOnDisk) { |
| 1601 | // Download GameData |
| 1602 | const onDetails = (details: DownloadDetails) => { |
| 1603 | state.socketServer.broadcast(BackOut.SET_PLACEHOLDER_DOWNLOAD_DETAILS, details); |
| 1604 | }; |
| 1605 | const onProgress = (percent: number) => { |
| 1606 | // Sent to PLACEHOLDER download dialog on client |
| 1607 | state.socketServer.broadcast(BackOut.SET_PLACEHOLDER_DOWNLOAD_PERCENT, percent); |
no test coverage detected