UNPKG

@akiojin/claude-worktree

Version:

Interactive Git worktree manager for Claude Code with graphical branch selection

18 lines 980 B
import { BranchInfo, CleanupTarget } from './types.js'; import { WorktreeInfo } from '../worktree.js'; export declare function getBranchTypeColor(branchType: BranchInfo['branchType']): import("chalk").ChalkInstance; export declare function printWelcome(): Promise<void>; export declare function displayBranchTable(): Promise<void>; export declare function printSuccess(message: string): void; export declare function printError(message: string): void; export declare function printInfo(message: string): void; export declare function printWarning(message: string): void; export declare function printExit(): void; export declare function printStatistics(branches: BranchInfo[], worktrees: WorktreeInfo[]): Promise<void>; export declare function displayCleanupTargets(targets: CleanupTarget[]): void; export declare function displayCleanupResults(results: Array<{ target: CleanupTarget; success: boolean; error?: string; }>): void; //# sourceMappingURL=display.d.ts.map