mathup
Version:
Easy MathML authoring tool with a quick to write syntax
11 lines • 431 B
TypeScript
/**
* @typedef {import("./compiler/index.js").Result} Mathup
* @typedef {import("./compiler/index.js").Options} Options
* @param {string} input
* @param {Options} [options]
* @returns {Mathup}
*/
export default function mathup(input: string, options?: Options): Mathup;
export type Mathup = import("./compiler/index.js").Result;
export type Options = import("./compiler/index.js").Options;
//# sourceMappingURL=index.d.ts.map