16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
// native scope
|
|
import * as path from 'path';
|
|
import * as http from 'http';
|
|
import * as https from 'https';
|
|
import * as fs from 'fs';
|
|
|
|
export { path, http, https, fs };
|
|
|
|
// @push.rocks scope
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartenv from '@push.rocks/smartenv';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as lik from '@push.rocks/lik';
|
|
|
|
export { smartpath, smartenv, smartlog, lik };
|