30 lines
700 B
TypeScript
30 lines
700 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as lik from '@push.rocks/lik';
|
|
import * as smartbucket from '@push.rocks/smartbucket';
|
|
import * as smartfs from '@push.rocks/smartfs';
|
|
import * as smartjson from '@push.rocks/smartjson';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
export {
|
|
lik,
|
|
smartbucket,
|
|
smartfs,
|
|
smartjson,
|
|
smartpath,
|
|
smartpromise,
|
|
};
|
|
|
|
// shared smartfs instance backed by the node provider
|
|
export const fs = new smartfs.SmartFs(new smartfs.SmartFsProviderNode());
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|