site/node_modules/remark-math/lib/index.d.ts

13 lines
418 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* 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>;