20 lines
357 B
TypeScript
20 lines
357 B
TypeScript
|
// node native scope
|
||
|
import * as fs from 'fs';
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
fs,
|
||
|
path
|
||
|
};
|
||
|
|
||
|
// pushrocks scope
|
||
|
import * as smartfile from '@push.rocks/smartfile';
|
||
|
import * as smartlogInterfaces from '../dist_ts_interfaces/index.js';
|
||
|
import * as smarttime from '@push.rocks/smarttime';
|
||
|
|
||
|
export {
|
||
|
smartfile,
|
||
|
smartlogInterfaces,
|
||
|
smarttime
|
||
|
};
|