UNPKG

mathup

Version:

Easy MathML authoring tool with a quick to write syntax

17 lines 648 B
/** * @param {State} state * @returns {{ node: Term; end: number }} */ export default function term(state: State): { node: Term; end: number; }; export type IdentLiteral = import("../index.js").IdentLiteral; export type Literal = import("../index.js").Literal; export type LiteralAttrs = import("../index.js").LiteralAttrs; export type Node = import("../index.js").Node; export type OperatorLiteral = import("../index.js").OperatorLiteral; export type Term = import("../index.js").Term; export type UnaryOperation = import("../index.js").UnaryOperation; export type State = import("../parse.js").State; //# sourceMappingURL=term.d.ts.map