mathup
Version:
Easy MathML authoring tool with a quick to write syntax
17 lines • 709 B
TypeScript
/**
* @param {State} state
* @returns {{ node: Operation | Term; end: number }}
*/
export default function command(state: State): {
node: Operation | Term;
end: number;
};
export type Token = import("../../tokenizer/index.js").Token;
export type Node = import("../index.js").Node;
export type UnaryOperation = import("../index.js").UnaryOperation;
export type BinaryOperation = import("../index.js").BinaryOperation;
export type TernaryOperation = import("../index.js").TernaryOperation;
export type Operation = UnaryOperation | BinaryOperation | TernaryOperation;
export type Term = import("../index.js").Term;
export type State = import("../parse.js").State;
//# sourceMappingURL=command.d.ts.map