8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
|
import { editor, sync } from "$sb/syscalls.ts";
|
||
|
|
||
|
export async function syncSpaceCommand() {
|
||
|
await editor.flashNotification("Syncing space...");
|
||
|
await sync.scheduleSpaceSync();
|
||
|
await editor.flashNotification("Done.");
|
||
|
}
|