18 lines
530 B
TypeScript
18 lines
530 B
TypeScript
// pushrocks scope
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrx from '@push.rocks/smartrx';
|
|
|
|
export { smartdelay, smartpromise, smartrx };
|
|
|
|
// node built-in modules
|
|
import * as net from 'net';
|
|
import * as os from 'os';
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import * as crypto from 'crypto';
|
|
import * as stream from 'stream';
|
|
import { EventEmitter } from 'events';
|
|
|
|
export { net, os, path, fs, crypto, stream, EventEmitter };
|