src/modules/dialogs/components/confirm-dialog-content.intf.ts
Content that can be shown in the StarkConfirmDialogComponent
Properties |
|
cancel |
cancel:
|
Type : string
|
Optional |
Label to be set in the "Cancel" button. |
import { StarkBaseDialogContent } from "./dialog-content.intf";
/**
* Content that can be shown in the {@link StarkConfirmDialogComponent}
*/
export interface StarkConfirmDialogContent extends StarkBaseDialogContent {
/**
* Label to be set in the "Cancel" button.
*/
cancel?: string;
}