15 lines
466 B
TypeScript
15 lines
466 B
TypeScript
// node native scope
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
export { fs, path };
|
|
|
|
// pushrocks scope
|
|
import * as smartdns from '@push.rocks/smartdns/client';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartmustache from '@push.rocks/smartmustache';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import SmartRequest from '@push.rocks/smartrequest';
|
|
|
|
export { smartdns, smartfile, smartmustache, smartpath, SmartRequest };
|