mathup
Version:
Easy MathML authoring tool with a quick to write syntax
16 lines • 570 B
TypeScript
/**
* Parse a multiscript. Note that we assume the first two tokens been
* checked.
*
* @param {import("../parse.js").State} state
* @returns {{ node: MultiScripts, end: number }}
*/
export default function multiscripts(state: import("../parse.js").State): {
node: MultiScripts;
end: number;
};
export type Token = import("../../tokenizer/index.js").Token;
export type Node = import("../index.js").Node;
export type Term = import("../index.js").Term;
export type MultiScripts = import("../index.js").MultiScripts;
//# sourceMappingURL=multiscripts.d.ts.map