@readme/markdown 14.10.3 → 14.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ declare const utils: {
7
7
  calloutIcons: {};
8
8
  };
9
9
  export { compile, exports, FLOW_TYPES, hast, INLINE_ONLY_PARENT_TYPES, run, mdast, mdastV6, mdx, mdxish, mdxishAstProcessor, mdxishMdastToMd, mdxishTags, extractToc, migrate, mix, plain, renderMdxish, remarkPlugins, stripComments, tags, } from './lib';
10
+ export type { MdxishOpts, RenderMdxishOpts, RunOpts } from './lib';
10
11
  export { default as Owlmoji } from './lib/owlmoji';
11
12
  export { Components, utils };
12
13
  export { tailwindCompiler } from './utils/tailwind-compiler';
@@ -16,6 +16,7 @@ export { default as plain } from './plain';
16
16
  export { default as renderMdxish } from './renderMdxish';
17
17
  export type { RenderMdxishOpts } from './renderMdxish';
18
18
  export { default as run } from './run';
19
+ export type { RunOpts } from './run';
19
20
  export { default as tags } from './tags';
20
21
  export { default as mdxishTags } from './mdxishTags';
21
22
  export { default as stripComments } from './stripComments';
@@ -0,0 +1 @@
1
+ export { mdxExpressionLenient } from './syntax';
@@ -0,0 +1,2 @@
1
+ import type { Extension } from 'micromark-util-types';
2
+ export declare function mdxExpressionLenient(): Extension;