feat(comparisonStore): add isLoading getter

This commit is contained in:
Ilia Mashkov
2026-02-06 11:55:31 +03:00
parent e4aacf609e
commit 4b440496ba

View File

@@ -136,6 +136,10 @@ class ComparisonStore {
return !!this.#fontA && !!this.#fontB;
}
get isLoading() {
return this.#isRestoring;
}
/**
* Public initializer (optional, as constructor starts it)
* Kept for compatibility if manual re-init is needed