| 36 | } |
| 37 | |
| 38 | interface DevicePanelProps { |
| 39 | collapsed?: boolean; |
| 40 | devices?: Device[]; |
| 41 | stats?: { |
| 42 | total: number; |
| 43 | online: number; |
| 44 | offline: number; |
| 45 | rooms: number; |
| 46 | }; |
| 47 | loading?: boolean; |
| 48 | onRefresh?: () => void; |
| 49 | } |
| 50 | |
| 51 | interface Room { |
| 52 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected