22 lines
503 B
TypeScript
22 lines
503 B
TypeScript
|
|
// node native
|
||
|
|
import * as fs from 'fs';
|
||
|
|
import * as path from 'path';
|
||
|
|
import * as os from 'os';
|
||
|
|
|
||
|
|
export { fs, path, os };
|
||
|
|
|
||
|
|
// @push.rocks scope
|
||
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
||
|
|
import * as smartexit from '@push.rocks/smartexit';
|
||
|
|
import { SmartRequest } from '@push.rocks/smartrequest';
|
||
|
|
import * as smartshell from '@push.rocks/smartshell';
|
||
|
|
import * as smartunique from '@push.rocks/smartunique';
|
||
|
|
|
||
|
|
export {
|
||
|
|
smartdelay,
|
||
|
|
smartexit,
|
||
|
|
SmartRequest,
|
||
|
|
smartshell,
|
||
|
|
smartunique,
|
||
|
|
};
|