We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5fe86 commit 87ab626Copy full SHA for 87ab626
e2e/svelte-4/src/lib/Button.svelte
@@ -3,8 +3,8 @@
3
export let variant = "primary"
4
export let disabled = false
5
6
- /** @type {{ [key: string]: string }} */
7
- export let definitions
+ /** @type {{ [key: string]: string } | undefined} */
+ export let definitions = undefined
8
</script>
9
10
<button {...$$restProps} {disabled} class="{variant} {size}">
0 commit comments