smartproxy/ts/smartproxy.plugins.ts

28 lines
712 B
TypeScript
Raw Normal View History

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-09-29 15:18:40 +00:00
import * as net from 'net';
import * as url from 'url';
2019-08-20 16:42:52 +00:00
2019-09-29 15:18:40 +00:00
export { http, https, net, url };
2019-08-22 10:49:29 +00:00
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
2019-08-22 14:14:50 +00:00
export { tsclass };
2019-08-20 16:42:52 +00:00
2019-08-21 01:14:42 +00:00
// pushrocks scope
2019-09-29 15:18:40 +00:00
import * as lik from '@pushrocks/lik';
2022-07-30 11:30:25 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
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-11-03 02:04:23 +00:00
import * as smartstring from '@pushrocks/smartstring';
2019-08-20 16:42:52 +00:00
2022-07-30 11:30:25 +00:00
export { lik, smartdelay, smartrequest, smartpromise, smartstring };
2019-08-21 21:41:06 +00:00
// third party scope
2019-09-28 23:06:07 +00:00
import * as ws from 'ws';
import wsDefault from 'ws';
2019-08-21 21:41:06 +00:00
2019-09-28 23:06:07 +00:00
export { wsDefault, ws };