mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-24 23:26:20 +00:00
arreglar types
This commit is contained in:
parent
0be2ff8911
commit
8ed967209f
2 changed files with 1 additions and 3 deletions
|
@ -1,8 +1,6 @@
|
|||
<script lang="ts">
|
||||
import SearchBar from '$lib/components/SearchBar.svelte';
|
||||
import Badge from '$lib/components/ui/badge/badge.svelte';
|
||||
import Button from '$lib/components/ui/button/button.svelte';
|
||||
import * as Card from '$lib/components/ui/card/index.js';
|
||||
import { ArrowLeft } from 'lucide-svelte';
|
||||
import type { PageData } from './$types';
|
||||
import { goto } from '$app/navigation';
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
export let producto: {
|
||||
id_producto: string;
|
||||
marcas: string[];
|
||||
marcas: Set<string>;
|
||||
in_datasets_count: number;
|
||||
descriptions: string[];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue