@thecodingwhale/cv-processor
Version:
CV Processor to extract structured data from PDF resumes using TypeScript
15 lines (14 loc) • 349 B
TypeScript
import { Skills } from '../types';
/**
* Class for extracting and categorizing skills from CV text
*/
export declare class SkillsExtractor {
/**
* Extract skills from the skills section
*/
extractSkills(skillsText: string | null): Skills;
/**
* Check if a skill matches a category
*/
private matchesCategory;
}