15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
};
|
|
|
|
// @push.rocks scope
|
|
import * as smartevent from '@push.rocks/smartevent';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartstream from '@push.rocks/smartstream';
|
|
import * as through2 from 'through2';
|
|
|
|
export { smartevent, smartfile, smartstream, through2 };
|