smartnetwork/ts/smartnetwork.plugins.ts
2019-09-08 14:59:47 +02:00

19 lines
386 B
TypeScript

// native scope
import * as os from 'os';
export {
os
};
// @pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartstring from '@pushrocks/smartstring';
export { smartpromise, smartstring };
// @third party scope
const speedtestNet = require('speedtest-net');
import * as portscanner from 'portscanner';
export { speedtestNet, portscanner };