blob: 18084ad597b9aba235b337d53b531693a90b1053 [file] [log] [blame]
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { BaseHarnessFilters } from '@angular/cdk/testing';
import { SortDirection } from '@angular/material/sort';
export interface SortHarnessFilters extends BaseHarnessFilters {
}
export interface SortHeaderHarnessFilters extends BaseHarnessFilters {
label?: string | RegExp;
sortDirection?: SortDirection;
}