| 5 | import { headerRowClassname } from './HeaderRow'; |
| 6 | |
| 7 | export interface GroupedColumnHeaderRowProps<R, SR> { |
| 8 | rowIdx: number; |
| 9 | level: number; |
| 10 | columns: readonly CalculatedColumn<R, SR>[]; |
| 11 | selectCell: (position: Position) => void; |
| 12 | selectedCellIdx: number | undefined; |
| 13 | } |
| 14 | |
| 15 | function GroupedColumnHeaderRow<R, SR>({ |
| 16 | rowIdx, |
nothing calls this directly
no outgoing calls
no test coverage detected