Files
pdf-to-markdown/src/javascript/models/TextPage.jsx
Johannes Zillmann e43cf9a6a9 Add text view
2017-01-22 19:04:23 +01:00

10 lines
199 B
JavaScript

// A page which holds TextItems displayable via PdfPageView
export default class TextPage {
constructor(options) {
this.index = options.index;
this.text = options.text;
}
}