src/lib/toast/simple-notifications/interfaces/notification.type.ts
animate |
animate: |
Type : string
|
click |
click: |
Type : EventEmitter<{}>
|
clickToClose |
clickToClose: |
Type : boolean
|
content |
content: |
Type : string
|
createdOn |
createdOn: |
Type : Date
|
destroyedOn |
destroyedOn: |
Type : Date
|
html |
html: |
Type : any
|
icon |
icon: |
Type : string
|
id |
id: |
Type : string
|
maxLength |
maxLength: |
Type : number
|
override |
override: |
Type : any
|
pauseOnHover |
pauseOnHover: |
Type : boolean
|
state |
state: |
Type : string
|
theClass |
theClass: |
Type : string
|
timeOut |
timeOut: |
Type : number
|
title |
title: |
Type : string
|
type |
type: |
Type : string
|
import { EventEmitter } from '@angular/core';
export interface Notification {
id?: string;
type: string;
icon: string;
title?: string;
content?: string;
override?: any;
html?: any;
state?: string;
createdOn?: Date;
destroyedOn?: Date;
animate?: string;
timeOut?: number;
maxLength?: number;
pauseOnHover?: boolean;
clickToClose?: boolean;
theClass?: string;
click?: EventEmitter<{}>;
}