@skyux/indicators
Version:
This library was generated with [Nx](https://nx.dev).
11 lines (10 loc) • 374 B
TypeScript
import { SkyHarnessFilters } from '@skyux/core/testing';
/**
* A set of criteria that can be used to filter a list of SkyWaitHarness instances.
*/
export interface SkyWaitHarnessFilters extends SkyHarnessFilters {
/**
* Only find blocking or non-blocking instances created by the `SkyWaitService`.
*/
servicePageWaitType?: 'blocking' | 'non-blocking';
}