smartdaemon/ts/smartdaemon.plugins.ts

26 lines
410 B
TypeScript
Raw Normal View History

2019-08-28 09:55:14 +00:00
// node native scope
import * as path from 'path';
export {
path
};
// @pushrocks scope
import * as smartshell from '@pushrocks/smartshell';
import * as smartlog from '@pushrocks/smartlog';
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
export {
smartshell,
smartlog,
smartlogDestinationLocal
};
// third party
import * as fs from 'fs-extra';
export {
fs
};