blob: 49ba689589a84c2f8e83b20e40905a98b9b3df0b [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';
/** Possible types of icons. */
export declare const enum IconType {
SVG = 0,
FONT = 1
}
/** A set of criteria that can be used to filter a list of `MatIconHarness` instances. */
export interface IconHarnessFilters extends BaseHarnessFilters {
/** Filters based on the typef of the icon. */
type?: IconType;
/** Filters based on the name of the icon. */
name?: string | RegExp;
/** Filters based on the namespace of the icon. */
namespace?: string | null | RegExp;
}