test: fix type errors

This commit is contained in:
Eric Liu 2024-11-09 09:59:04 -08:00
commit f25a23dd26
10 changed files with 29 additions and 22 deletions

View file

@ -1,7 +1,8 @@
<script lang="ts">
import { TextInput, TextInputSkeleton } from "carbon-components-svelte";
import type { ComponentProps } from "svelte";
let value = null;
let value: ComponentProps<TextInput>["value"] = null;
</script>
<TextInput