UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

19 lines (18 loc) 498 B
import { Education } from '../types'; /** * Class for extracting education information from CV text */ export declare class EducationExtractor { /** * Extract education information from the education section text */ extractEducation(educationText: string | null): Education[]; /** * Extract dates from education entry text */ private extractDates; /** * Extract degree and field of study from education entry text */ private extractDegree; }