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
11 lines (10 loc) • 487 B
TypeScript
import { ResumeData } from '../resumeTypes';
/**
* Generates an HTML string for a complete resume for the "Stack" template
* using provided resume data. The Stack template presents all sections
* in a vertical 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 stack(resumeData: ResumeData): string;