mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-07-17 22:41:59 +02:00
10 lines
199 B
JavaScript
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;
|
|
}
|
|
|
|
}
|