mirror of
https://github.com/zadam/trilium.git
synced 2026-06-12 01:51:17 +02:00
9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import { deferred } from "@triliumnext/commons";
|
|
|
|
export const dbReady = deferred<void>();
|
|
|
|
// TODO: Proper impl.
|
|
setTimeout(() => {
|
|
dbReady.resolve();
|
|
}, 850);
|