mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 19:10:47 +02:00
Co-authored-by: James Brunton <[email protected]> Co-authored-by: James Brunton <[email protected]>
9 lines
308 B
TypeScript
9 lines
308 B
TypeScript
/**
|
|
* Default backend readiness guard (web builds do not need to wait for
|
|
* anything outside the browser, so we always report ready).
|
|
* @param _endpoint - Optional endpoint path (not used in web builds)
|
|
*/
|
|
export async function ensureBackendReady(_endpoint?: string): Promise<boolean> {
|
|
return true;
|
|
}
|