| 44 | |
| 45 | // Tool part interface for type safety |
| 46 | interface ToolPartLike { |
| 47 | type: string |
| 48 | toolCallId: string |
| 49 | state?: string |
| 50 | input?: { xml?: string; edits?: EditPair[] } & Record<string, unknown> |
| 51 | output?: string |
| 52 | } |
| 53 | |
| 54 | function EditDiffDisplay({ edits }: { edits: EditPair[] }) { |
| 55 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected