fix(core): update

This commit is contained in:
2023-11-25 01:38:43 +01:00
parent a08d67c8df
commit 8ee3aa41a0
8 changed files with 129 additions and 338 deletions

13
ts/classes.envelope.ts Normal file
View File

@@ -0,0 +1,13 @@
import type { SmartSign } from './classes.smartsign.js';
import * as plugins from './smartsign.plugins.js';
export class SigningEnvelope {
public pdf: plugins.smartpdf.IPdf;
constructor(smartsignRef: SmartSign, originalPdf: plugins.smartpdf.IPdf) {
this.pdf = originalPdf;
}
exportSignedPdf() {
}
}