@shutootaki/gwm
Version:
git worktree manager CLI
17 lines • 531 B
TypeScript
import React from 'react';
import { Worktree } from '../utils/index.js';
interface WorktreeRowProps {
worktree: Worktree;
repoRoot: string;
columnWidths: {
branchWidth: number;
pathWidth: number;
};
}
/**
* Worktree 1 行分の描画を司る小さなコンポーネント。
* レンダリングのみに責任を持ち、ロジックは受け取った props で完結する。
*/
export declare const WorktreeRow: React.FC<WorktreeRowProps>;
export {};
//# sourceMappingURL=WorktreeRow.d.ts.map