smartbucket/ts/plugins.ts

28 lines
686 B
TypeScript
Raw 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
2024-05-20 23:22:21 +00:00
import * as smartmime from '@push.rocks/smartmime';
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';
2024-06-03 19:35:08 +00:00
import * as smartunique from '@push.rocks/smartunique';
2018-09-14 16:07:20 +00:00
2024-06-03 19:35:08 +00:00
export { smartmime, smartpath, smartpromise, smartrx, smartstream, smartunique };
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 };