CV-Engine/shared-printable/buildPrintableHtml.d.ts
geulah d35700bc10 feat(templates): add multiple CV templates with photo support and template selection
- Add 4 new CV templates (ATS-Friendly, Classic, Modern, Minimal) with thumbnails
- Implement template registry and gallery component for template selection
- Add photoUrl field to personal info with URL validation
- Update buildPrintableHtml to support template-specific styling
- Modify ExportControls to use template registry
- Add template preview thumbnails in SVG format
2025-10-06 08:29:33 +01:00

2 lines
136 B
TypeScript

export type CV = import('../cv-engine/src/schema/cvSchema').CV;
export function buildPrintableHtml(cv: CV, templateId?: string): string;