Files
smartconfig/ts/plugins.ts
T

30 lines
745 B
TypeScript
Raw Normal View History

2024-06-19 17:53:10 +02:00
import * as tsclass from '@tsclass/tsclass';
export { tsclass };
2024-06-19 17:53:10 +02:00
2024-02-09 15:57:32 +01:00
import * as qenv from '@push.rocks/qenv';
2023-08-03 19:22:34 +02:00
import * as smartlog from '@push.rocks/smartlog';
import * as nodeFs from 'node:fs';
import * as path from 'path';
import * as smartfs from '@push.rocks/smartfs';
2023-08-24 10:39:47 +02:00
import * as smartjson from '@push.rocks/smartjson';
2023-08-03 19:22:34 +02:00
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
2024-02-07 18:16:40 +01:00
import * as smartrx from '@push.rocks/smartrx';
2023-08-03 19:22:34 +02:00
import * as taskbuffer from '@push.rocks/taskbuffer';
2017-07-12 15:30:49 +02:00
export const smartFs = new smartfs.SmartFs(new smartfs.SmartFsProviderNode());
export {
qenv,
smartlog,
nodeFs,
path,
smartfs,
smartjson,
smartpath,
smartpromise,
smartrx,
taskbuffer,
};