(tableElement: Element)
| 3414 | } |
| 3415 | |
| 3416 | function getFooterRows(tableElement: Element): HTMLElement[] { |
| 3417 | return [].slice.call(tableElement.querySelectorAll('.cdk-footer-row'))!; |
| 3418 | } |
| 3419 | |
| 3420 | function getRows(tableElement: Element): HTMLElement[] { |
| 3421 | return getElements(tableElement, '.cdk-row'); |
no outgoing calls
no test coverage detected