1.0.3 • Published 3 years ago

react-native-teamviewer-engage v1.0.3

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

react-native-teamviewer-engage

Usage

import { Chatvisor, ActiveUser } from 'react-native-teamviewer-engage';

Chatvisor.init("..", "...");

// LiveView
Chatvisor.liveView.start();
Chatvisor.liveView.stop();

// CoBrowsing
Chatvisor.coBrowsing.start();
Chatvisor.coBrowsing.stop();

// Tag user
let user: ActiveUser = {
  id: "45323",
  email: "john.doe@email.com",
  firstname: "John",
  lastname: "Doe",
  labels: ["foo", "baar"],
  assignedUser: ""
};
Chatvisor.user.tag(user);