12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import * as plugins from './smartpdf.plugins.js';
|
|
|
|
export class PdfCandidate {
|
|
public htmlString: string;
|
|
public pdfId = plugins.smartunique.shortId();
|
|
public doneDeferred = plugins.smartpromise.defer();
|
|
|
|
constructor(htmlStringArg: string) {
|
|
this.htmlString = htmlStringArg;
|
|
}
|
|
}
|