13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
// node native scope
|
|
import * as http from 'http';
|
|
import * as https from 'https';
|
|
|
|
export { http, https };
|
|
|
|
// pushrocks scope
|
|
import * as smartrequest from '@pushrocks/smartrequest';
|
|
|
|
export {
|
|
smartrequest
|
|
};
|