@skyux/modals
Version:
This library was generated with [Nx](https://nx.dev).
13 lines (12 loc) • 395 B
TypeScript
import { SkyConfirmButtonAction } from './confirm-button-action';
import { SkyConfirmButtonStyleType } from './confirm-button-style-type';
/**
* The view model for button configuration that the confirm component uses.
* @internal
*/
export interface SkyConfirmButton {
action: SkyConfirmButtonAction;
styleType: SkyConfirmButtonStyleType;
text: string;
autofocus?: boolean;
}