Files
levelcache/ts/levelcache.plugins.ts

30 lines
700 B
TypeScript
Raw Permalink 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
2023-07-20 22:54:07 +02:00
// @push.rocks scope
import * as lik from '@push.rocks/lik';
import * as smartbucket from '@push.rocks/smartbucket';
import * as smartfs from '@push.rocks/smartfs';
2023-07-20 22:54:07 +02:00
import * as smartjson from '@push.rocks/smartjson';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
2020-02-05 17:11:30 +00:00
2021-04-23 18:40:57 +00:00
export {
lik,
smartbucket,
smartfs,
2021-04-23 18:40:57 +00:00
smartjson,
2022-03-22 22:45:12 +01:00
smartpath,
2021-04-23 18:40:57 +00:00
smartpromise,
};
2024-02-14 01:32:19 +01:00
// shared smartfs instance backed by the node provider
export const fs = new smartfs.SmartFs(new smartfs.SmartFsProviderNode());
2024-02-14 01:32:19 +01:00
// @tsclass scope
import * as tsclass from '@tsclass/tsclass';
export { tsclass };