Files
smartproxy/ts/smartproxy.plugins.ts

26 lines
635 B
TypeScript
Raw Permalink Normal View History

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