@thecodingwhale/cv-processor
Version:
CV Processor to extract structured data from PDF resumes using TypeScript
23 lines (22 loc) • 596 B
TypeScript
import { Experience } from '../types';
/**
* Class for extracting work experience information from CV text
*/
export declare class ExperienceExtractor {
/**
* Extract work experience information from the experience section text
*/
extractWorkExperience(experienceText: string | null): Experience[];
/**
* Extract job title from experience text
*/
private extractJobTitle;
/**
* Extract dates from experience text
*/
private extractDates;
/**
* Extract job description from experience text
*/
private extractDescription;
}