(tableElement: Element)
| 1073 | } |
| 1074 | |
| 1075 | function getHeaderRows(tableElement: Element): Element[] { |
| 1076 | return [].slice.call(tableElement.querySelectorAll('.mat-mdc-header-row'))!; |
| 1077 | } |
| 1078 | |
| 1079 | function getFooterRows(tableElement: Element): Element[] { |
| 1080 | return [].slice.call(tableElement.querySelectorAll('.mat-mdc-footer-row'))!; |
no outgoing calls
no test coverage detected