Files
vibn-frontend/lib/types/mvp.ts

13 lines
236 B
TypeScript

export interface MvpPlan {
projectId: string;
coreFlows: string[];
coreFeatures: string[];
supportingFeatures: string[];
outOfScope: string[];
technicalTasks: string[];
blockers: string[];
overallConfidence: number;
}