12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
|
|
// node native scope
|
||
|
|
import * as buffer from 'node:buffer';
|
||
|
|
import * as path from 'node:path';
|
||
|
|
|
||
|
|
export { buffer, path };
|
||
|
|
|
||
|
|
// @push.rocks scope
|
||
|
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
|
import * as smartrust from '@push.rocks/smartrust';
|
||
|
|
|
||
|
|
export { smartpath, smartrust };
|