ngx-mat-lib
Version:
A bunch of utilities and components to use in your Angular 7+ apps!
18 lines (17 loc) • 469 B
TypeScript
import { XmatAlertTypes } from "./xmat-alert-types.model";
export interface XmatAlertDialogData {
cancelText?: string;
confirmText?: string;
dialogContent?: string | HTMLElement;
dialogId?: string;
hideCancelButton?: boolean;
hideConfirmButton?: boolean;
showCloseButton?: boolean;
title?: string;
type: XmatAlertTypes;
}
export declare enum XmatAlertDialogActions {
confirm = 0,
cancel = 1,
close = 2
}