faj-cli
Version:
FAJ - A powerful CLI resume builder with AI enhancement and multi-format export
15 lines • 574 B
TypeScript
export declare class SimplePDFGenerator {
private logger;
constructor();
/**
* Generate a temporary HTML file that can be opened and printed to PDF
* This ensures perfect rendering with all fonts and styles
*/
generateHTMLForPDF(resume: any, themeName?: string): Promise<string>;
/**
* Generate PDF using PDFKit with better Unicode support
* Note: This method has limitations with complex layouts
*/
generateWithPDFKit(resume: any, themeName?: string): Promise<Buffer>;
}
//# sourceMappingURL=SimplePDFGenerator.d.ts.map