* Returns the row groups within the table.
()
| 526 | * Returns the row groups within the table. |
| 527 | */ |
| 528 | getRowGroups(): HTMLElement[] { |
| 529 | let table = this._table; |
| 530 | return table ? within(table).queryAllByRole('rowgroup') : []; |
| 531 | } |
| 532 | |
| 533 | /** |
| 534 | * Returns the columns within the table. |
no outgoing calls
no test coverage detected