27 lines
647 B
TypeScript
27 lines
647 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
import * as http from 'http';
|
|
import * as crypto from 'crypto';
|
|
import * as url from 'url';
|
|
import * as fs from 'fs';
|
|
|
|
export { path, http, crypto, url, fs };
|
|
|
|
// @push.rocks scope
|
|
import * as smartbucket from '@push.rocks/smartbucket';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import { SmartXml } from '@push.rocks/smartxml';
|
|
|
|
export { smartbucket, smartfile, smartpath, SmartXml };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|
|
|
|
// thirdparty scope
|
|
import s3rver from 's3rver';
|
|
|
|
export { s3rver };
|