levelcache/ts/levelcache.plugins.ts

28 lines
694 B
TypeScript
Raw Normal View History

2020-02-05 17:11:30 +00:00
// node native scope
import * as path from 'path';
2020-02-15 22:38:28 +00:00
export { path };
2020-02-05 17:11:30 +00:00
// @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';
2021-04-23 18:40:57 +00:00
import * as smartjson from '@pushrocks/smartjson';
import * as smartpromise from '@pushrocks/smartpromise';
2020-02-05 17:11:30 +00:00
import * as smartstring from '@pushrocks/smartstring';
2020-02-14 18:10:10 +00:00
import * as smartunique from '@pushrocks/smartunique';
2021-04-23 18:40:57 +00:00
import * as taskbuffer from '@pushrocks/taskbuffer';
2020-02-05 17:11:30 +00:00
2021-04-23 18:40:57 +00:00
export {
lik,
smartbucket,
smartcache,
smartfile,
smartjson,
smartpromise,
smartstring,
smartunique,
taskbuffer,
};