feat: add PDF overlay and underlay functionality

This commit is contained in:
alam00000
2026-04-01 18:11:36 +05:30
parent 046a421591
commit ecfa571215
27 changed files with 1406 additions and 0 deletions

View File

@@ -65,3 +65,4 @@ export * from './shortcuts-type.ts';
export * from './ui-type.ts';
export * from './markdown-editor-type.ts';
export * from './sanitize-type.ts';
export * from './overlay-pdf-type.ts';

View File

@@ -0,0 +1,4 @@
export interface OverlayPdfState {
baseFile: File | null;
overlayFile: File | null;
}