24 lines
354 B
TypeScript
24 lines
354 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// @pushrocks scope
|
|
import * as lik from '@pushrocks/lik';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartrx from '@pushrocks/smartrx';
|
|
|
|
export {
|
|
lik,
|
|
smartpromise,
|
|
smartrx
|
|
}
|
|
|
|
// thirdparty scope
|
|
import * as chokidar from 'chokidar';
|
|
|
|
export {
|
|
chokidar
|
|
} |