smartstream/ts/smartstream.plugins.ts

14 lines
341 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-11-12 21:34:55 +00:00
import * as lik from '@push.rocks/lik';
2023-07-12 09:27:46 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
2024-06-02 14:42:42 +00:00
import * as webstream from '../dist_ts_web/index.js';
2022-06-07 14:16:14 +00:00
2024-05-05 16:30:05 +00:00
export { lik, smartpromise, smartrx, webstream };
2022-03-30 23:20:01 +00:00