mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-02-08 05:49:29 +01:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
export default class Word {
|
|
|
|
constructor(options) {
|
|
this.string = options.string;
|
|
this.type = options.type; // WordType
|
|
this.format = options.format; // WordFormat
|
|
}
|
|
|
|
} |