UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

15 lines (14 loc) 405 B
import { PersonalInfo } from '../types'; /** * Class for extracting personal information from CV text */ export declare class PersonalInfoExtractor { /** * Extract personal information from the text */ extractPersonalInfo(text: string): PersonalInfo; /** * Extract and clean the summary/profile section */ extractSummary(summaryText: string | null): string | null; }