Interface SupportChatService

interface SupportChatService {
    leaveSupportChat(id): Promise<void>;
    transferSupportChat(id, destination): Promise<void>;
}

Methods