Array of application IDs to wait for
Configuration options
Promise that resolves when all apps are started
// Wait for single app
await waitForAppsToStart(['kosdev.ddk']);
// Wait for multiple apps with custom timeout
await waitForAppsToStart([
'kosdev.ddk',
'com.kondra.summer.2025.controlledPourPlugin'
], { timeout: 60000 });
// Wait without throwing on timeout
const success = await waitForAppsToStart(['kosdev.ddk'], {
throwOnTimeout: false
});
Wait for specific KOS applications to be started