11 lines
229 B
TypeScript
11 lines
229 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 };
|