smartnetwork/ts/smartnetwork.plugins.ts
2022-02-17 00:18:23 +01:00

21 lines
558 B
TypeScript

// native scope
import * as os from 'os';
import * as https from 'https';
import * as perfHooks from 'perf_hooks';
export { os, https, perfHooks };
// @pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartstring from '@pushrocks/smartstring';
export { smartpromise, smartstring };
// @third party scope
const isopen = require('isopen');
const icmp = require('icmp');
import * as publicIp from 'public-ip';
import * as systeminformation from 'systeminformation';
export { isopen, icmp, publicIp, systeminformation };