20 lines
445 B
TypeScript
20 lines
445 B
TypeScript
// node native
|
|
import * as v8 from 'v8';
|
|
import * as os from 'os';
|
|
import * as fs from 'fs';
|
|
|
|
export { v8, os, fs };
|
|
|
|
// pushrocks scope
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
export { smartdelay, smartlog };
|
|
|
|
// third party scope
|
|
import pidusage from 'pidusage';
|
|
import pidtree from 'pidtree';
|
|
import * as promClient from 'prom-client';
|
|
|
|
export { pidusage, pidtree, promClient };
|