together-code
Version:
AI-powered coding assistant that plans, then builds
12 lines (11 loc) • 318 B
TypeScript
import React from 'react';
import { Plan } from '../services/togetherAI.js';
interface PlanDisplayProps {
plan: Plan;
currentStepId?: string;
completedSteps: string[];
onApprove: () => void;
onModify: () => void;
}
declare const PlanDisplay: React.FC<PlanDisplayProps>;
export default PlanDisplay;