UNPKG

resume-lite

Version:

Generate professional resumes effortlessly using resume.js. Input your information, and our tool will create polished and customizable resumes in various formats. Perfect for developers, designers, and any job seekers looking to showcase their skills and

12 lines (11 loc) 550 B
import { ResumeData } from '../resumeTypes'; /** * Generates an HTML string for a complete resume for the "Edge" template * using provided resume data. The Edge template presents important sections * in a main vericle layout and sections less important sections to a side * layout * * @param {ResumeData} resumeData - The resume data containing personal information, skills, work experience, and projects. * @returns {string} The generated HTML string representing the resume. */ export declare function edge(resumeData: ResumeData): string;