21 lines
		
	
	
		
			538 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			538 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // node native scope
 | |
| import * as fs from 'fs';
 | |
| import * as http from 'http';
 | |
| import * as https from 'https';
 | |
| import * as path from 'path';
 | |
| 
 | |
| export { http, https, fs, path };
 | |
| 
 | |
| // pushrocks scope
 | |
| import * as smartpromise from '@push.rocks/smartpromise';
 | |
| import * as smarturl from '@push.rocks/smarturl';
 | |
| 
 | |
| export { smartpromise, smarturl };
 | |
| 
 | |
| // third party scope
 | |
| import { HttpAgent, HttpsAgent } from 'agentkeepalive';
 | |
| const agentkeepalive = { HttpAgent, HttpsAgent };
 | |
| import formData from 'form-data';
 | |
| 
 | |
| export { agentkeepalive, formData };
 |