We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
remarkablemark
Learn more about funding links in repositories.
Report abuse
1 parent 78b7a8e commit e3c7931Copy full SHA for e3c7931
esm/attributes-to-props.d.mts
@@ -1 +1,4 @@
1
-export { default } from '../lib/attributes-to-props';
+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
-export { default } from '../lib/dom-to-react';
+import domToReact from '../lib/dom-to-react.js';
+export default domToReact.default || domToReact;
0 commit comments