smartbucket/ts/plugins.ts

33 lines
779 B
TypeScript
Raw Normal View History

2024-06-17 14:01:35 +00:00
// plugins.ts
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-10 14:47:20 +00:00
import * as smartstring from '@push.rocks/smartstring';
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-10 14:47:20 +00:00
export { smartmime, smartpath, smartpromise, smartrx, smartstream, smartstring, 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
2024-06-17 14:01:35 +00:00
import * as s3 from '@aws-sdk/client-s3';
2019-10-14 21:53:41 +00:00
2024-06-17 14:01:35 +00:00
export {
s3,
}