17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path,
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smarthshell from '@push.rocks/smartshell';
|
|
|
|
export {
|
|
smartarchive,
|
|
smartpath,
|
|
smarthshell,
|
|
} |