refactor: fix type errors

This commit is contained in:
Elias Schneider
2025-04-20 18:54:45 +02:00
parent debef9a66b
commit 2597907578
10 changed files with 17 additions and 11 deletions

View File

@@ -1,9 +1,10 @@
<script lang="ts">
import { Command as CommandPrimitive } from "cmdk-sv";
import { cn } from "$lib/utils/style.js";
import type { ClassValue } from "svelte/elements";
type $$Props = CommandPrimitive.GroupProps;
let className: string | undefined | null = undefined;
let className: ClassValue | undefined | null = undefined;
export { className as class };
</script>