2019-04-16 10:21:11 +02:00
|
|
|
// native scope
|
2019-09-08 14:59:47 +02: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 14:59:47 +02:00
|
|
|
|
2021-04-28 13:41:55 +00:00
|
|
|
export { os, https, perfHooks };
|
2019-04-16 10:21:11 +02:00
|
|
|
|
|
|
|
// @pushrocks scope
|
2025-04-28 12:04:08 +00:00
|
|
|
import * as smartping from '@push.rocks/smartping';
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
import * as smartstring from '@push.rocks/smartstring';
|
2019-04-16 10:21:11 +02:00
|
|
|
|
2022-10-21 17:13:06 +02:00
|
|
|
export { smartpromise, smartping, smartstring };
|
2019-04-16 10:21:11 +02:00
|
|
|
|
2019-11-19 23:00:37 +00:00
|
|
|
// @third party scope
|
2022-03-24 23:11:53 +01:00
|
|
|
// @ts-ignore
|
|
|
|
import isopen from 'isopen';
|
|
|
|
// @ts-ignore
|
2022-10-21 17:13:06 +02:00
|
|
|
import * as publicIp from 'public-ip';
|
2019-09-08 16:15:10 +02:00
|
|
|
import * as systeminformation from 'systeminformation';
|
2017-12-12 23:35:20 +01:00
|
|
|
|
2022-10-21 17:13:06 +02:00
|
|
|
export { isopen, publicIp, systeminformation };
|