| 61 | months: string; |
| 62 | crops: string[]; |
| 63 | } |
| 64 | |
| 65 | interface CropPlan { |
| 66 | zones: CropZone[]; |
| 67 | intercropping: IntercroppingPair[]; |
| 68 | rotation_plan: RotationStep[]; |
| 69 | summary: string; |
| 70 | tips: string[]; |
| 71 | overall_score: number; |
| 72 | water_saving_pct: number; |
| 73 | expected_revenue_increase_pct: number; |
| 74 | planner_source?: string; |
| 75 | generated_from?: "edge" | "local"; |
| 76 | } |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected