blob: fd094306e74272686677a5cb0640670cadd6c608 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
declare module 'micromark-extension-mdx-expression' {
import type { HtmlExtension } from 'micromark/dist/shared-types';
export default function (): HtmlExtension;
}
declare module 'micromark-extension-mdx-jsx' {
import type { HtmlExtension } from 'micromark/dist/shared-types';
export default function (): HtmlExtension;
}
|