UNPKG

dmux

Version:

Tmux pane manager with AI agent integration for parallel development workflows

16 lines 438 B
import React from 'react'; interface MergePaneProps { pane: { id: string; slug: string; prompt: string; paneId: string; worktreePath?: string; }; onComplete: () => void; onCancel: () => void; mainBranch: string; } export default function MergePane({ pane, onComplete, onCancel, mainBranch }: MergePaneProps): React.JSX.Element; export {}; //# sourceMappingURL=MergePane.d.ts.map