UNPKG

@skyux/layout

Version:

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

32 lines (31 loc) 816 B
import { SkyComponentHarness } from '@skyux/core/testing'; /** * Harness for interacting with a description list content component in tests. */ export declare class SkyDescriptionListContentHarness extends SkyComponentHarness { #private; /** * @internal */ static hostSelector: string; /** * Clicks the help inline button. */ clickHelpInline(): Promise<void>; /** * Gets the description component text. */ getDescriptionText(): Promise<string>; /** * Gets the help popover content. */ getHelpPopoverContent(): Promise<string | undefined>; /** * Gets the help popover title. */ getHelpPopoverTitle(): Promise<string | undefined>; /** * Gets the term component text. */ getTermText(): Promise<string>; }