Skip to content

Commit c8c404a

Browse files
committed
add test
1 parent a41cf0a commit c8c404a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- message: "'test' is an unused Props property."
2+
line: 7
3+
column: 8
4+
suggestions: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script lang="ts">
2+
type Props = {
3+
test: string;
4+
'aria-label'?: string;
5+
};
6+
7+
const { 'aria-label': foo }: Props = $props();
8+
</script>
9+
10+
{foo}

0 commit comments

Comments
 (0)