UNPKG
@rpidanny/pdf2md
Version:
latest (1.0.0)
1.0.0
A PDF to Markdown Converter
github.com/rpidanny/pdf2md
rpidanny/pdf2md
@rpidanny/pdf2md
/
lib
/
models
/
Page.js
8 lines
(7 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// A page which holds PageItems displayable via PdfPageView
module.exports =
class
Page
{
constructor
(options) {
this
.index = options.index
this
.items = options.items || []
// PageItem
} }