smartstream/ts/smartstream.plugins.ts

17 lines
334 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
2023-07-12 09:27:46 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
2022-06-07 14:16:14 +00:00
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 };