Files
smartstream/ts/smartstream.plugins.ts

15 lines
371 B
TypeScript
Raw Normal View History

2022-06-07 16:16:14 +02:00
// node native
import * as fs from 'fs';
2022-03-31 01:20:01 +02:00
import * as stream from 'stream';
export { fs, stream };
2022-03-31 01:20:01 +02:00
// pushrocks scope
2023-11-12 22:34:55 +01:00
import * as lik from '@push.rocks/lik';
2023-07-12 11:27:46 +02:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
2024-06-02 16:42:42 +02:00
import * as webstream from '../dist_ts_web/index.js';
2022-06-07 16:16:14 +02:00
2024-05-05 18:30:05 +02:00
export { lik, smartpromise, smartrx, webstream };
2022-03-31 01:20:01 +02:00