14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
// native scope
|
|
|
|
// @pushrocks scope
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartstring from '@pushrocks/smartstring';
|
|
|
|
export { smartpromise, smartstring };
|
|
|
|
// @third party scope
|
|
let speedtestNet = require('speedtest-net');
|
|
import * as portscanner from 'portscanner';
|
|
|
|
export { speedtestNet, portscanner };
|