UNPKG

soft-phone

Version:
30 lines (29 loc) 869 B
import { OnInit } from '@angular/core'; import { PhoneService } from '../../../service/index'; import { User, Agent } from '../../index'; export declare class KeypadComponent implements OnInit { private service; a: string; b: string; services: PhoneService; users: User[]; filteredUsers: User[]; agents: Agent[]; filteredAgents: Agent[]; constructor(service: PhoneService); showKeys: boolean; _displayText: string; displayText: string; ngOnInit(): void; showKey(): void; hideKey(): void; count(event: any): void; clearDisplayText(): void; forwardCall(): void; transferCall(phoneNumber: any): void; customerClick(user: User): void; agentClick(agent: Agent): void; isOutboundStatus(): boolean; displayFwCall(): boolean; displayCall(): boolean; }