1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/micromark-extension-math/dev/lib/syntax.d.ts
2025-08-25 17:48:13 +08:00

13 lines
463 B
TypeScript

/**
* 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';