UNPKG

legal-markdown-js

Version:

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

25 lines 736 B
/** * Chrome Setup Helper * * Provides utilities to detect and help resolve Chrome/Chromium setup issues * for PDF generation when installed via npm. */ export interface ChromeStatus { hasSystemChrome: boolean; hasPuppeteerCache: boolean; chromePaths: string[]; suggestions: string[]; } /** * Checks the current Chrome/Chromium setup status */ export declare function checkChromeStatus(): ChromeStatus; /** * Attempts to automatically install Chrome for Puppeteer in global cache */ export declare function autoInstallChrome(): Promise<boolean>; /** * Displays helpful Chrome setup information to the user */ export declare function displayChromeHelp(): void; //# sourceMappingURL=chrome-setup-helper.d.ts.map