smartbucket/ts/smartbucket.plugins.ts

26 lines
554 B
TypeScript
Raw Permalink Normal View History

2019-10-16 16:12:18 +00:00
// node native
import * as path from 'path';
2024-05-05 17:52:50 +00:00
import * as stream from 'stream';
2019-10-16 16:12:18 +00:00
2024-05-05 17:52:50 +00:00
export { path, stream };
2019-10-16 16:12:18 +00:00
2024-02-10 03:36:34 +00:00
// @push.rocks scope
2023-11-03 00:36:11 +00:00
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
import * as smartstream from '@push.rocks/smartstream';
2018-09-14 16:07:20 +00:00
2022-06-07 15:15:36 +00:00
export { smartpath, smartpromise, smartrx, smartstream };
2019-07-07 08:48:24 +00:00
2024-02-10 03:36:34 +00:00
// @tsclass
import * as tsclass from '@tsclass/tsclass';
export {
tsclass,
}
2019-07-07 08:48:24 +00:00
// third party scope
import * as minio from 'minio';
2019-10-14 21:53:41 +00:00
2019-10-16 17:15:48 +00:00
export { minio };