mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-02-08 13:59:43 +01: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
|
|
}
|
|
|
|
}
|