Files
pdf-to-markdown/src/javascript/models/TextItem.jsx
2017-01-27 21:40:49 +01:00

14 lines
322 B
JavaScript

//A text iteme, i.e. a line, within a page
export default class TextItem {
constructor(options) {
this.x = options.x;
this.y = options.y;
this.width = options.width;
this.height = options.height;
this.text = options.text;
this.annotation = options.annotation;
}
}