Crayonics / types /pdf-parse.d.ts
Nattyboi's picture
initial commit
849c2f4
raw
history blame
248 Bytes
declare module 'pdf-parse' {
interface PDFData {
text: string;
numpages: number;
info: any;
metadata: any;
version: string;
}
function PDFParse(dataBuffer: Buffer, options?: any): Promise<PDFData>;
export = PDFParse;
}