2024-03-16 23:53:32 +00:00
|
|
|
// node native scope
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export {
|
|
|
|
path,
|
|
|
|
}
|
|
|
|
|
2024-03-17 20:24:25 +00:00
|
|
|
// @api.global scope
|
|
|
|
import * as typedserver from '@api.global/typedserver';
|
|
|
|
|
|
|
|
export {
|
|
|
|
typedserver,
|
|
|
|
}
|
|
|
|
|
2024-03-16 23:53:32 +00:00
|
|
|
// @push.rocks scope
|
2024-03-17 20:24:25 +00:00
|
|
|
import * as lik from '@push.rocks/lik';
|
2024-03-16 23:53:32 +00:00
|
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
2024-03-17 20:24:25 +00:00
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
2024-03-16 23:53:32 +00:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
import * as smarthshell from '@push.rocks/smartshell';
|
2024-03-17 20:24:25 +00:00
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
2024-03-16 23:53:32 +00:00
|
|
|
|
|
|
|
export {
|
2024-03-17 20:24:25 +00:00
|
|
|
lik,
|
2024-03-16 23:53:32 +00:00
|
|
|
smartarchive,
|
2024-03-17 20:24:25 +00:00
|
|
|
smartfile,
|
2024-03-16 23:53:32 +00:00
|
|
|
smartpath,
|
|
|
|
smarthshell,
|
2024-03-17 20:24:25 +00:00
|
|
|
smartunique,
|
2024-03-16 23:53:32 +00:00
|
|
|
}
|