15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
// native scope
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import * as childProcess from 'child_process';
|
|
import * as events from 'events';
|
|
import * as url from 'url';
|
|
import * as net from 'net';
|
|
|
|
export { path, fs, childProcess, events, url, net };
|
|
|
|
// @push.rocks scope
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
export { smartpath };
|