28 lines
668 B
TypeScript
28 lines
668 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @pushrocks scope
|
|
import * as lik from '@push.rocks/lik';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartfm from '@push.rocks/smartfm';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
import * as smartsystem from '@push.rocks/smartsystem';
|
|
|
|
export {
|
|
lik,
|
|
smartfile,
|
|
smartfm,
|
|
smartlog,
|
|
smartlogDestinationLocal,
|
|
smartpath,
|
|
smartshell,
|
|
smartsystem,
|
|
};
|
|
|
|
// third party
|