mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-07-12 20:15:15 +02:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
// A page which holds PageItems displayable via PdfPageView
|
|
export default class Page {
|
|
|
|
constructor(options) {
|
|
this.index = options.index;
|
|
this.items = options.items || []; //PageItem
|
|
}
|
|
|
|
}
|