2020-02-05 17:11:30 +00:00
|
|
|
// node native scope
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export {
|
|
|
|
path
|
|
|
|
}
|
|
|
|
|
|
|
|
// @pushrocks scope
|
|
|
|
import * as lik from '@pushrocks/lik';
|
|
|
|
import * as smartbucket from '@pushrocks/smartbucket';
|
|
|
|
import * as smartcache from '@pushrocks/smartcache';
|
|
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
|
|
import * as smartstring from '@pushrocks/smartstring';
|
2020-02-14 18:10:10 +00:00
|
|
|
import * as smartunique from '@pushrocks/smartunique';
|
2020-02-05 17:11:30 +00:00
|
|
|
|
|
|
|
export {
|
|
|
|
lik,
|
|
|
|
smartbucket,
|
|
|
|
smartcache,
|
|
|
|
smartfile,
|
2020-02-14 18:10:10 +00:00
|
|
|
smartstring,
|
|
|
|
smartunique
|
2020-02-05 17:11:30 +00:00
|
|
|
};
|