mathup
Version:
Easy MathML authoring tool with a quick to write syntax
15 lines • 665 B
TypeScript
/**
* @param {import("../parse.js").State} state
* @returns {{ node: FencedGroup | MatrixGroup | MultiScripts, end: number }}
*/
export default function group(state: import("../parse.js").State): {
node: FencedGroup | MatrixGroup | MultiScripts;
end: number;
};
export type Token = import("../../tokenizer/index.js").Token;
export type Node = import("../index.js").Node;
export type FencedGroup = import("../index.js").FencedGroup;
export type MatrixGroup = import("../index.js").MatrixGroup;
export type MultiScripts = import("../index.js").MultiScripts;
export type LiteralAttrs = import("../index.js").LiteralAttrs;
//# sourceMappingURL=group.d.ts.map