Files
smartproxy/ts/smartproxy.plugins.ts

16 lines
235 B
TypeScript
Raw Normal View History

2019-08-20 18:42:52 +02:00
// node native scope
import * as https from 'https';
2019-08-20 17:50:17 +02:00
export {
2019-08-20 18:42:52 +02:00
https
};
// third party scope
import express from 'express';
import * as httpProxyMiddleware from 'http-proxy-middleware';
export {
express,
httpProxyMiddleware
};