@skyux/modals
Version:
This library was generated with [Nx](https://nx.dev).
23 lines (22 loc) • 790 B
TypeScript
export declare enum SkyConfirmType {
/**
* Allows you to define your own buttons using the `buttons` property of `SkyConfirmConfig`.
*/
Custom = 0,
/**
* Displays one button with an **OK** label and an `'ok'` action.
*/
OK = 1,
/**
* Displays two buttons with **Yes** and **Cancel** labels.
* @deprecated Use the `Custom` type to follow the guidance that labels
* should clearly indicate the actions that occur when users select buttons.
*/
YesCancel = 2,
/**
* Displays three buttons with **Yes**, **No**, and **Cancel** labels.
* @deprecated Use the `Custom` type to follow the guidance that labels
* should clearly indicate the actions that occur when users select buttons.
*/
YesNoCancel = 3
}