UNPKG

nresume

Version:

A parser to parse resume into JSON format for any esm based platform like React, Next.js, Vanilla JS etc.

6 lines (5 loc) 330 B
import type { Lines } from '../types'; export declare const BULLET_POINTS: string[]; export declare const getBulletPointsFromLines: (lines: Lines) => string[]; export declare const getFirstBulletPointLineIdx: (lines: Lines) => number | undefined; export declare const getDescriptionsLineIdx: (lines: Lines) => number | undefined;