levelcache/ts/levelcache.plugins.ts

30 lines
758 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';
2022-03-22 21:45:12 +00:00
import * as smartpath from '@pushrocks/smartpath';
2021-04-23 18:40:57 +00:00
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,
2022-03-22 21:45:12 +00:00
smartpath,
2021-04-23 18:40:57 +00:00
smartpromise,
smartstring,
smartunique,
taskbuffer,
};