Closed as not planned
Description
Describe the problem
If I have this for a +page.svelte:
<script lang="ts">
type Props = {
some?: boolean;
custom?: () => void;
propss?: (something: SomeType) => void;
here?: () => void;
};
let {
some,
custom,
propss,
here,
}: Props = $props();
// more code
</script>
I get the error on my some
, custom
, props
, here
props.
Why?
Describe the proposed solution
I would like to use all the props I need.
Alternatives considered
No response
Importance
would make my life easier
Additional Information
I opened sveltejs/eslint-plugin-svelte#1263 but I think this is something to discuss here instead. Right?
Metadata
Metadata
Assignees
Labels
No labels