@skyux/indicators
Version:
This library was generated with [Nx](https://nx.dev).
25 lines (24 loc) • 546 B
TypeScript
import { SkyComponentHarness } from '@skyux/core/testing';
/**
* Harness for interacting with a chevron component in tests.
* @internal
*/
export declare class SkyChevronHarness extends SkyComponentHarness {
#private;
/**
* @internal
*/
static hostSelector: string;
/**
* Gets the chevron direction.
*/
getDirection(): Promise<string>;
/**
* Whether the chevron is disabled.
*/
isDisabled(): Promise<boolean>;
/**
* Toggles the chevron.
*/
toggle(): Promise<void>;
}