I'm using PeerJS for a video conferencing application. And I need to use util.supports.audioVideo
to check if the browser support WebRTC audio and video features.
The PeerJS documentaiton doesn't says how to import util object. I tried to import util from PeerJS, and these are not worked for me.
import Peer, { util } from 'peerjs' // Getting util as an interface
import { util } from 'peerjs/lib/util' // Getting webpack loader error
After importing 'Peer' or using a CDN, you can access the util object via window.
Using it with typescript could look like this: