index.d.ts 418 B

123456789101112
  1. /**
  2. * Add support for math.
  3. *
  4. * @param {Readonly<Options> | null | undefined} [options]
  5. * Configuration (optional).
  6. * @returns {undefined}
  7. * Nothing.
  8. */
  9. export default function remarkMath(options?: Readonly<Options> | null | undefined): undefined;
  10. export type Root = import('mdast').Root;
  11. export type Options = import('mdast-util-math').ToOptions;
  12. export type Processor = import('unified').Processor<Root>;