Files
smartnetwork/ts/smartnetwork.plugins.ts

19 lines
497 B
TypeScript
Raw Normal View History

2019-04-16 10:21:11 +02:00
// native scope
2019-09-08 14:59:47 +02:00
import * as os from 'os';
2019-11-19 23:00:37 +00:00
export { os };
2019-04-16 10:21:11 +02:00
// @pushrocks scope
2018-07-17 09:00:27 +02:00
import * as smartpromise from '@pushrocks/smartpromise';
2019-04-16 10:21:11 +02:00
import * as smartstring from '@pushrocks/smartstring';
export { smartpromise, smartstring };
2019-11-19 23:00:37 +00:00
// @third party scope
2019-04-16 10:21:11 +02:00
import * as portscanner from 'portscanner';
2019-11-23 16:07:04 +00:00
import publicIp from 'public-ip';
2019-09-08 16:15:10 +02:00
import speedtestNet from 'speedtest-net';
import * as systeminformation from 'systeminformation';
2017-12-12 23:35:20 +01:00
2019-11-23 16:07:04 +00:00
export { portscanner, publicIp, speedtestNet, systeminformation };