mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-07-15 13:35:02 +02:00
14 lines
322 B
JavaScript
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;
|
|
}
|
|
|
|
}
|