smartproxy/ts/smartproxy.plugins.ts
2019-08-20 22:26:44 +02:00

12 lines
260 B
TypeScript

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