17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
// node native
|
|
import * as stream from 'stream';
|
|
|
|
export { stream };
|
|
|
|
// pushrocks scope
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrx from '@push.rocks/smartrx';
|
|
|
|
export { smartpromise, smartrx };
|
|
|
|
// thirdparty
|
|
import from2 from 'from2';
|
|
import through2 from 'through2';
|
|
|
|
export { from2, through2 };
|