UNPKG

react-native-webrtc2

Version:
13 lines (10 loc) 276 B
'use strict'; import type MediaStreamTrack from './MediaStreamTrack'; export default class MediaStreamTrackEvent { type: string; track: MediaStreamTrack; constructor(type, eventInitDict) { this.type = type.toString(); Object.assign(this, eventInitDict); } }