fix(core): update

This commit is contained in:
2022-03-25 01:19:21 +01:00
parent 3559453579
commit 63f56da150
5 changed files with 21 additions and 232 deletions

View File

@ -30,8 +30,8 @@ export class SmartBrowser {
* create a pdf from page
* @param urlArg
*/
public pdfFromPage(urlArg: string) {
const result = this.smartpdf.getFullWebsiteAsSinglePdf(urlArg);
public async pdfFromPage(urlArg: string) {
const result = await this.smartpdf.getFullWebsiteAsSinglePdf(urlArg);
return result;
}