* Base interface for all display nodes
| 9 | * Base interface for all display nodes |
| 10 | */ |
| 11 | interface BaseNode { |
| 12 | /** Unique identifier for this node */ |
| 13 | id: string; |
| 14 | /** Type discriminator */ |
| 15 | type: |
| 16 | | 'message' |
| 17 | | 'assistantGroup' |
| 18 | | 'compare' |
| 19 | | 'branch' |
| 20 | | 'agentCouncil' |
| 21 | | 'tasks' |
| 22 | | 'compressedGroup' |
| 23 | | 'compareGroup' |
| 24 | | 'signalCallbacks'; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Basic message node - leaf node representing a single message |
nothing calls this directly
no outgoing calls
no test coverage detected