Interface ChatAgentService

The ChatAgentService provides access to the available chat agents.

interface ChatAgentService {
    getAgent(id): undefined | ChatAgent;
    getAgents(): ChatAgent[];
    getAllAgents(): ChatAgent[];
    registerChatAgent(agent): void;
    unregisterChatAgent(agentId): void;
}

Implemented by

Methods