src/app/interfaces/alert.ts
Alert Interface
Properties |
message |
message:
|
Type : string
|
Defined in src/app/interfaces/alert.ts:8
|
options |
options:
|
Type : IndividualConfig
|
Defined in src/app/interfaces/alert.ts:9
|
title |
title:
|
Type : string
|
Defined in src/app/interfaces/alert.ts:10
|
import { IndividualConfig } from 'ng-mdb-pro/pro/alerts';
/**
* Alert Interface
* @author Daniel Sogl
*/
export interface Alert {
message?: string;
options?: IndividualConfig;
title: string;
}