mongodump/ts/mongodump.plugins.ts

36 lines
570 B
TypeScript
Raw Normal View History

2022-06-06 11:04:30 +00:00
// node native
import * as path from 'path';
export {
path
}
2022-06-05 19:04:16 +00:00
// pushrocks scope
import * as lik from '@pushrocks/lik';
import * as smartfile from '@pushrocks/smartfile';
2022-06-06 11:04:30 +00:00
import * as smartjson from '@pushrocks/smartjson';
import * as smartpath from '@pushrocks/smartpath';
2022-06-05 19:04:16 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
export {
lik,
smartfile,
2022-06-06 11:04:30 +00:00
smartjson,
smartpath,
2022-06-05 19:04:16 +00:00
smartpromise
}
// tsclass
import type * as tsclass from '@tsclass/tsclass';
export {
tsclass
}
// third party scope
import * as mongodb from 'mongodb';
export {
mongodb
}