smartproxy/ts/smartproxy.plugins.ts
2019-08-21 23:41:06 +02:00

23 lines
374 B
TypeScript

// node native scope
import crypto from 'crypto';
import http from 'http';
import https from 'https';
export { crypto, http, https };
// pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
export {
smartrequest,
smartpromise
};
// third party scope
import ws from 'ws';
export {
ws
};