fix types

This commit is contained in:
Cat /dev/Nulo 2024-08-04 12:57:01 -03:00
parent a1fa2796ef
commit 8d9fce5293

View file

@ -1,5 +1,9 @@
<script lang="ts" context="module">
export type Product = { ean: string; name: string; image_url: string | null };
export type Product = {
ean: string;
name: string | null;
image_url: string | null;
};
</script>
<script lang="ts">