2020-02-25 01:38:24 +00:00
|
|
|
// node native scope
|
|
|
|
import * as os from 'os';
|
|
|
|
|
2021-01-08 21:16:25 +00:00
|
|
|
export { os };
|
2020-02-25 01:38:24 +00:00
|
|
|
|
2019-11-15 21:44:11 +01:00
|
|
|
// @pushrocks scope
|
2024-04-12 13:13:09 +02:00
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
2019-11-15 21:44:11 +01:00
|
|
|
|
2022-03-24 13:51:12 +01:00
|
|
|
export { smartdelay, smartshell };
|
2019-11-15 21:44:11 +01:00
|
|
|
|
|
|
|
// third party scope
|
|
|
|
import puppeteer from 'puppeteer';
|
2021-08-17 15:22:10 +02:00
|
|
|
import treeKill from 'tree-kill';
|
2019-11-15 21:44:11 +01:00
|
|
|
|
2021-08-17 15:22:10 +02:00
|
|
|
export { puppeteer, treeKill };
|