src/lib/toast/simple-notifications/interfaces/notification-event.type.ts
add |
add: |
Type : boolean
|
command |
command: |
Type : string
|
id |
id: |
Type : string
|
notification |
notification: |
Type : Notification
|
import {Notification} from './notification.type';
export interface NotificationEvent {
add?: boolean;
command: string;
id?: string;
notification?: Notification;
}