UNPKG

@hsaadawy/ngx-chat

Version:
15 lines (14 loc) 543 B
import { OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { Presence } from '../../core/presence'; import { Recipient } from '../../core/recipient'; import { ChatService } from '../../services/chat-service'; export declare class RosterRecipientComponent implements OnInit { private chatService; recipient: Recipient; unreadCount$: Observable<number>; presence$: Observable<Presence> | null; Presence: typeof Presence; constructor(chatService: ChatService); ngOnInit(): void; }