YouTube.PresentViewers{}
{}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "YouTube.PresentViewers" events and register a callback
client.on('YouTube.PresentViewers', ({ event, data }) => {
  // Code here will run every time the event is received!
  console.log('Received event:', event.source, event.type);
  console.log('Event data:', data);
});