Files
est-frame/node_modules/micromark-extension-math/dev/lib/math-text.d.ts
2025-10-22 05:38:27 +00:00

10 lines
323 B
TypeScript
Executable File

/**
* @param {Options | null | undefined} [options={}]
* Configuration (default: `{}`).
* @returns {Construct}
* Construct.
*/
export function mathText(options?: Options | null | undefined): Construct;
import type { Options } from 'micromark-extension-math';
import type { Construct } from 'micromark-util-types';