html-pdf-chrome
Version:
HTML to PDF and image converter via Chrome/Chromium
17 lines • 535 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionLostError = void 0;
// https://stackoverflow.com/a/41429145/453314
/**
* An Error signifying that the connection to Chrome was lost.
*
* @export
*/
class ConnectionLostError extends Error {
constructor() {
super('HtmlPdf.create() connection lost.');
Object.setPrototypeOf(this, ConnectionLostError.prototype);
}
}
exports.ConnectionLostError = ConnectionLostError;
//# sourceMappingURL=ConnectionLostError.js.map
;