fix: re-export WithElementRef, WithoutChild, WithoutChildrenOrChild from utils

shadcn-svelte components import these types from \$lib/utils — add
re-exports from bits-ui to resolve 25 type errors.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Piotr Oleszczyk 2026-02-27 10:24:34 +01:00
parent 9a069508af
commit 5e3c0c97e5

View file

@ -4,3 +4,5 @@ import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export type { WithElementRef, WithoutChild, WithoutChildrenOrChild } from 'bits-ui';