feat(core): Enhanced document generation features and added translation capabilities

This commit is contained in:
2024-11-30 20:54:15 +01:00
parent e6cd135920
commit af77fcbe0e
18 changed files with 483 additions and 322 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface IDocumentSettings {
enableTopDraftText?: boolean;
enableDefaultHeader?: boolean;
enableDefaultFooter?: boolean;
}
+2
View File
@@ -0,0 +1,2 @@
export * from './document.js';
export * from './translation.js';
+4
View File
@@ -0,0 +1,4 @@
export interface IDeDocumentTranslations {
"invoice": string;
"quantity": string;
}