legal-markdown-js
Version:
Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version
13 lines • 584 B
TypeScript
import type { ConnectorInfo, PdfConnector, PdfOptions } from './types.js';
export declare class SystemChromeConnector implements PdfConnector {
private readonly runtimePlatform;
readonly name = "system-chrome";
private detectedExecutablePath;
constructor(runtimePlatform?: NodeJS.Platform);
private detectExecutablePath;
isAvailable(): Promise<boolean>;
private withPageCss;
generatePdf(html: string, outputPath: string, options: PdfOptions): Promise<void>;
getInfo(): Promise<ConnectorInfo>;
}
//# sourceMappingURL=system-chrome-connector.d.ts.map