mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-02-01 20:10:35 +01:00
# Description of Changes Improve loading speed of desktop app by loading a default config until the backend has spawned.
8 lines
220 B
TypeScript
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;
|
|
}
|