Skip to content

Commit 7a94d61

Browse files
committedFeb 12, 2024
fix(esm): fix exported types
Fixes #1305
1 parent 8a1abba commit 7a94d61

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎esm/index.d.mts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
export * from '../lib/index';
2-
export { default } from '../lib/index';
1+
import HTMLReactParser from '../lib/index.js';
2+
3+
export * from '../lib/index.js';
4+
5+
// @ts-expect-error Property 'default' exists on type
6+
export default HTMLReactParser.default || HTMLReactParser;

‎src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import type { HTMLReactParserOptions } from './types';
77
export { Comment, Element, ProcessingInstruction, Text } from 'domhandler';
88
export type { DOMNode } from 'html-dom-parser';
99

10-
export { HTMLReactParserOptions, attributesToProps, domToReact, htmlToDOM };
10+
export type { HTMLReactParserOptions };
11+
export { attributesToProps, domToReact, htmlToDOM };
1112

1213
const domParserOptions = { lowerCaseAttributeNames: false } as const;
1314

0 commit comments

Comments
 (0)
Please sign in to comment.