UNPKG

glv_pdf_parser

Version:

Library to extract text tables from pdf files.

11 lines (10 loc) 285 B
import { IPdfTable } from './types'; export declare class PdfTable implements IPdfTable { tableNumber: number; numrows: number; numcols: number; data: string[][]; constructor(obj: IPdfTable); asDelimitedText(separator?: string): string; asHtml(): string; }