site/node_modules/remark-math/lib/index.d.ts
2024-10-14 08:09:33 +02:00

13 lines
418 B
TypeScript

/**
* Add support for math.
*
* @param {Readonly<Options> | null | undefined} [options]
* Configuration (optional).
* @returns {undefined}
* Nothing.
*/
export default function remarkMath(options?: Readonly<Options> | null | undefined): undefined;
export type Root = import('mdast').Root;
export type Options = import('mdast-util-math').ToOptions;
export type Processor = import('unified').Processor<Root>;