2019-08-20 16:42:52 +00:00
|
|
|
// node native scope
|
2019-08-22 13:09:48 +00:00
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
2019-08-20 16:42:52 +00:00
|
|
|
|
2019-08-22 11:20:50 +00:00
|
|
|
export { http, https };
|
2019-08-22 10:49:29 +00:00
|
|
|
|
|
|
|
// tsclass scope
|
|
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
|
|
|
|
export {
|
|
|
|
tsclass
|
|
|
|
};
|
2019-08-20 16:42:52 +00:00
|
|
|
|
2019-08-21 01:14:42 +00:00
|
|
|
// pushrocks scope
|
2019-08-21 21:41:06 +00:00
|
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
2019-08-21 01:14:42 +00:00
|
|
|
import * as smartrequest from '@pushrocks/smartrequest';
|
2019-08-22 10:49:29 +00:00
|
|
|
import * as smartspawn from '@pushrocks/smartspawn';
|
2019-08-22 11:20:41 +00:00
|
|
|
import * as smartsystem from '@pushrocks/smartsystem';
|
2019-08-20 16:42:52 +00:00
|
|
|
|
2019-08-21 01:14:42 +00:00
|
|
|
export {
|
2019-08-21 21:41:06 +00:00
|
|
|
smartrequest,
|
2019-08-22 10:49:29 +00:00
|
|
|
smartpromise,
|
2019-08-22 11:20:41 +00:00
|
|
|
smartspawn,
|
|
|
|
smartsystem,
|
2019-08-21 21:41:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// third party scope
|
2019-08-22 13:09:48 +00:00
|
|
|
import * as ws from 'ws';
|
2019-08-21 21:41:06 +00:00
|
|
|
|
|
|
|
export {
|
|
|
|
ws
|
2019-08-21 01:14:42 +00:00
|
|
|
};
|