(tableElement: Element)
| 1077 | } |
| 1078 | |
| 1079 | function getFooterRows(tableElement: Element): Element[] { |
| 1080 | return [].slice.call(tableElement.querySelectorAll('.mat-mdc-footer-row'))!; |
| 1081 | } |
| 1082 | |
| 1083 | function getRows(tableElement: Element): Element[] { |
| 1084 | return getElements(tableElement, '.mat-mdc-row'); |
no outgoing calls
no test coverage detected