pdf-to-markdown/oldSrc/javascript/models/Word.jsx
2024-03-26 10:52:54 -06:00

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
}
}