2019-04-16 08:21:11 +00:00
|
|
|
// native scope
|
2019-09-08 12:59:47 +00:00
|
|
|
import * as os from 'os';
|
2021-04-28 13:41:55 +00:00
|
|
|
import * as https from 'https';
|
|
|
|
import * as perfHooks from 'perf_hooks';
|
2019-09-08 12:59:47 +00:00
|
|
|
|
2021-04-28 13:41:55 +00:00
|
|
|
export { os, https, perfHooks };
|
2019-04-16 08:21:11 +00:00
|
|
|
|
|
|
|
// @pushrocks scope
|
2018-07-17 07:00:27 +00:00
|
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
2019-04-16 08:21:11 +00:00
|
|
|
import * as smartstring from '@pushrocks/smartstring';
|
|
|
|
|
|
|
|
export { smartpromise, smartstring };
|
|
|
|
|
2019-11-19 23:00:37 +00:00
|
|
|
// @third party scope
|
2022-02-16 22:28:12 +00:00
|
|
|
const isopen = require('isopen');
|
2022-02-16 23:18:23 +00:00
|
|
|
const icmp = require('icmp');
|
2022-02-16 23:03:13 +00:00
|
|
|
import * as publicIp from 'public-ip';
|
2019-09-08 14:15:10 +00:00
|
|
|
import * as systeminformation from 'systeminformation';
|
2017-12-12 22:35:20 +00:00
|
|
|
|
2022-02-16 23:03:13 +00:00
|
|
|
export { isopen, icmp, publicIp, systeminformation };
|