pdf-to-markdown/oldSrc/javascript/models/ParseResult.jsx
2024-03-26 10:52:54 -06:00

11 lines
403 B
JavaScript

// The result of a PDF parse respectively a Transformation
export default class ParseResult {
constructor(options) {
this.pages = options.pages; // like Page[]
this.globals = options.globals; // properties accasable for all the following transformations in debug mode
this.messages = options.messages; // something to show only for the transformation in debug mode
}
}