Compare commits

...

2 Commits

Author SHA1 Message Date
59eed53644 1.0.16 2019-06-03 16:39:21 +02:00
473aaa004a fix(core): update 2019-06-03 16:39:21 +02:00
3 changed files with 6 additions and 5 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartpdf",
"version": "1.0.15",
"version": "1.0.16",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartpdf",
"version": "1.0.15",
"version": "1.0.16",
"private": false,
"description": "create pdfs on the fly",
"main": "dist/index.js",

View File

@ -5,7 +5,7 @@ import { PdfCandidate } from './smartpdf.classes.pdfcandidate';
declare const document;
import { IPdfResult } from './interfaces';
import * as interfaces from './interfaces';
export class SmartPdf {
htmlServerInstance: Server;
@ -50,6 +50,7 @@ export class SmartPdf {
});
}
// stop
async stop() {
const done = plugins.smartpromise.defer<void>();
this.htmlServerInstance.close(() => {
@ -66,7 +67,7 @@ export class SmartPdf {
/**
* returns a pdf for a given html string;
*/
async getPdfForHtmlString(htmlStringArg: string): Promise<IPdfResult> {
async getPdfForHtmlString(htmlStringArg: string): Promise<interfaces.IPdfResult> {
await this._readyDeferred.promise;
const pdfCandidate = new PdfCandidate(htmlStringArg);
this._candidates[pdfCandidate.pdfId] = pdfCandidate;
@ -96,7 +97,7 @@ export class SmartPdf {
};
}
async getPdfForWebsite(websiteUrl: string): Promise<IPdfResult> {
async getPdfForWebsite(websiteUrl: string): Promise<interfaces.IPdfResult> {
const page = await this.headlessBrowser.newPage();
page.emulateMedia('screen');
const response = await page.goto(websiteUrl, { waitUntil: 'networkidle2' });