17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
// native
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @api.global scope
|
|
import * as typedserver from '@api.global/typedserver';
|
|
|
|
export { typedserver };
|
|
|
|
// @push.rocks scope
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartstatus from '@push.rocks/smartstatus';
|
|
|
|
export { projectinfo, smartpath, smartstatus };
|