Skip to content

Commit 8710a63

Browse files
committed
feat: Add AllProps export (resolves #1032)
1 parent dbbc15d commit 8710a63

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/entry.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import component, * as namedExports from './entry.esm';
2+
import { AllProps } from '@/props.ts';
23

34
Object.entries(namedExports).forEach(([exportName, exported]) => {
45
if (exportName !== 'default') component[exportName] = exported;
56
});
67

78
export default component;
9+
10+
export { AllProps };

0 commit comments

Comments
 (0)