source: trip-planner-front/node_modules/@angular/material/icon/testing/icon-harness-filters.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 760 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { BaseHarnessFilters } from '@angular/cdk/testing';
9/** Possible types of icons. */
10export declare const enum IconType {
11 SVG = 0,
12 FONT = 1
13}
14/** A set of criteria that can be used to filter a list of `MatIconHarness` instances. */
15export interface IconHarnessFilters extends BaseHarnessFilters {
16 /** Filters based on the typef of the icon. */
17 type?: IconType;
18 /** Filters based on the name of the icon. */
19 name?: string | RegExp;
20 /** Filters based on the namespace of the icon. */
21 namespace?: string | null | RegExp;
22}
Note: See TracBrowser for help on using the repository browser.