| 5 | import type { CalculatedColumn, GroupRow } from './types'; |
| 6 | |
| 7 | interface GroupCellProps<R, SR> { |
| 8 | id: string; |
| 9 | groupKey: unknown; |
| 10 | childRows: readonly R[]; |
| 11 | toggleGroup: (expandedGroupId: unknown) => void; |
| 12 | isExpanded: boolean; |
| 13 | column: CalculatedColumn<R, SR>; |
| 14 | row: GroupRow<R>; |
| 15 | isCellSelected: boolean; |
| 16 | groupColumnIndex: number; |
| 17 | isGroupByColumn: boolean; |
| 18 | } |
| 19 | |
| 20 | function GroupCell<R, SR>({ |
| 21 | id, |
nothing calls this directly
no outgoing calls
no test coverage detected