mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-02-15 10:16:35 +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
|
|
})
|
|
}
|
|
} |