14 lines
483 B
TypeScript
14 lines
483 B
TypeScript
|
import { Component, Input, EventEmitter, Output, ViewChild, OnInit } from '@angular/core';
|
||
|
import { Notification } from '@overflow/commons-typescript/model/notification';
|
||
|
import { Page } from '@overflow/commons-typescript/model/commons/Page';
|
||
|
import { Paginator } from 'primeng/primeng';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-notification-badge',
|
||
|
templateUrl: './badge.component.html',
|
||
|
})
|
||
|
export class NotificationBadgeComponent {
|
||
|
|
||
|
@Input() notificationPage: Page<Notification>;
|
||
|
}
|