TableRow represents one row of data in the table.
| 21 | |
| 22 | // TableRow represents one row of data in the table. |
| 23 | type TableRow interface { |
| 24 | Columns() []string |
| 25 | ID() string |
| 26 | } |
| 27 | |
| 28 | // TableModel is a shared table component with navigation, sorting, and filtering. |
| 29 | // It wraps bubbles/table for rendering and keyboard navigation while keeping |
no outgoing calls
no test coverage detected