UNPKG

react-native-webrtc2

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