pdf-to-markdown/oldSrc/javascript/models/ParseResult.jsx

11 lines
403 B
React
Raw Normal View History

// The result of a PDF parse respectively a Transformation
export default class ParseResult {
constructor(options) {
2017-03-07 21:59:15 +01:00
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
}
}