latex2im / katex /src /parseData.js
da03
.
b498cbf
raw
history blame
221 Bytes
/**
* The resulting parse tree nodes of the parse tree.
*/
function ParseNode(type, value, mode) {
this.type = type;
this.value = value;
this.mode = mode;
}
module.exports = {
ParseNode: ParseNode,
};