13 lines
501 B
TypeScript
13 lines
501 B
TypeScript
/**
|
|
* Create an extension for `micromark` to enable MDX JSX syntax.
|
|
*
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {Extension}
|
|
* Extension for `micromark` that can be passed in `extensions` to enable MDX
|
|
* JSX syntax.
|
|
*/
|
|
export function mdxJsx(options?: Options | null | undefined): Extension;
|
|
import type { Options } from 'micromark-extension-mdx-jsx';
|
|
import type { Extension } from 'micromark-util-types';
|
|
//# sourceMappingURL=syntax.d.ts.map
|