Gets all of the sort headers in the `mat-sort`.
(filter: SortHeaderHarnessFilters = {})
| 25 | |
| 26 | /** Gets all of the sort headers in the `mat-sort`. */ |
| 27 | async getSortHeaders(filter: SortHeaderHarnessFilters = {}): Promise<MatSortHeaderHarness[]> { |
| 28 | return this.locatorForAll(MatSortHeaderHarness.with(filter))(); |
| 29 | } |
| 30 | |
| 31 | /** Gets the selected header in the `mat-sort`. */ |
| 32 | async getActiveHeader(): Promise<MatSortHeaderHarness | null> { |
no test coverage detected