| 71 | |
| 72 | // Add these interfaces at the top of the file with other imports |
| 73 | interface RaisedHandParticipant { |
| 74 | name: string; |
| 75 | party: string | null; |
| 76 | status: 'raised' | 'approved'; |
| 77 | } |
| 78 | |
| 79 | interface ParticipantInfo { |
| 80 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected