| 535 | export type StopResult = z.infer<typeof StopResultSchema>; |
| 536 | export type TreeTask = z.infer<typeof TreeTaskSchema>; |
| 537 | export interface TreeState { |
| 538 | rootSlug: string | null; |
| 539 | tasks: TreeTask[]; |
| 540 | } |
| 541 | |
| 542 | export function parsePlanJson(text: string, source: string): Plan { |
| 543 | return parseJsonWithSchema({ |
nothing calls this directly
no outgoing calls
no test coverage detected