UNPKG

express-html-to-pdf

Version:

Convert HTML to PDF using express, the node.js framework

4 lines (3 loc) 197 B
import { Response } from 'express'; import { HTMLToPDFOptions } from '../types'; export declare function handlePDF(this: Response, html: string, userOptions?: HTMLToPDFOptions): Promise<Response>;