7c825348b2
* Query regen * Fix anchor completion * Dependency fixes * Changelog update
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { editor } from "$sb/silverbullet-syscall/mod.ts";
|
|
|
|
export async function syncSpaceCommand() {
|
|
await editor.flashNotification("Syncing space...");
|
|
await editor.syncSpace();
|
|
await editor.flashNotification("Done.");
|
|
}
|