22 lines
442 B
TypeScript
22 lines
442 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path,
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
|
import * as smartfs from '@push.rocks/smartfs';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
import * as smartunique from '@push.rocks/smartunique';
|
|
|
|
export {
|
|
smartarchive,
|
|
smartfs,
|
|
smartpath,
|
|
smartshell,
|
|
smartunique,
|
|
}
|