smartexit/ts/smartexit.plugins.ts

19 lines
387 B
TypeScript
Raw Normal View History

2019-05-16 16:48:45 +00:00
// node native
import * as childProcess from 'child_process';
export { childProcess };
// pushrocks scope
2023-09-11 08:29:01 +00:00
import * as lik from '@push.rocks/lik';
import * as smartdelay from '@push.rocks/smartdelay';
2024-04-18 11:26:02 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
2019-05-16 16:48:45 +00:00
2024-04-18 11:26:02 +00:00
export { lik, smartdelay, smartpromise };
// third party scope
import * as treeKill from 'tree-kill';
export {
treeKill
}