@jasonfutch/worktree-manager 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ export declare class WorktreeManagerTUI {
2
+ private screen;
3
+ private mainBox;
4
+ private worktreeList;
5
+ private detailBox;
6
+ private statusBar;
7
+ private helpBox;
8
+ private inputBox;
9
+ private git;
10
+ private worktrees;
11
+ private selectedIndex;
12
+ private repoPath;
13
+ private repoName;
14
+ private isModalOpen;
15
+ private autoRefreshInterval;
16
+ private readonly AUTO_REFRESH_MS;
17
+ constructor(repoPath: string);
18
+ private setupKeyBindings;
19
+ private moveSelection;
20
+ private updateDetails;
21
+ private refresh;
22
+ private updateList;
23
+ private setStatus;
24
+ private showConfirm;
25
+ private showTextInputConfirm;
26
+ private isProtectedBranch;
27
+ private showHelp;
28
+ private promptCreateWorktree;
29
+ private promptDeleteWorktree;
30
+ private openInEditor;
31
+ private openEditorTool;
32
+ private openTerminal;
33
+ private launchAI;
34
+ private launchAITool;
35
+ private showDetails;
36
+ private startAutoRefresh;
37
+ private stopAutoRefresh;
38
+ start(): Promise<void>;
39
+ }