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
Hi, I realy like your Tab implementation.
However since I use typescript the editor always complains that there are no types. I always need to add following in my d.ts file:
d.ts
declare module "svelte-tabs" { import { SvelteComponentTyped } from "svelte" export class Tab extends SvelteComponentTyped { } export class Tabs extends SvelteComponentTyped<{ initialSelectedIndex?: number }> { } export class TabList extends SvelteComponentTyped { } export class TabPanel extends SvelteComponentTyped { } }
And since I need to look up how to type SvelteConmponents, it would be nice if you could include the Typings in your package.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I realy like your Tab implementation.
However since I use typescript the editor always complains that there are no types. I always need to add following in my
d.ts
file:And since I need to look up how to type SvelteConmponents, it would be nice if you could include the Typings in your package.
The text was updated successfully, but these errors were encountered: