17 lines
315 B
TypeScript
17 lines
315 B
TypeScript
// node native scope
|
|
import * as childProcess from 'node:child_process';
|
|
import * as util from 'node:util';
|
|
|
|
export {
|
|
childProcess,
|
|
util,
|
|
};
|
|
|
|
// @push.rocks scope
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
export {
|
|
smartlog,
|
|
smartpromise,
|
|
};
|