15 lines
358 B
TypeScript
15 lines
358 B
TypeScript
// node native scope
|
|
import * as path from 'node: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 { minimatch } from 'minimatch';
|
|
|
|
export { smartevent, smartfile, smartstream, minimatch };
|