@skyux/layout
Version:
This library was generated with [Nx](https://nx.dev).
26 lines (25 loc) • 660 B
TypeScript
import { ComponentFixture } from '@angular/core/testing';
/**
* Allows interaction with a SKY UX action button component.
* @internal
*/
export declare class SkyActionButtonFixture {
#private;
/**
* The action button's current header text.
*/
get headerText(): string | undefined;
/**
* The action button's current details text.
*/
get detailsText(): string | undefined;
/**
* The action button's current icon type.
*/
get iconType(): string | undefined;
constructor(fixture: ComponentFixture<any>, skyTestId: string);
/**
* Clicks the action button.
*/
actionClick(): void;
}