Stirling-PDF/frontend/src/core/services/backendReadinessGuard.ts
James Brunton 044bf3c2aa
Improve loading speed of desktop app (#4865)
# Description of Changes
Improve loading speed of desktop app by loading a default config until
the backend has spawned.
2025-11-11 11:54:43 +00:00

8 lines
220 B
TypeScript

/**
* Default backend readiness guard (web builds do not need to wait for
* anything outside the browser, so we always report ready).
*/
export async function ensureBackendReady(): Promise<boolean> {
return true;
}