worktree-tool
Version:
A command-line tool for managing Git worktrees with integrated tmux/shell session management
16 lines • 555 B
TypeScript
import { WorktreeConfig } from "../core/types.js";
export interface ParsedCommand {
type: "predefined" | "inline";
command: string;
args: string[];
mode: "window" | "inline" | "background" | "exit";
commandName?: string;
}
export interface ExecOptions {
worktrees?: string;
verbose?: boolean;
quiet?: boolean;
mode?: "window" | "inline" | "background" | "exit";
}
export declare function parseExecCommand(args: string[], config: WorktreeConfig, options: ExecOptions): ParsedCommand;
//# sourceMappingURL=parser.d.ts.map