UNPKG

vega-footer-logo

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.1.5.

20 lines (19 loc) 891 B
import { OnInit } from '@angular/core'; import { NotificationServices } from '../services/notification_services'; import { NotificationTO, ResultMessage, CommaonUserTO } from '../model/notificationTO'; import { Router, ActivatedRoute } from '@angular/router'; export declare class NotificationComponent implements OnInit { private comman; private router; userTO: CommaonUserTO; URL: string; resultMessage: ResultMessage; constructor(comman: NotificationServices, router: Router, route: ActivatedRoute); notificationList: NotificationTO[]; ngOnInit(): void; getNotificationListByUser(): void; markAsReadToNotification(alertMessageTo: NotificationTO, isReset?: boolean): void; getValidationColor(isAcknowelded: number): "bold" | "normal"; resetAllNotification(): void; redirectFun(alertMessageTo: NotificationTO): void; }