fix(compliance): Improve compliance

This commit is contained in:
2025-05-26 10:17:50 +00:00
parent 113ae22c42
commit e7c3a774a3
26 changed files with 2435 additions and 2010 deletions

View File

@ -4,6 +4,11 @@
* to make the codebase more maintainable and follow the DRY principle.
*/
// Node.js built-in modules
import * as fs from 'fs/promises';
import * as path from 'path';
import * as crypto from 'crypto';
// PDF-related imports
import {
PDFDocument,
@ -27,6 +32,11 @@ import { business, finance, general } from '@tsclass/tsclass';
// Re-export all imports
export {
// Node.js built-in modules
fs,
path,
crypto,
// PDF-lib exports
PDFDocument,
PDFDict,