15 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// native scope
 | 
						|
import * as path from 'path';
 | 
						|
export { path };
 | 
						|
 | 
						|
// @api.global scope
 | 
						|
import * as typedserver from '@api.global/typedserver';
 | 
						|
 | 
						|
export { typedserver };
 | 
						|
 | 
						|
// @pushrocks scope
 | 
						|
import * as qenv from '@push.rocks/qenv';
 | 
						|
import * as smartpath from '@push.rocks/smartpath';
 | 
						|
 | 
						|
export { qenv, smartpath };
 |