smartstream/ts/smartstream.plugins.ts

17 lines
332 B
TypeScript
Raw Normal View History

2022-06-07 14:16:14 +00:00
// node native
2022-03-30 23:20:01 +00:00
import * as stream from 'stream';
export { stream };
// pushrocks scope
2019-02-19 00:10:56 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
2022-06-07 14:16:14 +00:00
import * as smartrx from '@pushrocks/smartrx';
export { smartpromise, smartrx };
2022-03-30 23:20:01 +00:00
// thirdparty
2022-06-07 14:16:14 +00:00
import from2 from 'from2';
import through2 from 'through2';
2019-02-19 00:10:56 +00:00
2022-06-07 14:16:14 +00:00
export { from2, through2 };