@meowdown/markdown 0.53.0 → 0.54.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/package.json +2 -1
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { MarkdownParser } from "@lezer/markdown";
2
+ import { SyntaxNode, Tree, TreeCursor } from "@lezer/common";
2
3
  //#region src/autolink-tld.d.ts
3
4
  /**
4
5
  * Derive the `href` for an autolink from its visible text:
@@ -77,4 +78,4 @@ declare const gfmBlockOnlyParser: MarkdownParser;
77
78
  */
78
79
  declare function isSpaceChar(char: number): boolean;
79
80
  //#endregion
80
- export { type InlineElement, LEZER_NODE_IDS, type MarkdownParser, collectInlineElements, getAutolinkHref, gfmBlockOnlyParser, gfmParser, isSpaceChar, parseInline };
81
+ export { type InlineElement, LEZER_NODE_IDS, type MarkdownParser, type SyntaxNode, type Tree, type TreeCursor, collectInlineElements, getAutolinkHref, gfmBlockOnlyParser, gfmParser, isSpaceChar, parseInline };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meowdown/markdown",
3
3
  "type": "module",
4
- "version": "0.53.0",
4
+ "version": "0.54.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -17,6 +17,7 @@
17
17
  "./dist/**/*.d.ts"
18
18
  ],
19
19
  "dependencies": {
20
+ "@lezer/common": "^1.5.2",
20
21
  "@lezer/markdown": "^1.7.1"
21
22
  },
22
23
  "devDependencies": {