silverbullet/plugs/sync/sync.ts

8 lines
247 B
TypeScript
Raw Normal View History

import { editor, sync } from "@silverbulletmd/silverbullet/syscalls";
export async function syncSpaceCommand() {
await editor.flashNotification("Syncing space...");
2023-08-16 02:24:02 +08:00
await sync.scheduleSpaceSync();
await editor.flashNotification("Done.");
}