Skip to content

Commit

Permalink
fix: re-export types correctly for verbatimModuleSyntax (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
DreierF authored Dec 19, 2023
1 parent 257cd8c commit 782b675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Comment, Element, ProcessingInstruction, Text } from 'domhandler';

export { Comment, Element, ProcessingInstruction, Text };
export type { Comment, Element, ProcessingInstruction, Text };

export type DOMNode = Comment | Element | ProcessingInstruction | Text;

0 comments on commit 782b675

Please sign in to comment.