23 lines
596 B
TypeScript
23 lines
596 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
import * as http from 'http';
|
|
import * as crypto from 'crypto';
|
|
import * as url from 'url';
|
|
|
|
export { path, http, crypto, url };
|
|
|
|
// @push.rocks scope
|
|
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import { SmartXml } from '@push.rocks/smartxml';
|
|
|
|
// Create SmartFs instance with Node.js provider
|
|
export const smartfs = new SmartFs(new SmartFsProviderNode());
|
|
|
|
export { smartpath, SmartXml };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|