2024-04-22 14:30:55 +00:00
|
|
|
// node native
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export {
|
|
|
|
path
|
|
|
|
}
|
|
|
|
|
|
|
|
// @push.rocks scope
|
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
2024-12-30 20:12:31 +00:00
|
|
|
import * as smartxml from '@push.rocks/smartxml';
|
2024-04-22 14:30:55 +00:00
|
|
|
|
|
|
|
export {
|
2024-12-30 20:12:31 +00:00
|
|
|
smartfile,
|
|
|
|
smartxml
|
2024-04-22 14:30:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// third party
|
2024-12-31 12:38:41 +00:00
|
|
|
import * as pako from 'pako';
|
2024-04-22 14:30:55 +00:00
|
|
|
import * as pdfLib from 'pdf-lib';
|
|
|
|
|
|
|
|
export {
|
2024-12-31 12:38:41 +00:00
|
|
|
pako,
|
2024-04-22 14:30:55 +00:00
|
|
|
pdfLib
|
2024-12-30 20:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// tsclass scope
|
|
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
|
|
|
|
export {
|
|
|
|
tsclass
|
|
|
|
}
|