UNPKG

worktree-tool

Version:

A command-line tool for managing Git worktrees with integrated tmux/shell session management

11 lines 374 B
export interface PortRange { start: number; end: number; } export declare class PortManager { parseRange(range: string): PortRange; isPortAvailable(port: number): Promise<boolean>; findAvailablePorts(start: number, end: number, count: number): Promise<number[]>; } export declare const portManager: PortManager; //# sourceMappingURL=port-manager.d.ts.map