UNPKG

@hsaadawy/ngx-chat

Version:
10 lines (9 loc) 385 B
import { HttpClient } from '@angular/common/http'; import { Contact } from '../core/contact'; import { LogService } from './log.service'; export declare class ContactFactoryService { private logService; private httpClient; constructor(logService: LogService, httpClient: HttpClient); createContact(jidPlain: string, name?: string, avatar?: string): Contact; }