UNPKG
@radzztnzx/rbail
Version:
latest (3.3.9-rz.8)
3.3.9-rz.8
3.3.9-rz.7
3.3.9-rz.6
3.3.9-rz.4
3.3.9-rz.2
3.3.9-rz.1
Pro Bails based by Whiskeysockets, Modified by RadzzOffc
github.com/RTypeByte/RBails
@radzztnzx/rbail
/
lib
/
Socket
/
Client
/
types.js
11 lines
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
EventEmitter
}
from
'events'
;
import
{
URL
}
from
'url'
;
export
class
AbstractSocketClient
extends
EventEmitter
{
constructor
(
url, config
) {
super
();
this
.
url
= url;
this
.
config
= config;
this
.
setMaxListeners
(
0
); } }
//# sourceMappingURL=types.js.map