UNPKG

@skyux/layout

Version:

This library was generated with [Nx](https://nx.dev).

29 lines (28 loc) 922 B
import { HarnessPredicate } from '@angular/cdk/testing'; import { SkyComponentHarness } from '@skyux/core/testing'; import { SkyColumnHarness } from './column-harness'; import { SkyRowHarnessFilters } from './row-harness-filters'; /** * Harness for interacting with a fluid grid column component in tests. */ export declare class SkyRowHarness extends SkyComponentHarness { #private; /** * @internal */ static hostSelector: string; /** * Gets a `HarnessPredicate` that can be used to search for a * `SkyRowHarness` that meets certain criteria */ static with(filters: SkyRowHarnessFilters): HarnessPredicate<SkyRowHarness>; /** * Gets all of the columns in the row. */ getColumns(): Promise<SkyColumnHarness[]>; /** * Gets the ordering of the columns in the row. * @returns `normal` | `reverse` */ getColumnOrder(): Promise<string>; }