mathup
Version:
Easy MathML authoring tool with a quick to write syntax
11 lines • 320 B
TypeScript
/**
* @param {State} state
* @returns {{ node: SpaceLiteral, end: number }}
*/
export default function space(state: State): {
node: SpaceLiteral;
end: number;
};
export type State = import("../parse.js").State;
export type SpaceLiteral = import("../index.js").SpaceLiteral;
//# sourceMappingURL=space.d.ts.map