dmux
Version:
Tmux pane manager with AI agent integration for parallel development workflows
9 lines • 431 B
TypeScript
import type { DmuxPane } from '../types.js';
export default function usePanes(panesFile: string, skipLoading: boolean): {
readonly panes: DmuxPane[];
readonly setPanes: import("react").Dispatch<import("react").SetStateAction<DmuxPane[]>>;
readonly isLoading: boolean;
readonly loadPanes: () => Promise<void>;
readonly savePanes: (newPanes: DmuxPane[]) => Promise<void>;
};
//# sourceMappingURL=usePanes.d.ts.map