23 lines
307 B
TypeScript
23 lines
307 B
TypeScript
// node native
|
|
import * as os from 'os';
|
|
|
|
export {
|
|
os
|
|
}
|
|
|
|
// pushrocks scope
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
export {
|
|
smartdelay,
|
|
smartlog
|
|
}
|
|
|
|
// third party scope
|
|
import * as promClient from 'prom-client';
|
|
|
|
export {
|
|
promClient
|
|
}
|