mpellegrini / fullstack-typescript-monorepo-starter

1 stars 1 forks source link

fix(packages/ui-svelte): card components import type #61

Closed mpellegrini closed 6 months ago

mpellegrini commented 6 months ago

Using:

import { type HTMLAttributes } from 'svelte/elements'

was causing failures starting SvelteKit app, needed to change to:

import type { HTMLAttributes } from 'svelte/elements'