resumefy
Version:
A simple toolkit to bring your JSON Resume to life
11 lines (10 loc) • 513 B
TypeScript
import { RenderOptions } from '../types.js';
/**
* Renders a resume from a JSON file to HTML and PDF.
* @param resumeFile The path to the resume JSON file
* @param options An options object with the following properties:
* @param options.theme The theme to use for rendering
* @param options.outDir The directory to save the output files (default: '.')
* @returns A promise resolving when rendering is complete
*/
export declare const render: (resumeFile: string, options: RenderOptions) => Promise<void>;