UNPKG
@snippetify/book-reader
Version:
latest (1.0.7)
1.0.7
1.0.0
Book reader utilities
bitbucket.org/gadsda/book-reader
@snippetify/book-reader
/
src
/
models
/
Page.js
10 lines
(8 loc)
•
145 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
class
Page
{
constructor
(
data
) {
this
.no =
data
.no
this
.abbr =
data
.abbr
this
.content =
data
.content } } module.exports = Page