(state: BackState, beforeProcessExit?: () => void | Promise<void>)
| 2872 | * @param beforeProcessExit Function to call right before process exit |
| 2873 | */ |
| 2874 | export async function exitApp(state: BackState, beforeProcessExit?: () => void | Promise<void>) { |
| 2875 | return exit(state, beforeProcessExit); |
| 2876 | } |
| 2877 | |
| 2878 | async function downloadGameDataRes(state: BackState, gameData: GameData) { |
| 2879 | const onDetails = (details: DownloadDetails) => { |
no test coverage detected