Files
smarts3/ts/plugins.ts

23 lines
596 B
TypeScript
Raw Permalink Normal View History

2021-12-18 01:41:50 +01:00
// node native
import * as path from 'path';
import * as http from 'http';
import * as crypto from 'crypto';
import * as url from 'url';
2021-12-18 01:41:50 +01:00
export { path, http, crypto, url };
2021-12-18 01:41:50 +01:00
// @push.rocks scope
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
import * as smartpath from '@push.rocks/smartpath';
import { SmartXml } from '@push.rocks/smartxml';
2021-12-18 01:41:50 +01:00
// Create SmartFs instance with Node.js provider
export const smartfs = new SmartFs(new SmartFsProviderNode());
export { smartpath, SmartXml };
2021-12-18 01:41:50 +01:00
// @tsclass scope
import * as tsclass from '@tsclass/tsclass';
export { tsclass };