UNPKG

ngx-admin-lte

Version:

AdminLTE theme for angular

12 lines (11 loc) 413 B
import { Notification } from '../models/notification'; import { Subject, ReplaySubject } from 'rxjs/Rx'; export declare class NotificationsService { private notificationsList; newNotifications: Subject<Notification>; notifications: ReplaySubject<Notification[]>; updates: Subject<any>; create: Subject<Notification>; constructor(); addNotification(notification: Notification): void; }