UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

11 lines (10 loc) 265 B
import { Section } from '../types'; /** * Class for extracting sections from CV text */ export declare class SectionExtractor { /** * Split CV text into sections based on common section headers */ segmentCVIntoSections(text: string): Section; }