source: trip-planner-front/node_modules/@angular/material/chips/testing/chip-avatar-harness.d.ts@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 921 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 { HarnessPredicate, ComponentHarness } from '@angular/cdk/testing';
9import { ChipAvatarHarnessFilters } from './chip-harness-filters';
10/** Harness for interacting with a standard Material chip avatar in tests. */
11export declare class MatChipAvatarHarness extends ComponentHarness {
12 static hostSelector: string;
13 /**
14 * Gets a `HarnessPredicate` that can be used to search for a `MatChipAvatarHarness` that meets
15 * certain criteria.
16 * @param options Options for filtering which input instances are considered a match.
17 * @return a `HarnessPredicate` configured with the given options.
18 */
19 static with(options?: ChipAvatarHarnessFilters): HarnessPredicate<MatChipAvatarHarness>;
20}
Note: See TracBrowser for help on using the repository browser.