17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
// native scope
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartbucket from '@push.rocks/smartbucket';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
export { smartbucket, smartlog, smartpath };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|