We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current output looks like this.
export { default as Button } from "./components/Buttons/Button.svelte"; export { default as LinkButton } from "./components/Buttons/LinkButton.svelte"; export { default as JellyButton } from "./components/Buttons/JellyButton.svelte"; ...
Is it possible to make it like this?
export { default as Button, ButtonProps } from "./components/Buttons/Button.svelte"; export { default as LinkButton, LinkButtonProps } from "./components/Buttons/LinkButton.svelte"; export { default as JellyButton, JellyButtonProps } from "./components/Buttons/JellyButton.svelte";
Or some other solution..
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current output looks like this.
Is it possible to make it like this?
Or some other solution..
The text was updated successfully, but these errors were encountered: