UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

10 lines (9 loc) 411 B
/** * Renders Mermaid charts from a markdown report to static PNG images * Requires @mermaid-js/mermaid-cli to be installed */ export declare function renderChartsFromReport(reportPath: string, outputDir: string): Promise<string[]>; /** * Creates an HTML version of the report with embedded charts */ export declare function createHtmlReport(markdownPath: string, chartOutputDir: string): Promise<string>;