27 lines
442 B
TypeScript
27 lines
442 B
TypeScript
|
// node native
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
path
|
||
|
}
|
||
|
|
||
|
// @push.rocks/scope
|
||
|
import * as smartfile from '@push.rocks/smartfile';
|
||
|
import * as smartjson from '@push.rocks/smartjson';
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
import * as smartpdf from '@push.rocks/smartpdf';
|
||
|
|
||
|
export {
|
||
|
smartfile,
|
||
|
smartpath,
|
||
|
smartjson,
|
||
|
smartpdf,
|
||
|
}
|
||
|
|
||
|
// @tsclass scope
|
||
|
import * as tsclass from '@tsclass/tsclass';
|
||
|
|
||
|
export {
|
||
|
tsclass,
|
||
|
}
|