math-text.d.ts 323 B

123456789
  1. /**
  2. * @param {Options | null | undefined} [options={}]
  3. * Configuration (default: `{}`).
  4. * @returns {Construct}
  5. * Construct.
  6. */
  7. export function mathText(options?: Options | null | undefined): Construct;
  8. import type { Options } from 'micromark-extension-math';
  9. import type { Construct } from 'micromark-util-types';