(element: Element, query: string)
| 3406 | } |
| 3407 | |
| 3408 | function getElements(element: Element, query: string): HTMLElement[] { |
| 3409 | return [].slice.call(element.querySelectorAll(query)); |
| 3410 | } |
| 3411 | |
| 3412 | function getHeaderRows(tableElement: Element): HTMLElement[] { |
| 3413 | return [].slice.call(tableElement.querySelectorAll('.cdk-header-row'))!; |
no outgoing calls
no test coverage detected