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

13 lines
463 B
TypeScript
Executable File

/**
* Create an extension for `micromark` to enable math syntax.
*
* @param {Options | null | undefined} [options={}]
* Configuration (default: `{}`).
* @returns {Extension}
* Extension for `micromark` that can be passed in `extensions`, to
* enable math syntax.
*/
export function math(options?: Options | null | undefined): Extension;
import type { Options } from 'micromark-extension-math';
import type { Extension } from 'micromark-util-types';