34 lines
507 B
TypeScript
34 lines
507 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path,
|
|
};
|
|
|
|
// pushrocks scope
|
|
import * as lik from '@push.rocks/lik';
|
|
import * as smartfs from '@push.rocks/smartfs';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
export {
|
|
lik,
|
|
smartfs,
|
|
smartpath,
|
|
smartpromise,
|
|
};
|
|
|
|
// tsclass
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export {
|
|
tsclass,
|
|
};
|
|
|
|
// third party scope
|
|
import * as mongodb from 'mongodb';
|
|
|
|
export {
|
|
mongodb,
|
|
};
|