Files
mongodump/ts/mongodump.plugins.ts
T

34 lines
507 B
TypeScript
Raw Normal View History

2022-06-06 13:04:30 +02:00
// node native
import * as path from 'path';
export {
path,
};
2022-06-06 13:04:30 +02:00
2022-06-05 21:04:16 +02:00
// pushrocks scope
import * as lik from '@push.rocks/lik';
import * as smartfs from '@push.rocks/smartfs';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
2022-06-05 21:04:16 +02:00
export {
lik,
smartfs,
2022-06-06 13:04:30 +02:00
smartpath,
smartpromise,
};
2022-06-05 21:04:16 +02:00
// tsclass
import * as tsclass from '@tsclass/tsclass';
2022-06-05 21:04:16 +02:00
export {
tsclass,
};
2022-06-05 21:04:16 +02:00
// third party scope
import * as mongodb from 'mongodb';
export {
mongodb,
};