mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-02-16 02:36:30 +00:00
15 lines
194 B
JavaScript
15 lines
194 B
JavaScript
|
|
||
|
/**
|
||
|
* @providesModule RCTUDP
|
||
|
* @flow
|
||
|
*/
|
||
|
|
||
|
var RCTSocket = require('RCTUDPSocket')
|
||
|
|
||
|
module.exports = {
|
||
|
createSocket: function(type) {
|
||
|
return new RCTSocket({
|
||
|
type: type
|
||
|
})
|
||
|
}
|
||
|
}
|