mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-01-19 13:30:59 +00:00
15 lines
195 B
JavaScript
15 lines
195 B
JavaScript
|
|
/**
|
|
* @providesModule UdpSockets
|
|
* @flow
|
|
*/
|
|
|
|
var UdpSocket = require('UdpSocket')
|
|
|
|
module.exports = {
|
|
createSocket: function(type) {
|
|
return new UdpSocket({
|
|
type: type
|
|
})
|
|
}
|
|
} |