src/lib/message-dialog/types.ts
Properties |
| actions |
actions:
|
Type : Array<literal type>
|
| message |
message:
|
Type : string
|
| title |
title:
|
Type : string
|
import { ThemePalette } from '@angular/material/core';
export interface MessageDialogData {
title: string;
message: string,
actions: Array<{ type: string, label: string, color: ThemePalette }>
}