2024-03-17 00:53:32 +01:00
|
|
|
// node native scope
|
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
path,
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 21:24:25 +01:00
|
|
|
// @api.global scope
|
|
|
|
|
import * as typedserver from '@api.global/typedserver';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
typedserver,
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 00:53:32 +01:00
|
|
|
// @push.rocks scope
|
2024-03-17 21:24:25 +01:00
|
|
|
import * as lik from '@push.rocks/lik';
|
2024-03-17 00:53:32 +01:00
|
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
2025-12-02 11:27:35 +00:00
|
|
|
import * as smartfs from '@push.rocks/smartfs';
|
2024-03-17 00:53:32 +01:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
2025-12-02 11:27:35 +00:00
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
2024-03-17 21:24:25 +01:00
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
2024-03-17 00:53:32 +01:00
|
|
|
|
|
|
|
|
export {
|
2024-03-17 21:24:25 +01:00
|
|
|
lik,
|
2024-03-17 00:53:32 +01:00
|
|
|
smartarchive,
|
2025-12-02 11:27:35 +00:00
|
|
|
smartfs,
|
2024-03-17 00:53:32 +01:00
|
|
|
smartpath,
|
2025-12-02 11:27:35 +00:00
|
|
|
smartshell,
|
2024-03-17 21:24:25 +01:00
|
|
|
smartunique,
|
2024-03-17 00:53:32 +01:00
|
|
|
}
|