diff options
Diffstat (limited to 'src/compiler/markdown/micromark.d.ts')
-rw-r--r-- | src/compiler/markdown/micromark.d.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/compiler/markdown/micromark.d.ts b/src/compiler/markdown/micromark.d.ts new file mode 100644 index 000000000..1f389e473 --- /dev/null +++ b/src/compiler/markdown/micromark.d.ts @@ -0,0 +1,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; +}
\ No newline at end of file |