@readme/markdown 10.0.0 → 10.0.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.
@@ -1,3 +1,4 @@
1
1
  import type { Root } from 'mdast';
2
- declare const migrateCallouts: () => (tree: Root) => Root;
2
+ import type { Plugin } from 'unified';
3
+ declare const migrateCallouts: Plugin<[], Root>;
3
4
  export default migrateCallouts;
@@ -0,0 +1,4 @@
1
+ import type { Root } from 'mdast';
2
+ import type { Plugin } from 'unified';
3
+ declare const migrateLinkReferences: Plugin<[], Root>;
4
+ export default migrateLinkReferences;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@readme/markdown",
3
3
  "description": "ReadMe's React-based Markdown parser",
4
4
  "author": "Rafe Goldberg <rafe@readme.io>",
5
- "version": "10.0.0",
5
+ "version": "10.0.1",
6
6
  "main": "dist/main.node.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "browser": "dist/main.js",