18 lines
400 B
TypeScript
18 lines
400 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartconfig from '@push.rocks/smartconfig';
|
|
import * as smartcli from '@push.rocks/smartcli';
|
|
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
export {
|
|
smartconfig,
|
|
smartcli,
|
|
SmartFs,
|
|
SmartFsProviderNode,
|
|
smartshell,
|
|
};
|