20 lines
233 B
TypeScript
20 lines
233 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
|
|
export {
|
|
smartfile
|
|
}
|
|
|
|
// third party
|
|
import * as pdfLib from 'pdf-lib';
|
|
|
|
export {
|
|
pdfLib
|
|
} |