@bobmatnyc/claude-pm-portfolio-manager
Version:
Claude PM Portfolio Management Dashboard - React-based monitoring and reporting for Claude PM managed projects
9 lines (8 loc) • 366 B
TypeScript
import { ClaudeProcess } from '../../types/processTracker';
interface ProcessActionsProps {
process: ClaudeProcess;
onAction: (pid: number, action: 'stop' | 'restart' | 'kill') => void;
disabled?: boolean;
}
export default function ProcessActions({ process, onAction, disabled }: ProcessActionsProps): import("react/jsx-runtime").JSX.Element;
export {};