import { Component, Input } from '@angular/core'; import { JDate } from 'sigma-ts/jdate'; import { NotificationService } from 'sigma-ng/notification/services/notification.service'; @Component({ selector: 'notification', templateUrl: './notification.component.html', styleUrls: ['./notification.component.css'] }) export class NotificationComponent { @Input() service: NotificationService; }