diff --git a/demo/demo.ts b/demo/demo.ts index c45fba0..5333f30 100644 --- a/demo/demo.ts +++ b/demo/demo.ts @@ -11,7 +11,6 @@ import { Producto, Precio, getPublications, - Publication, } from "../index.js"; // TODO: hacerlo input @@ -163,7 +162,7 @@ setupForm("#pedido-item", async (event) => { return productosResponse; }); -setupForm("#pedido", async (event) => { +setupForm("#pedido", async () => { if (!customer) throw new Error("No seteaste lx cliente todavĂ­a."); // Se supone que Total es: diff --git a/order.ts b/order.ts index 369efd3..5af037e 100644 --- a/order.ts +++ b/order.ts @@ -1,5 +1,3 @@ -import { Paginacion, paginacionToSearchParams, Paging } from "./common.js"; - export interface OrderDto { SituacionOrden?: null | string; Date: string;