Skip to content

Commit afb68b1

Browse files
authored
🐛 Incorrect type import (#2541)
1 parent 4fa5779 commit afb68b1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/purple-coats-learn.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'myst-to-jats': patch
3+
---
4+
5+
Incorrect type import `Node`.

packages/myst-to-jats/src/transforms/containers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Plugin } from 'unified';
2-
import type { Blockquote, Legend, Caption, FlowContent } from 'myst-spec';
2+
import type { Node, Blockquote, Legend, Caption, FlowContent } from 'myst-spec';
33
import type { Container } from 'myst-spec-ext';
44
import { select, selectAll } from 'unist-util-select';
55
import { remove } from 'unist-util-remove';

0 commit comments

Comments
 (0)