24 lines
536 B
TypeScript
24 lines
536 B
TypeScript
|
// node native
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
path
|
||
|
}
|
||
|
|
||
|
// @api.global scope
|
||
|
import * as typedrequest from '@api.global/typedrequest';
|
||
|
import * as typedserver from '@api.global/typedserver';
|
||
|
|
||
|
export {
|
||
|
typedrequest,
|
||
|
typedserver,
|
||
|
}
|
||
|
|
||
|
// pushrocks scope
|
||
|
// pushrocks scope
|
||
|
import * as projectinfo from '@push.rocks/projectinfo';
|
||
|
import * as qenv from '@push.rocks/qenv';
|
||
|
import * as smartdata from '@push.rocks/smartdata';
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
|
||
|
export { projectinfo, qenv, smartdata, smartpath };
|