You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vara=navigator.mediaDevices.getUserMedia(options);a.catch(()=>console.log);//ERROR: 'catch' does not exists on type 'PromiseLike<MediaStream>'
Expected behavior: Acording to MDN, navigator.mediaDevices.getUserMedia returns a Promise (with a catch method), not a PromiseLike (without catch method).
Actual behavior:
navigator.mediaDevices.getUserMedia returns a PromiseLike<MediaStream>
It needs to return a Promise<MediaStream>
hongbo-miao, skhavari, JJJollyjim, JerryGoodwill, Pindar and 3 more