From 6ecb366919b7e15730b3ca186c87391a4a4e3f7c Mon Sep 17 00:00:00 2001 From: Nulo Date: Mon, 15 Nov 2021 18:58:56 -0300 Subject: [PATCH] Limpiar --- demo/demo.ts | 3 +-- order.ts | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) 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;