(element: Element, query: string)
| 1069 | } |
| 1070 | |
| 1071 | function getElements(element: Element, query: string): Element[] { |
| 1072 | return [].slice.call(element.querySelectorAll(query)); |
| 1073 | } |
| 1074 | |
| 1075 | function getHeaderRows(tableElement: Element): Element[] { |
| 1076 | return [].slice.call(tableElement.querySelectorAll('.mat-mdc-header-row'))!; |
no outgoing calls
no test coverage detected