UNPKG

@skyux/layout

Version:

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

24 lines (23 loc) 567 B
import { ComponentHarness } from '@angular/cdk/testing'; /** * Harness for interacting with a text expand modal component in tests. */ export declare class SkyTextExpandModalHarness extends ComponentHarness { #private; /** * @internal */ static hostSelector: string; /** * Clicks the modal close button. */ clickCloseButton(): Promise<void>; /** * Gets the modal title. */ getExpandModalTitle(): Promise<string>; /** * Gets the expanded text in the modal. */ getText(): Promise<string>; }