diff --git a/src/types.ts b/src/types.ts index eaeb9534..4be12091 100644 --- a/src/types.ts +++ b/src/types.ts @@ -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;