UNPKG

react-native-webrtc

Version:
13 lines (10 loc) 266 B
export default class MediaStreamError { name: string; message?: string; constraintName?: string; constructor(error) { this.name = error.name; this.message = error.message; this.constraintName = error.constraintName; } }