UNPKG

legal-markdown-js

Version:

Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version

8 lines 388 B
import type { ConnectorInfo, PdfConnector, PdfOptions } from './types.js'; export declare class PuppeteerConnector implements PdfConnector { readonly name = "puppeteer"; isAvailable(): Promise<boolean>; generatePdf(html: string, outputPath: string, options: PdfOptions): Promise<void>; getInfo(): Promise<ConnectorInfo>; } //# sourceMappingURL=puppeteer-connector.d.ts.map