2023-11-25 00:38:43 +00:00
|
|
|
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() {
|
2023-11-25 00:48:23 +00:00
|
|
|
|
2023-11-25 00:38:43 +00:00
|
|
|
}
|
|
|
|
}
|