17 lines
351 B
TypeScript
17 lines
351 B
TypeScript
// node native
|
|
import * as crypto from 'crypto';
|
|
import * as path from 'path';
|
|
|
|
export { crypto, path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import { RustBridge } from '@push.rocks/smartrust';
|
|
|
|
export { smartpath, RustBridge };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|