worktree-tool
Version:
A command-line tool for managing Git worktrees with integrated tmux/shell session management
18 lines • 685 B
TypeScript
import { Command } from "commander";
import { StatusOptions } from "../core/types.js";
import { BaseCommand, CommandContext } from "./base.js";
/**
* Status command - shows git status across all worktrees
*/
export declare class StatusCommand extends BaseCommand<StatusOptions> {
protected requiresConfig(): boolean;
protected requiresGitRepo(): boolean;
protected showVerboseStatus(): boolean;
protected validateOptions(_options: StatusOptions): void;
protected executeCommand(options: StatusOptions, context: CommandContext): Promise<void>;
}
/**
* Create the status command
*/
export declare const statusCommand: Command;
//# sourceMappingURL=status.d.ts.map