28 lines
849 B
TypeScript
28 lines
849 B
TypeScript
// node native path
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
};
|
|
|
|
// @pushrocks scope
|
|
import * as lik from '@pushrocks/lik';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartjson from '@pushrocks/smartjson';
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
import * as smartnetwork from '@pushrocks/smartnetwork';
|
|
import * as smartpath from '@pushrocks/smartpath';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartrequest from '@pushrocks/smartrequest';
|
|
import * as smartstring from '@pushrocks/smartstring';
|
|
import * as smartversion from '@pushrocks/smartversion';
|
|
|
|
smartlog.defaultLogger.enableConsole();
|
|
|
|
export { lik, smartfile, smartjson, smartlog, smartnetwork, smartpath, smartpromise, smartrequest, smartstring, smartversion };
|
|
|
|
// third party
|
|
import * as rxjs from 'rxjs';
|
|
|
|
export { rxjs };
|