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