/** * sync Command - Trigger a server-side worktree re-scan * Issue #1680: worktrees created with `git worktree add` stay invisible to * `commandmate ls` until the GUI sync button is pressed. This command calls the * same endpoint (POST /api/repositories/sync) so worktree creation → dispatch * completes from the CLI alone. */ import { Command } from 'commander'; /** * Create the sync command. * [DR1-08] Factory pattern for addCommand() registration. */ export declare function createSyncCommand(): Command; //# sourceMappingURL=sync.d.ts.map