29 lines
710 B
TypeScript
29 lines
710 B
TypeScript
|
// node native scope
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
path,
|
||
|
}
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as qenv from '@push.rocks/qenv';
|
||
|
import * as smartarchive from '@push.rocks/smartarchive';
|
||
|
import * as smartdata from '@push.rocks/smartdata';
|
||
|
import * as smartdelay from '@push.rocks/smartdelay';
|
||
|
import * as smartfile from '@push.rocks/smartfile';
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
import * as smartpromise from '@push.rocks/smartpromise';
|
||
|
import * as smartrequest from '@push.rocks/smartrequest';
|
||
|
import * as smartstream from '@push.rocks/smartstream';
|
||
|
|
||
|
export {
|
||
|
qenv,
|
||
|
smartarchive,
|
||
|
smartdata,
|
||
|
smartdelay,
|
||
|
smartfile,
|
||
|
smartpath,
|
||
|
smartpromise,
|
||
|
smartrequest,
|
||
|
smartstream,
|
||
|
}
|