mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 22:26:19 +00:00
fix types
This commit is contained in:
parent
a1fa2796ef
commit
8d9fce5293
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
<script lang="ts" context="module">
|
<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>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
|
Loading…
Reference in a new issue