/** * Centralized imports for all external npm modules * This file serves as a single point of import for all external dependencies * to make the codebase more maintainable and follow the DRY principle. */ import { PDFDocument, PDFDict, PDFName, PDFRawStream, PDFArray, PDFString, AFRelationship } from 'pdf-lib'; import { DOMParser, XMLSerializer } from 'xmldom'; import * as xpath from 'xpath'; import * as pako from 'pako'; import { business, finance, general } from '@tsclass/tsclass'; export { PDFDocument, PDFDict, PDFName, PDFRawStream, PDFArray, PDFString, AFRelationship, DOMParser, XMLSerializer, xpath, pako, business, finance, general };