mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-02-08 05:49:29 +01:00
11 lines
403 B
JavaScript
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
|
|
}
|
|
|
|
}
|