UNPKG

sync-worktrees

Version:

Automatically synchronize Git worktrees with remote branches - perfect for multi-branch development workflows

14 lines 501 B
import type { Config } from "../types"; export interface CliOptions extends Partial<Config> { config?: string; filter?: string; list?: boolean; bareRepoDir?: string; branchMaxAge?: string; skipLfs?: boolean; noUpdateExisting?: boolean; } export declare function parseArguments(): CliOptions; export declare function isInteractiveMode(config: Partial<Config>): boolean; export declare function reconstructCliCommand(config: Config): string; //# sourceMappingURL=cli.d.ts.map