UNPKG

pdf-data-parser

Version:

Parse, search and stream PDF tabular data using Node.js with Mozilla's PDF.js library.

21 lines 533 B
/** * Transforms row objects to JSON strings. */ export default class FormatJSON { constructor(options: any); options: any; first: boolean; /** * Internal call from streamWriter to process an object * @param {Object} row * @param {String} encoding * @param {Function} callback */ _transform(row: Object, encoding: string, callback: Function): void; /** * * @param {Function} callback */ _flush(callback: Function): void; } //# sourceMappingURL=FormatJSON.d.ts.map