@lhn/mat-alert
Version:
Implementation of MatDialog shown as an alert message
12 lines (11 loc) • 338 B
TypeScript
import { ThemePalette } from '@angular/material/core';
import { SafeHtml } from '@angular/platform-browser';
export declare class MatAlertConfig {
title: string;
message?: string | SafeHtml;
buttonText?: string;
buttonTheme?: ThemePalette;
raisedButton?: boolean;
autoFocus?: boolean;
hasBackdrop?: boolean;
}