UNPKG

react-native-webrtc

Version:
12 lines (9 loc) 279 B
import type MediaStreamError from './MediaStreamError'; export default class MediaStreamErrorEvent { type: string; error?: MediaStreamError; constructor(type, eventInitDict) { this.type = type.toString(); Object.assign(this, eventInitDict); } }