(tableElement: Element)
| 3410 | } |
| 3411 | |
| 3412 | function getHeaderRows(tableElement: Element): HTMLElement[] { |
| 3413 | return [].slice.call(tableElement.querySelectorAll('.cdk-header-row'))!; |
| 3414 | } |
| 3415 | |
| 3416 | function getFooterRows(tableElement: Element): HTMLElement[] { |
| 3417 | return [].slice.call(tableElement.querySelectorAll('.cdk-footer-row'))!; |
no outgoing calls
no test coverage detected