2019-08-28 09:55:14 +00:00
|
|
|
// node native scope
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
path
|
|
|
|
};
|
|
|
|
|
|
|
|
// @pushrocks scope
|
2019-09-03 13:21:30 +00:00
|
|
|
import * as lik from '@pushrocks/lik';
|
|
|
|
import * as smartfile from '@pushrocks/smartfile';
|
2019-09-05 09:15:17 +00:00
|
|
|
import * as smartfm from '@pushrocks/smartfm';
|
2019-08-28 09:55:14 +00:00
|
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
|
2019-09-03 09:29:14 +00:00
|
|
|
import * as smartshell from '@pushrocks/smartshell';
|
|
|
|
import * as smartsystem from '@pushrocks/smartsystem';
|
2019-08-28 09:55:14 +00:00
|
|
|
|
|
|
|
export {
|
2019-09-03 13:21:30 +00:00
|
|
|
lik,
|
|
|
|
smartfile,
|
2019-09-05 09:15:17 +00:00
|
|
|
smartfm,
|
2019-08-28 09:55:14 +00:00
|
|
|
smartlog,
|
2019-09-03 09:29:14 +00:00
|
|
|
smartlogDestinationLocal,
|
|
|
|
smartshell,
|
|
|
|
smartsystem
|
2019-08-28 09:55:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// third party
|