smartproxy/ts/smartproxy.plugins.ts
2019-08-20 18:42:52 +02:00

16 lines
235 B
TypeScript

// node native scope
import * as https from 'https';
export {
https
};
// third party scope
import express from 'express';
import * as httpProxyMiddleware from 'http-proxy-middleware';
export {
express,
httpProxyMiddleware
};