2018-10-06 13:25:45 +00:00
|
|
|
import * as plugins from './smartpdf.plugins';
|
|
|
|
|
|
|
|
export class PdfCandidate {
|
2021-10-14 08:59:45 +00:00
|
|
|
public htmlString: string;
|
|
|
|
public pdfId = plugins.smartunique.shortId();
|
|
|
|
public doneDeferred = plugins.smartpromise.defer();
|
2018-10-06 13:25:45 +00:00
|
|
|
|
2021-10-14 08:59:45 +00:00
|
|
|
constructor(htmlStringArg: string) {
|
|
|
|
this.htmlString = htmlStringArg;
|
|
|
|
}
|
2018-10-06 13:25:45 +00:00
|
|
|
}
|