24 lines
578 B
TypeScript
24 lines
578 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { AppComponent } from 'app/app.component';
|
|
import { PagesComponent } from 'app/pages/pages.component';
|
|
import { AppNotificationComponent } from '../notification/app.notification.component';
|
|
|
|
@Component({
|
|
selector: 'of-topbar',
|
|
templateUrl: './app.topbar.component.html',
|
|
})
|
|
export class AppTopbarComponent implements OnInit {
|
|
|
|
notificationCount;
|
|
constructor(
|
|
public app: PagesComponent,
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
onNotiLoaded(count) {
|
|
this.notificationCount = count;
|
|
}
|
|
}
|