Skip to content

Commit e3c7931

Browse files
committedFeb 14, 2024
fix(esm): fix attributes-to-props and dom-to-react exported types
1 parent 78b7a8e commit e3c7931

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎esm/attributes-to-props.d.mts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export { default } from '../lib/attributes-to-props';
1+
import attributesToProps from '../lib/attributes-to-props.js';
2+
3+
// @ts-expect-error Property 'default' exists on type
4+
export default attributesToProps.default || attributesToProps;

‎esm/dom-to-react.d.mts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export { default } from '../lib/dom-to-react';
1+
import domToReact from '../lib/dom-to-react.js';
2+
3+
// @ts-expect-error Property 'default' exists on type
4+
export default domToReact.default || domToReact;

0 commit comments

Comments
 (0)
Please sign in to comment.